@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    background: #f5f5f5;
}

:root {
    --primary: #FFF;
    --dark-navy: #0f172a;
    --dark-bg: #111827;
    --mid-bg: #1e2a3a;
}

a {
    text-decoration: none;
}

/* header css start */
/* ══════════════════════════════════════════
   DESKTOP HEADER
══════════════════════════════════════════ */
#desktop-header {
    background: #1c1c2e;
    width: 100%;
}

.dh-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 40px;
    width: 100%;
    max-width: 100%;
}

/* Logo */
/* Logo */
.dh-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.dh-logo .logo-img {
    width: auto;
    height: 52px;
    max-width: 160px;
    object-fit: contain;
    display: block;
}


/* Mobile Logo */
.mh-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.mob-logo-img {
    height: 40px;
    width: auto;
    max-width: 130px;
    object-fit: contain;
    display: block;
}

/* Search */
.dh-search {
    flex: 1;
    min-width: 0;
    position: relative;
}

.dh-search input {
    width: 100%;
    height: 40px;
    border: none;
    border-radius: 4px;
    padding: 0 44px 0 14px;
    font-size: 14px;
    color: #333;
    background: #fff;
    outline: none;
    font-family: "Montserrat", sans-serif;
}

.dh-search button {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 44px;
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    font-size: 15px;
    border-left: 1px solid #ddd;
}

.dh-search button:hover {
    color: #f7941d;
}

/* Top Actions */
.dh-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.dh-action-item {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    cursor: pointer;
    white-space: nowrap;
}

.dh-action-item .ai-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}

.dh-action-item .ai-icon.orange {
    background: #f7941d22;
    color: #f7941d;
}

.dh-action-item .ai-icon.yellow {
    background: #f7c94822;
    color: #f7c948;
}

.dh-action-item .ai-icon.blue {
    background: #4a9fff22;
    color: #4a9fff;
}

.dh-action-item .ai-text .top {
    font-size: 10px;
    color: #aaa;
    line-height: 1.2;
}

.dh-action-item .ai-text .bot {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
}

.dh-divider {
    width: 1px;
    height: 32px;
    background: #ffffff22;
    flex-shrink: 0;
}

.btn-pc-builder {
    background: #2C3B96;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 9px 18px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
    font-family: "Montserrat", sans-serif;
}

.btn-pc-builder:hover {
    background: #1d4ed8;
}

/* ── Category Nav ── */
#cat-nav {
    background: #fff;
    border-bottom: 3px solid #f0f0f0;
    position: relative;
    z-index: 500;
    width: 100%;
    overflow: visible;
    max-width: 1400px;
    margin: 0 auto;
}

.cat-nav-inner {
    width: 100%;
    padding: 0 40px;
    display: flex;
    align-items: center;
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.cat-nav-inner::-webkit-scrollbar {
    display: none;
}

.cat-nav-list {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}

.cat-nav-list>li {
    position: relative;
    flex-shrink: 0;
}

.cat-nav-list>li>a {
    display: block;
    padding: 19px 6px;
    font-size: 13.5px;
    font-weight: 600;
    color: #222;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    margin-bottom: -3px;
    transition: color 0.15s, border-color 0.15s;
    font-family: "Montserrat", sans-serif;
}

.cat-nav-list>li>a:hover,
.cat-nav-list>li.active>a {
    color: #e8431e;
    border-bottom-color: #e8431e;
}

/* Dropdown */
.cat-dropdown {
    display: none;
    position: fixed;
    top: auto;
    left: auto;
    background: #fff;
    min-width: 210px;
    border-top: 2px solid #e8431e;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.13);
    z-index: 9999;
    border-radius: 0 0 4px 4px;
    padding: 4px 0;
}


.cat-dropdown a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 16px;
    font-size: 13px;
    color: #333;
    font-weight: 400;
    transition: background 0.12s, color 0.12s;
    border-bottom: 1px solid #f5f5f5;
    font-family: "Montserrat", sans-serif;
}

.cat-dropdown a:last-child {
    border-bottom: none;
}

.cat-dropdown a:hover {
    background: #fff5f2;
    color: #e8431e;
}

.cat-dropdown a .arr {
    font-size: 10px;
    color: #bbb;
}

/* Sub-dropdown */
.cat-dropdown li {
    position: relative;
    list-style: none;
}

.cat-dropdown li .sub-dropdown {
    display: none;
    position: fixed;
    top: auto;
    left: auto;
    background: #fff;
    min-width: 200px;
    border-top: 2px solid #e8431e;
    box-shadow: 4px 6px 24px rgba(0, 0, 0, 0.12);
    z-index: 9999;
    padding: 4px 0;
    border-radius: 0 4px 4px 0;
}


.cat-dropdown li .sub-dropdown a {
    padding: 9px 16px;
}

/* ══════════════════════════════════════════
   MOBILE HEADER
══════════════════════════════════════════ */
#mobile-header {
    display: none;
    background: #1c1c2e;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 900;
    width: 100%;
}

.mh-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 16px;
    width: 100%;
}

.mh-hamburger {
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    padding: 2px 6px;
    line-height: 1;
    flex-shrink: 0;
}

.mh-logo {
    flex: 1;
    display: flex;
    justify-content: center;
}

.mh-logo .logo-star {
    font-size: 18px;
    font-weight: 900;
    color: #fff;
    font-family: "Montserrat", sans-serif;
}

.mh-logo .logo-star span {
    color: #f7941d;
}

.mh-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.mh-right .mh-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 19px;
    cursor: pointer;
    position: relative;
    padding: 2px;
    line-height: 1;
}

.mh-right .cart-badge {
    position: absolute;
    top: -5px;
    right: -6px;
    background: #e8431e;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Search Bar (slide down) */
.mh-search-bar {
    display: none;
    padding: 0 16px 10px;
    background: #1c1c2e;
    width: 100%;
}

.mh-search-bar.open {
    display: block;
}

.mh-search-bar .search-wrap {
    display: flex;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    width: 100%;
}

.mh-search-bar .search-wrap input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    padding: 9px 12px;
    font-size: 14px;
    color: #333;
    font-family: "Montserrat", sans-serif;
}

.mh-search-bar .search-wrap button {
    background: #e8431e;
    border: none;
    color: #fff;
    padding: 0 14px;
    font-size: 15px;
    cursor: pointer;
    flex-shrink: 0;
}

/* ══════════════════════════════════════════
   LEFT SIDEBAR (Mobile)
══════════════════════════════════════════ */
.overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.overlay.open {
    display: block;
}

#left-sidebar {
    position: fixed;
    top: 0;
    left: -280px;
    bottom: 0;
    width: 270px;
    background: #fff;
    z-index: 1100;
    overflow-y: auto;
    overflow-x: hidden;
    transition: left 0.28s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    flex-direction: column;
}

#left-sidebar.open {
    left: 0;
}

.ls-header {
    background: #1c1c2e;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    flex-shrink: 0;
}

.ls-header .logo-star {
    font-size: 18px;
    font-weight: 900;
    color: #fff;
    font-family: "Montserrat", sans-serif;
}

.ls-header .logo-star span {
    color: #f7941d;
}

.ls-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    line-height: 1;
}

.ls-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.ls-menu>li {
    border-bottom: 1px solid #efefef;
}

.ls-menu>li>.ls-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 16px;
    cursor: pointer;
    transition: background 0.12s;
    user-select: none;
}

.ls-menu>li>.ls-row:hover {
    background: #f9f9f9;
}

.ls-menu>li>.ls-row .ls-label {
    font-size: 14.5px;
    color: #222;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
}

.ls-menu>li>.ls-row .ls-label.active-label {
    color: #e8431e;
}

.ls-menu>li>.ls-row .ls-toggle {
    font-size: 20px;
    color: #aaa;
    line-height: 1;
    transition: transform 0.2s;
}

.ls-menu>li.ls-open>.ls-row .ls-toggle {
    transform: rotate(45deg);
    color: #e8431e;
}

/* Sub-menu */
.ls-sub {
    display: none;
    background: #fafafa;
    border-top: 1px solid #efefef;
    list-style: none;
    padding: 4px 0;
}

.ls-menu>li.ls-open>.ls-sub {
    display: block;
}

.ls-sub>li>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px 10px 28px;
    font-size: 13.5px;
    color: #444;
    transition: background 0.12s, color 0.12s;
    font-family: "Montserrat", sans-serif;
}

.ls-sub>li>a:hover {
    background: #fff5f2;
    color: #e8431e;
}

.ls-sub>li>a .sarr {
    font-size: 10px;
    color: #bbb;
}

/* ══════════════════════════════════════════
   RIGHT CART SIDEBAR
══════════════════════════════════════════ */
#cart-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

#cart-overlay.open {
    display: block;
}

#cart-sidebar {
    position: fixed;
    top: 0;
    right: -340px;
    bottom: 0;
    width: 310px;
    background: #fff;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    transition: right 0.28s cubic-bezier(.4, 0, .2, 1);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.12);
}

#cart-sidebar.open {
    right: 0;
}

.cs-header {
    background: #1c1c2e;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    flex-shrink: 0;
}

.cs-header h6 {
    color: #fff;
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
}

.cs-header .cs-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

.cs-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #888;
    font-family: "Montserrat", sans-serif;
}

.cs-footer {
    padding: 14px 16px;
    border-top: 1px solid #eee;
}

.cs-promo {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
}

.cs-promo input {
    flex: 1;
    min-width: 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 8px 10px;
    font-size: 13px;
    outline: none;
    color: #333;
    font-family: "Montserrat", sans-serif;
}

.cs-promo input:focus {
    border-color: #2563eb;
}

.cs-promo .apply {
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    font-family: "Montserrat", sans-serif;
}

.cs-total-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
    color: #555;
    border-top: 1px solid #f5f5f5;
    font-family: "Montserrat", sans-serif;
}

.cs-total-row:first-child {
    border-top: none;
}

.cs-total-row strong {
    color: #111;
}

/* ══════════════════════════════════════════
   RESPONSIVE BREAKPOINT
══════════════════════════════════════════ */
@media (max-width: 991px) {

    #desktop-header,
    #cat-nav {
        display: none !important;
    }

    #mobile-header {
        display: block !important;
    }
}

@media (min-width: 992px) {
    #mobile-header {
        display: none !important;
    }
}

/* Large screen padding adjustment */
@media (min-width: 1400px) {
    .dh-inner {
        padding: 12px 72px;
    }

    .cat-nav-inner {
        padding: 0 60px;
    }
}

@media (max-width: 1199px) {
    .dh-inner {
        padding: 10px 24px;
        gap: 14px;
    }

    .cat-nav-inner {
        padding: 0 24px;
    }

    .dh-actions {
        gap: 10px;
    }

    .dh-action-item .ai-text {
        display: none;
    }

    .dh-divider {
        display: none;
    }
}

/* header css end */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ===== BANNER SECTION ===== */
.banner-section {
    padding: 12px 0;
    background: #f5f5f5;
}

.banner-row {
    display: flex;
    gap: 8px;
    align-items: stretch;
}

.main-slider-col {
    flex: 0 0 75%;
    max-width: 75%;
}

.side-banners-col {
    flex: 0 0 calc(25% - 8px);
    display: flex;
}

.banner-main-wrap {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #ccc;
    width: 100%;
}

.banner-main-wrap .slide {
    display: none;
}

.banner-main-wrap .slide.active {
    display: block;
}

.banner-main-wrap .slide img {
    width: 100%;
    aspect-ratio: 982 / 500;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.88);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    color: #444;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.slider-arrow.prev {
    left: 8px;
}

.slider-arrow.next {
    right: 8px;
}

.slider-arrow:hover {
    background: #fff;
}

.slider-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.slider-dots span {
    width: 10px;
    height: 5px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.2s, width 0.2s;
}

.slider-dots span.active {
    background: #e8431e;
    width: 18px;
}

/* Side Banners */
.side-banner-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    height: 100%;
}

.side-banner-item {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    min-height: 0;
}

.side-banner-item a {
    display: block;
    height: 100%;
}

.side-banner-item img {
    width: 100%;
    height: 92%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

/* ===== MARQUEE ===== */
.sliding-text-wrap {
    background: #f0f0f0;
    padding: 8px 0;
}

.sliding-text-box {
    background: #fff;
    border-radius: 30px;
    padding: 8px 20px;
    font-size: 13px;
    color: #555;
}

/* ===== QUICK LINKS ===== */
.quick-links-wrap {
    padding: 14px 0 4px;
    background: #f0f2f5;
}

.ql-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.q-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 14px 16px;
    text-decoration: none;
    color: #222;
    transition: box-shadow 0.18s;
}

.q-card:hover {
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.10);
}

.q-card .ic {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: #e8431e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.q-card .blurb {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    display: block;
    margin-bottom: 3px;
}

.q-card .sub {
    font-size: 12px;
    color: #888;
    display: block;
}

/* ── Tablet (2 column) ── */
@media (max-width: 991px) {
    .ql-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* ── Mobile (1 column) ── */
@media (max-width: 575px) {
    .quick-links-wrap {
        padding: 10px 0 2px;
    }

    .ql-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .q-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 16px 10px;
        gap: 10px;
    }

    .q-card .ic {
        width: 46px;
        height: 46px;
        min-width: 46px;
    }

    .q-card .blurb {
        font-size: 12px;
    }

    .q-card .sub {
        font-size: 11px;
    }
}

/* ── Very small phones ── */
@media (max-width: 360px) {
    .ql-grid {
        grid-template-columns: 1fr;
    }

    .q-card {
        flex-direction: row;
        text-align: left;
        padding: 13px 14px;
    }
}


/* ===== FEATURED CATEGORY ===== */
.feat-cat-section {
    padding: 24px 0 16px;
    background: #f0f2f5;
}

.feat-cat-section h2 {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    text-align: center;
    margin-bottom: 6px;
}

.feat-cat-section .sub-blurb {
    font-size: 13px;
    color: #888;
    text-align: center;
    margin-bottom: 20px;
}

.cat-items-wrap {
    display: flex !important;
    flex-wrap: wrap !important;
}

.cat-item {
    width: 25% !important;
    flex: 0 0 25% !important;
    max-width: 25% !important;
}

@media (min-width: 992px) {
    .cat-item {
        width: 12.5% !important;
        flex: 0 0 12.5% !important;
        max-width: 12.5% !important;
    }
}

.cat-item-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 8px 14px;
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    text-decoration: none;
    color: #222;
    text-align: center;
    transition: box-shadow 0.15s;
    gap: 12px;
    height: 100%;
}

.cat-item-inner:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.09);
    color: #e8431e;
}

.cat-item-inner img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.cat-item-inner p {
    font-size: 12px;
    color: #222;
    line-height: 1.4;
    font-weight: 500;
    margin: 0;
}

@media (max-width: 575px) {
    .cat-item-inner {
        padding: 12px 4px 10px;
        gap: 8px;
        border-radius: 8px;
    }

    .cat-item-inner img {
        width: 34px;
        height: 34px;
    }

    .cat-item-inner p {
        font-size: 10px;
    }

    .feat-cat-section h2 {
        font-size: 16px;
    }

    .feat-cat-section .sub-blurb {
        font-size: 11px;
        margin-bottom: 12px;
    }
}

.cat-items-wrap {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
}

.cat-item {
    width: calc(25% - 8px) !important;
    flex: 0 0 calc(25% - 8px) !important;
    max-width: calc(25% - 8px) !important;
}

@media (min-width: 992px) {
    .cat-item {
        width: calc(12.5% - 9px) !important;
        flex: 0 0 calc(12.5% - 9px) !important;
        max-width: calc(12.5% - 9px) !important;
    }
}

/* ===== STORE FINDER ===== */
.store-finder-section {
    padding: 16px 0;
    background: #f0f2f5;
}

.store-finder-wrap {
    background: linear-gradient(90deg, #00c6e0 0%, #0033cc 60%, #1a0099 100%);
    border-radius: 12px;
    padding: 35px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.store-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.store-finder-wrap h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #fff;
}


.store-finder-wrap p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 500;
    margin: 0;
}

.btn-find {
    background: #f5a623;
    color: #7a4800;
    border: none;
    border-radius: 50px;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.15s;
    flex-shrink: 0;
}

.btn-find:hover {
    background: #e6961a;
    color: #7a4800;
}

/* Responsive */
@media (max-width: 575px) {
    .store-finder-wrap {
        flex-direction: column;
        align-items: center;
        padding: 18px 20px;
        gap: 14px;
    }

    .store-info {
        align-items: center;
        text-align: center;
        flex-direction: column;
    }

    .store-finder-wrap h3 {
        font-size: 15px;
    }

    .store-finder-wrap p {
        font-size: 12px;
    }

    .btn-find {
        width: auto;
        padding: 11px 30px;
        justify-content: center;
    }
}

/* barand section css start  */
/* ── Base ── */
.brands-section {
    font-family: Arial, sans-serif;
    background: #fff;
}

/* ── Header ── */
.brands-header {
    border-bottom: 2px solid #111;
}

.brands-title {
    background: #111;
    color: #fff;
    font-weight: 700;
    display: inline-block;
    clip-path: polygon(0 0, calc(100% - 13px) 0, 100% 100%, 0 100%);

    /* Mobile first */
    font-size: 11px;
    padding: 5px 18px 5px 10px;
}

.see-all {
    color: #28a745;
    font-weight: 600;
    text-decoration: none;

    /* Mobile first */
    font-size: 11px;
}

.see-all:hover {
    text-decoration: underline;
}

/* ── Marquee ── */
.marquee-outer {
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scroll-left 14s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #dee2e6;
    border-right: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
    font-weight: 700;
    color: #212529;
    text-decoration: none;
    white-space: nowrap;

    /* Mobile first */
    min-width: 72px;
    font-size: 11px;
    padding: 10px 0;
}

.brand-item:first-child {
    border-left: 1px solid #dee2e6;
}

.brand-item:hover {
    background: #f8f9fa;
}

/* ── Keyframe ── */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ── Responsive breakpoints (Bootstrap 5 standard) ── */

/* sm → 576px */
@media (min-width: 576px) {
    .brands-title {
        font-size: 12px;
        padding: 6px 18px 6px 10px;
    }

    .see-all {
        font-size: 12px;
    }

    .brand-item {
        min-width: 82px;
        font-size: 12px;
        padding: 11px 0;
    }

    .marquee-track {
        animation-duration: 16s;
    }
}

/* md → 768px */
@media (min-width: 768px) {
    .brands-title {
        font-size: 13px;
        padding: 7px 20px 7px 12px;
    }

    .see-all {
        font-size: 13px;
    }

    .brand-item {
        min-width: 95px;
        font-size: 13px;
        padding: 12px 0;
    }

    .marquee-track {
        animation-duration: 18s;
    }
}

/* lg → 992px */
@media (min-width: 992px) {
    .brands-title {
        font-size: 13px;
        padding: 7px 20px 7px 12px;
    }

    .see-all {
        font-size: 13px;
    }

    .brand-item {
        min-width: 110px;
        font-size: 13.5px;
        padding: 14px 0;
    }

    .marquee-track {
        animation-duration: 22s;
    }
}

/* xl → 1200px */
@media (min-width: 1200px) {
    .brands-title {
        font-size: 14px;
        padding: 8px 22px 8px 14px;
        clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 100%, 0 100%);
    }

    .see-all {
        font-size: 14px;
    }

    .brand-item {
        min-width: 125px;
        font-size: 14px;
        padding: 15px 0;
    }

    .brands-header {
        border-bottom: 2px solid #111;
    }

    .marquee-track {
        animation-duration: 25s;
    }
}

/* xxl → 1400px (22"+ monitor) */
@media (min-width: 1400px) {
    .brands-title {
        font-size: 15px;
        padding: 9px 26px 9px 16px;
        clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 100%, 0 100%);
    }

    .see-all {
        font-size: 15px;
    }

    .brand-item {
        min-width: 145px;
        font-size: 15px;
        padding: 16px 0;
    }

    .brands-header {
        border-bottom: 2.5px solid #111;
    }

    .marquee-track {
        animation-duration: 30s;
    }
}

/* 1920px → Full HD / বড় মনিটর */
@media (min-width: 1920px) {
    .brands-title {
        font-size: 16px;
        padding: 10px 30px 10px 18px;
        clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 100%, 0 100%);
    }

    .see-all {
        font-size: 16px;
    }

    .brand-item {
        min-width: 165px;
        font-size: 16px;
        padding: 18px 0;
    }

    .marquee-track {
        animation-duration: 34s;
    }
}

/* barand section  end */

/*  */
/* ══ SECTION ══ */
.featured-section {
    background: #eef0f5;
    padding: 32px 20px 40px;
}

/* ══ HEADING ══ */
.feat-heading {
    text-align: center;
    margin-bottom: 28px;
}

.feat-heading h2 {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin-bottom: 4px;
}

.feat-heading p {
    font-size: 13.5px;
    color: #888;
}

/* ══ GRID ══
       ≥1200px → 5 col
       768–1199 → 4 col
       <768px  → 2 col
    ══ */
.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1199px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* ══ CARD ══ */
.p-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s;
}

.p-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, .11);
}

/* ══ BADGE top-left ══ */
.p-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: #7c3aed;
    color: #fff;
    font-size: 11.5px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 8px 0 8px 0;
    z-index: 5;
    white-space: nowrap;
    line-height: 1.4;
}

/* ══ FREE STAMP top-right ══ */
.free-stamp {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid #bbb;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5;
    line-height: 1.15;
}

.free-stamp .fs-icon {
    font-size: 8px;
    color: #aaa;
}

.free-stamp .fs-free {
    font-size: 13px;
    font-weight: 900;
    color: #222;
    letter-spacing: .5px;
}

.free-stamp .fs-bot {
    font-size: 6px;
    color: #aaa;
    letter-spacing: .3px;
    text-transform: uppercase;
}

/* ══ IMAGE AREA ══ */
.p-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 240px;
    /* taller image area */
    padding: 40px 20px 16px;
    background: #fff;
    flex-shrink: 0;
}

.p-img img {
    max-height: 190px;
    /* bigger image */
    max-width: 100%;
    object-fit: contain;
}

/* ══ OFFICIAL WARRANTY badge ══ */
.warranty {
    position: absolute;
    right: 12px;
    top: 210px;
    /* bottom of image area */
    background: #fff;
    border: 1.5px solid #ddd;
    border-radius: 5px;
    padding: 5px 8px 5px 6px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 9px;
    font-weight: 700;
    color: #1e7e22;
    text-transform: uppercase;
    letter-spacing: .4px;
    z-index: 4;
    white-space: nowrap;
}

.warranty svg {
    flex-shrink: 0;
}

/* ══ BODY ══ */
.p-body {
    padding: 12px 16px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.p-name {
    font-size: 14.5px;
    font-weight: 500;
    color: #111;
    line-height: 1.5;
    margin-bottom: 12px;
    flex: 1;
}

.p-price {
    font-size: 19px;
    font-weight: 700;
    color: #e5191f;
}

.p-old {
    font-size: 13.5px;
    color: #bbb;
    text-decoration: line-through;
    margin-left: 7px;
}

/* ══ MOBILE ══ */
@media (max-width: 767px) {
    .p-img {
        height: 165px;
        padding: 36px 12px 12px;
    }

    .p-img img {
        max-height: 128px;
    }

    .p-body {
        padding: 10px 12px 14px;
    }

    .p-name {
        font-size: 12.5px;
    }

    .p-price {
        font-size: 15px;
    }

    .p-old {
        font-size: 11.5px;
    }

    .p-badge {
        font-size: 10px;
        padding: 4px 8px;
    }

    .free-stamp {
        width: 42px;
        height: 42px;
        top: 8px;
        right: 8px;
    }

    .free-stamp .fs-free {
        font-size: 11px;
    }

    .warranty {
        top: 142px;
        font-size: 7.5px;
        padding: 3px 6px;
    }
}

/* END */

/* ===== REVIEW SECTION ===== */
.review-section {
    background: #f8f9fa;
    padding: 3.5rem 0;
}

.review-section h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--primary);
}

.review-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    height: 100%;
}

.reviewer-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e9ecef;
    flex-shrink: 0;
}

.review-body {
    background: #DEEAF1;
    border-radius: 12px;
    padding: 0.85rem 1.1rem;
}

.review-body p {
    font-size: 0.82rem;
    color: #495057;
    margin: 0;
    line-height: 1.7;
}

.star-rating .fa-star {
    font-size: 0.85rem;
}

.star-on {
    color: #ffc107;
}

.star-off {
    color: #dee2e6;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
}

.slider-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #dee2e6;
    cursor: pointer;
    transition: background 0.3s;
}

.slider-dots span.active {
    background: var(--primary);
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.slider-nav button {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: #495057;
}

.slider-nav button:hover {
    background: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
}

.slides-wrapper {
    overflow: hidden;
}

.slides-track {
    display: flex;
    transition: transform 0.4s ease;
}

.slide-item {
    flex: 0 0 33.333%;
    padding: 0 10px;
    box-sizing: border-box;
}

/* END */

/* footer  start*/
/* ═══════════════════════════════
           FOOTER WRAPPER
        ═══════════════════════════════ */
.site-footer {
    background: #0d1b2e;
    width: 100%;
}

/* ═══════════════════════════════
           FLEX ROW — side by side
        ═══════════════════════════════ */
.footer-inner {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 280px;
}

/* ══════════════════════════════
           LEFT PANEL
        ══════════════════════════════ */
.footer-left {
    flex: 0 0 280px;
    width: 280px;
    background: #1a2a4a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 3.5rem 2.5rem 2rem;
    position: relative;
    /* diagonal clip — right edge slants */
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
    z-index: 2;
}

/* ── LOGO CIRCLE ── */
.footer-logo-wrap {
    width: 130px;
    height: 130px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 1.2rem;
    flex-shrink: 0;
}

.footer-logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.follow-label {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.9rem;
    text-align: center;
}

.social-row {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    justify-content: center;
}

/*  */
/* YouTube — লাল */
.social-btn.yt {
    background: #FF0000;
    color: #fff;
}

/* Facebook — নীল */
.social-btn.fb {
    background: #1877F2;
    color: #fff;
}

/* Instagram — gradient (pink → purple → orange) */
.social-btn.ig {
    background: radial-gradient(circle at 30% 107%,
            #fdf497 0%, #fdf497 5%,
            #fd5949 45%, #d6249f 60%,
            #285AEB 90%);
    color: #fff;
}

/* LinkedIn — নীল */
.social-btn.li {
    background: #0A66C2;
    color: #fff;
}

/* Email — সাদা বা যেকোনো রং আপনার পছন্দে */
.social-btn.em {
    background: #ffffff;
    color: #333;
}

/* Telegram — হালকা নীল */
.social-btn.tg {
    background: #26A5E4;
    color: #fff;
}

/* Icon color সব একই রাখুন */
.social-btn i {
    color: inherit;
}

/*  */
.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
    font-size: 0.95rem;
}

.social-btn:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}

.social-btn.yt {
    background: #cc0000;
}

.social-btn.fb {
    background: #162d4e;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-btn.ig {
    background: #e1306c;
}

.social-btn.li {
    background: #162d4e;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-btn.em {
    background: #fff;
}

.social-btn.tg {
    background: #162d4e;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ══════════════════════════════
           RIGHT PANEL
        ══════════════════════════════ */
.footer-right {
    flex: 1;
    background: #0d1b2e;
    padding: 2.5rem 2.5rem 1.5rem 3rem;
    display: flex;
    flex-direction: column;
}

.footer-columns {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    flex: 1;
}

.footer-col {
    flex: 1;
}

/* ── HEADING ── */
.footer-heading {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 6px;
    display: inline-block;
    margin-bottom: 1.2rem;
    letter-spacing: 0.02em;
}

/* ── NAV LINKS ── */
.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav li a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}

.footer-nav li a:hover {
    color: var(--primary);
}

.footer-nav li a i {
    color: var(--primary);
    font-size: 0.75rem;
}

/* ── CONTACT ── */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1.1rem;
}

.contact-icon-circle {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon-square {
    border-radius: 8px !important;
}

.contact-icon-circle i {
    color: #111;
    font-size: 0.9rem;
}

.contact-text p {
    margin: 0;
    font-size: 0.875rem;
}

.contact-text .label {
    color: #fff;
    font-weight: 700;
    margin-bottom: 2px;
}

.contact-text .val {
    color: #94a3b8;
}

.contact-text a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.875rem;
}

.contact-text a:hover {
    color: var(--primary);
}

/* ── PAYMENT + COPYRIGHT ── */
.payment-row {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.2rem;
    margin-top: 1.5rem;
    text-align: center;
}

.payment-img {
    height: 85px;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.copyright-bar {
    color: #64748b;
    font-size: 0.8rem;
    margin: 0;
}

/* ══════════════════════════════
           RESPONSIVE
        ══════════════════════════════ */
@media (max-width: 991px) {
    .footer-inner {
        flex-direction: column;
    }

    .footer-left {
        flex: none;
        width: 100%;
        clip-path: none;
        padding: 2rem 1.5rem;
    }

    .footer-right {
        padding: 2rem 1.5rem;
    }

    .footer-columns {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* footer  end*/

/* ─────────────────────────────────────
       MOBILE BOTTOM NAV BAR
    ───────────────────────────────────── */
.mob-nav {
    display: none;
    /* hidden on desktop */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0f1923;
    border-top: 1px solid #1e2e3c;
    z-index: 9999;
    padding: 6px 0 4px;
}

.mob-nav-inner {
    display: flex;
    align-items: stretch;
    justify-content: space-around;
}

.mob-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-decoration: none;
    color: #8a9ab0;
    font-size: 0.58rem;
    padding: 4px 2px;
    transition: color .2s;
    cursor: pointer;
    background: none;
    border: none;
    position: relative;
}

.mob-nav-item:hover,
.mob-nav-item.active {
    color: #fff;
}

.mob-nav-item .nav-icon {
    font-size: 1.25rem;
    line-height: 1;
}

/* Happy Hour — lightning bolt special color */
.mob-nav-item.happy .nav-icon {
    color: #f5a623;
}

.mob-nav-item.happy:hover .nav-icon,
.mob-nav-item.happy.active .nav-icon {
    color: #f5a623;
}

/* Compare badge */
.mob-nav-item .badge-count {
    position: absolute;
    top: 2px;
    right: calc(50% - 16px);
    background: #e8411e;
    color: #fff;
    font-size: 0.5rem;
    font-weight: 700;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* spacer so footer content not hidden behind fixed nav on mobile */
.mob-nav-spacer {
    display: none;
    height: 53px;
}

/* ═══════════════════════════════════
       MOBILE  ≤ 991px
    ═══════════════════════════════════ */
@media (max-width: 991px) {

    /* Stack columns */
    .ft-top {
        flex-direction: column;
        padding: 30px 20px 0;
        gap: 0;
    }

    /* SUPPORT */
    .ft-support {
        flex: none;
        width: 100%;
        padding: 0 0 28px 0;
        text-align: center;
    }

    .ft-support .ft-heading {
        text-align: center;
    }

    .sup-card {
        max-width: 100%;
    }

    /* ABOUT */
    .ft-about {
        flex: none;
        width: 100%;
        border-left: none;
        border-right: none;
        border-top: 1px solid #1e2e3c;
        padding: 26px 0;
        text-align: center;
    }

    .ft-about .ft-heading {
        text-align: center;
    }

    .about-desktop {
        display: none;
    }

    .about-mobile {
        display: block;
    }

    /* CONNECT */
    .ft-connect {
        flex: none;
        width: 100%;
        border-top: 1px solid #1e2e3c;
        padding: 26px 0 30px 0;
        text-align: center;
    }

    .ft-connect .ft-heading {
        text-align: center;
    }

    /* BOTTOM */
    .ft-bottom {
        padding: 15px 20px;
    }

    .ft-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .ft-social {
        margin-top: 4px;
    }

    .ft-social a:first-child {
        margin-left: 0;
    }

    /* Show mobile nav */
    .mob-nav {
        display: block;
    }

    .mob-nav-spacer {
        display: block;
    }
}

/* start  */

/* ═══════════════════════════════════════
       FLOATING WRAPPER — desktop only
    ═══════════════════════════════════════ */
.float-wrap {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 1000;
}

/* Hide on mobile */
@media (max-width: 991px) {
    .float-wrap {
        display: none;
    }
}

/* ── Each button ── */
.float-btn {
    position: relative;
    width: 66px;
    background: #1a2535;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 10px 6px 9px;
    cursor: pointer;
    border: none;
    border-radius: 6px 0 0 6px;
    text-decoration: none;
    transition: background .2s;
}

.float-btn:hover {
    background: #243044;
    color: #fff;
}

.float-btn .fb-icon {
    font-size: 1.25rem;
    line-height: 1;
}

.float-btn .fb-label {
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1;
}

/* Orange badge */
.float-btn .fb-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #e8431e;
    color: #fff;
    font-size: 0.48rem;
    font-weight: 700;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ═══════════════════════════════════════
       COMPARE POPUP — anchored left of button
    ═══════════════════════════════════════ */
.cmp-popup {
    display: none;
    position: fixed;
    /* positioned by JS next to the compare button */
    right: 70px;
    /* just left of the floating buttons */
    background: #fff;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0 8px 36px rgba(0, 0, 0, 0.22);
    overflow: hidden;
    z-index: 1001;
    animation: popIn .18s ease;
}

.cmp-popup.open {
    display: block;
}

@keyframes popIn {
    from {
        transform: scale(0.93) translateX(10px);
        opacity: 0;
    }

    to {
        transform: scale(1) translateX(0);
        opacity: 1;
    }
}

/* Popup header */
.cmp-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #1a2535;
    padding: 14px 16px;
}

.cmp-header h6 {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
}

.cmp-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color .2s;
}

.cmp-close:hover {
    color: #e8431e;
}

/* Popup body */
.cmp-body {
    padding: 40px 16px;
    text-align: center;
}

.cmp-body p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* demo content */
.demo {
    max-width: 700px;
    margin: 60px auto;
    padding: 20px;
    color: #333;
}