/* Mobile Sidebar & Drilldown Styles */
.mobile-sidebar {
    position: fixed;
    top: 60px;
    left: 0;
    width: 85vw;
    max-width: 360px;
    transform: translateX(-100%);
    height: calc(100% - 60px);
    background: #fff;
    z-index: 2001;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.12);
    overflow-y: auto;
    overflow-x: hidden;
}

.mobile-sidebar.active {
    transform: translateX(0);
}

.mobile-sidebar-main {
    position: relative;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 15px;
    border-bottom: 1px solid #eee;
    background: #fff;
    overflow-x: hidden;
}

#mobile-hamburger-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
}

#mobile-menu-close.menu-close-btn {
    background: #f8f8f8;
    border: none;
    font-size: 26px;
    /* Slightly larger for the X */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

#mobile-menu-close:hover {
    background: #eee;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list li {
    border-bottom: none;
}

.mobile-nav-list a,
.menu-item-text,
.drilldown-item-text {
    flex: 1;
    padding: 18px 25px;
    font-size: 16px;
    font-weight: 400;
    color: #1a1a1a;
    text-decoration: none;
    font-family: var(--font-primary);
    text-transform: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    word-break: break-word;
}

.menu-item-wrap {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
}

.submenu-toggle,
.drilldown-toggle {
    background: none;
    border: none;
    width: 50px;
    flex-shrink: 0;
    /* Prevent icons from shrinking or being pushed out */
    /* Over 44px for accessibility */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-left: none;
    padding: 0;
}

.submenu-toggle:active,
.drilldown-toggle:active {
    background-color: #f9f9f9;
}

.mobile-nav-list i,
.submenu-back i,
.drilldown-back i {
    font-size: 14px;
    color: #888 !important;
    font-weight: 900 !important;
    display: inline-block !important;
    visibility: visible !important;
    pointer-events: none;
}

.menu-item-wrap:hover,
.menu-item-wrap.active {
    background-color: #f1f8ff;
    /* Light blue selection as per Image 1 */
}

/* Submenu & Drilldown Containers */
.mobile-submenu,
.mobile-drilldown {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 50;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
    visibility: hidden;
}

.mobile-submenu.active,
.mobile-drilldown.active {
    transform: translateX(-100%);
    visibility: visible;
}

.submenu-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    min-height: 70px;
}

.submenu-back,
.drilldown-back {
    background: none;
    border: none;
    font-size: 20px;
    font-weight: 300;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-primary);
}

/* Mobile Promo Banners - Edge-to-Edge */
.mobile-promo-list {
    padding: 0;
    margin: 0 5px;
    /* 5px gap from screen edges */
}

.mobile-promo-item {
    position: relative;
    height: 120px;
    /* Adjusted height for mobile ratio */
    overflow: hidden;
    margin-bottom: 2px;
    border-radius: 4px;
}

.mobile-promo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-promo-item.mobile-promo-item-large {
    height: 250px;
    /* Taller height for single large promo banner on mobile */
}

.mobile-promo-item span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-weight: 800;
    font-size: 40px;
    /* Large bold centered text as per reference */
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    width: 100%;
    text-align: center;
}

#mobile-menu-overlay {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100% - 60px);
    background: rgba(0, 0, 0, 0.4);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

#mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* --- Collection Page Elements --- */
.page-header {
    margin-bottom: 20px;
}

.breadcrumbs {
    font-size: 13px;
    color: #666;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-primary);
    font-weight: 500;
}

.breadcrumbs a {
    color: inherit;
    transition: color 0.2s;
}

.breadcrumbs a:hover {
    color: var(--color-accent);
}

.breadcrumbs span.separator {
    color: #000080;
    font-size: 18px;
    line-height: 1;
    display: inline-block;
    margin-top: 2px;
}

.page-title {
    font-family: var(--font-primary);
    font-size: var(--collection-title-size);
    font-weight: var(--collection-title-weight);
    color: #1a1a1a;
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.page-description {
    max-width: 650px;
    color: var(--collection-desc-color);
    font-size: var(--collection-desc-size);
    line-height: var(--collection-desc-line-height);
    margin-bottom: 10px;
    font-family: var(--font-primary);
}

/* Read More Button - hidden on desktop, shown on mobile */
.read-more-link {
    display: none;
    color: var(--text-black);
    text-decoration: underline;
    margin-top: 0;
    margin-bottom: 30px;
    background: none;
    border: none;
    padding: 0;
    font-size: 14px;
    font-family: var(--font-primary);
    font-weight: 500;
    text-align: left;
    cursor: pointer;
}

.more-text {
    display: inline;
}

/* Category Tabs */
.category-tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.category-tab {
    padding: 10px 22px;
    border: 2px solid #000080;
    background: #fff;
    color: #1a1a1a;
    font-size: 13px;
    font-weight: 500;
    text-transform: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 0;
}

.category-tab:hover,
.category-tab.active {
    background: #000080;
    color: #fff;
    border-color: #000080;
}

@media (max-width: 768px) {
    .page-title {
        font-size: 32px;
    }

    .category-tabs {
        gap: 8px;
    }

    .category-tab {
        padding: 8px 15px;
        font-size: 12px;
    }

    /* Show Read More button on mobile */
    .read-more-link {
        display: block;
        margin-top: -5px;
        margin-bottom: 25px;
    }

    /* Truncate description on mobile */
    .page-description {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-bottom: 8px;
    }

    .page-description.expanded {
        display: block;
        -webkit-line-clamp: unset;
        line-clamp: unset;
        overflow: visible;
    }
}

/* Utility: Grid Order */
.order-1 {
    order: 1;
}

.order-2 {
    order: 2;
}

.order-3 {
    order: 3;
}

.order-4 {
    order: 4;
}

.order-5 {
    order: 5;
}

.order-6 {
    order: 6;
}

.order-7 {
    order: 7;
}

.order-8 {
    order: 8;
}

.order-9 {
    order: 9;
}

.order-10 {
    order: 10;
}

.order-11 {
    order: 11;
}

.order-12 {
    order: 12;
}

@media (max-width: 768px) {
    .mobile-order-1 {
        order: 1;
    }

    .mobile-order-2 {
        order: 2;
    }

    .mobile-order-3 {
        order: 3;
    }

    .mobile-order-4 {
        order: 4;
    }

    .mobile-order-5 {
        order: 5;
    }

    .mobile-order-6 {
        order: 6;
    }

    .mobile-order-7 {
        order: 7;
    }

    .mobile-order-8 {
        order: 8;
    }

    .mobile-order-9 {
        order: 9;
    }

    .mobile-order-10 {
        order: 10;
    }

    .mobile-order-11 {
        order: 11;
    }

    .mobile-order-12 {
        order: 12;
    }
}

/* === COLLECTION PAGE LAYOUT (migrated from bats.html inline styles) === */

/* Collection Layout — sidebar + product grid side by side */
.collection-wrapper {
    display: flex;
    gap: 40px;
    margin-top: 20px;
}

/* Sidebar Filters */
.sidebar {
    width: 260px;
    flex-shrink: 0;
}

.filter-section {
    border-bottom: 1px solid var(--border-grey);
    margin-bottom: 20px;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    width: 100%;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--text-black);
    font-family: var(--font-main);
}

.filter-header svg {
    transition: transform 0.3s;
}

.filter-header.active svg {
    transform: rotate(180deg);
}

.filter-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-bottom: 0;
}

.filter-content.show {
    max-height: 500px;
    padding-bottom: 15px;
}

/* Product Grid Controls — top bar above the product grid */
.grid-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    width: 100%;
}

.filter-toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    background: none;
    border: none;
    font-family: var(--font-main);
}

.sort-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 14px;
}

.desktop-only {
    display: flex;
}

/* Product Grid — 4 columns on desktop */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    flex-grow: 1;
    align-content: start;
}

/* Mobile Filter/Sort Bar */
.mobile-controls {
    display: none;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--border-grey);
    border-bottom: 1px solid var(--border-grey);
    margin: 10px 0 20px 0;
}

.mobile-control-btn {
    padding: 15px;
    text-align: center;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-main);
}

.mobile-control-btn:first-child {
    border-right: 1px solid var(--border-grey);
}

/* Grid Banners — full-height banner cards that appear between products */
.grid-banner {
    position: relative;
    background-color: #333;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    height: 100%;
    min-height: 300px;
    cursor: pointer;
    overflow: hidden;
}

.banner-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    display: block;
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 80%;
    text-align: left;
}

.banner-title {
    font-size: 16px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
    color: #fff;
}

.banner-subtitle {
    font-size: 16px;
    font-weight: 600;
    text-decoration: underline;
    text-transform: uppercase;
    color: #fff;
}

/* Extend order utilities to match bats.html (order-13 to order-15) */
.order-13 { order: 13; }
.order-14 { order: 14; }
.order-15 { order: 15; }

/* Product Card Elements — collection page */
.color-dots {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.color-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid var(--border-grey);
}

.product-card {
    cursor: pointer;
}

.product-card .product-image {
    overflow: hidden;
    margin-bottom: 12px;
    background: #f7f7f7;
}

.product-card .product-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.04);
}

.product-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-black);
    text-decoration: none;
    display: block;
}

.product-card:hover .product-title {
    text-decoration: underline;
}

.product-price {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-black);
}

/* === COLLECTION PAGE: RESPONSIVE === */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .collection-wrapper {
        flex-direction: column;
    }

    .sidebar {
        display: none; /* Hidden on mobile — mobile uses .mobile-controls */
    }

    .mobile-controls {
        display: grid;
    }

    .desktop-only {
        display: none;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .grid-banner {
        grid-column: span 2;
        min-height: 500px;
        padding: 40px 20px;
    }

    .banner-title {
        font-size: 16px;
    }

    .category-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 10px;
        -ms-overflow-style: none;
        scrollbar-width: none;
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .category-tabs::-webkit-scrollbar {
        display: none;
    }

    .category-tab {
        flex-shrink: 0;
        padding: 12px 25px;
        font-weight: 600;
        font-size: 16px;
    }

    /* Extend mobile order utilities to 15 */
    .mobile-order-13 { order: 13; }
    .mobile-order-14 { order: 14; }
    .mobile-order-15 { order: 15; }
}



html,
body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--rubik-arial);
    color: var(--color-body);
    font-size: var(--font-size-md);
    line-height: var(--line-height-base);
    letter-spacing: var(--letter-spacing-base);
    -webkit-font-smoothing: antialiased;
    width: 100%;
    position: relative;
    padding-top: var(--header-height);
    background-color: var(--color-white);
    overflow-x: hidden !important; /* Critical fix for mobile horizontal overflow */
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--rubik-arial);
    color: var(--color-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
}

h1 {
    font-size: var(--font-size-hero);
}

h2 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-md);
}

h3 {
    font-size: 24px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: var(--font-size-md);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

h4 {
    font-family: var(--rubik-arial);
    color: #8e8e8e;
    font-weight: 500;
    font-size: 18px;
    margin-bottom: var(--space-sm);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Global Accessibility Focus States */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--primary-red);
    outline-offset: 3px;
    border-radius: 2px;
}
/* === GLOBAL NAV WRAPPER (Fixed Rail) === */
.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transform: translateZ(0);
}

/* === WORDPRESS ADMIN BAR COMPATIBILITY ===
   WP admin bar is position:fixed and shifts html { margin-top: 32px/46px }.
   Our fixed nav-wrapper must move down the same amount so the hero section
   sits flush directly below the nav-wrapper (no gap). */
.admin-bar .nav-wrapper {
    top: 32px; /* Desktop admin bar height */
}

@media screen and (max-width: 782px) {
    .admin-bar .nav-wrapper {
        top: 46px; /* Mobile admin bar height */
    }
    /* Also fix body padding so hero still aligns with the bottom of nav */
    body.admin-bar {
        padding-top: calc(60px + 46px) !important;
    }
    /* Fix sidebar & overlay top position when admin bar is visible on mobile */
    .admin-bar #mobile-sidebar,
    .admin-bar .mobile-sidebar {
        top: calc(60px + 46px);
        height: calc(100vh - 60px - 46px);
    }
    .admin-bar #mobile-menu-overlay {
        top: calc(60px + 46px);
        height: calc(100vh - 60px - 46px);
    }
}

/* Base Main Header */
.main-header {
    background: #ffffff;
    width: 100%;
    z-index: 1000;
}

/* === DESKTOP DUAL-LAYER: 1267px and UP === */
@media (min-width: 1267px) {
    .nav-wrapper {
        box-shadow: none !important;
        /* Managed by children on desktop */
    }

    /* Layer 1: Logo Row */
    .main-header {
        position: relative;
        z-index: 1002;
        transition: box-shadow 0.3s ease;
    }

    /* Layer 1 gets shadow only when Layer 2 is hidden */
    .nav-wrapper.header-shadow .main-header {
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10);
    }

    /* Layer 2: Category Bar */
    .smasher-header-bottom {
        position: relative;
        z-index: 1001;
        background: #ffffff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        transition: transform 0.15s cubic-bezier(0.16, 1, 0.3, 1);
        will-change: transform;
        transform: translateY(0);
        display: flex;
        /* Ensure visible on desktop */
    }

    /* Hide Category Bar behind Layer 1 on Scroll Down */
    .smasher-header-bottom.cat-bar--hidden {
        transform: translateY(-100%);
        pointer-events: none;
    }

    /* Body Padding for Fixed Header */
    body {
        padding-top: 90px;
        /* Total height of L1 + L2 for homepage/overlapping pages */
    }

    body.inner-page {
        padding-top: 134px;
        /* Full height of L1 + L2 so inner page content stays below the nav */
    }
}

/* === MOBILE: 1266px and BELOW === */
@media (max-width: 1266px) {
    .nav-wrapper {
        background: #ffffff !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
    }

    .smasher-header-bottom {
        display: none !important;
        /* Hide desktop nav bar on mobile */
    }

    .main-header {
        position: static;
        box-shadow: none !important;
    }

    body {
        padding-top: 60px !important;
        /* Exact mobile header height */
    }
}

.header-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

/* Row 1: Logo and Icons */
.smasher-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    /* Reduced from 10px — slimmer height */
    width: 100%;
    border-bottom: none;
    /* No divider line between layers */
    background: #ffffff;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 38px;
    /* Reduced from 48px — more compact */
    width: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.02);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-actions a {
    color: var(--color-heading);
    font-size: 18px;
    /* Slightly larger for clarity */
    transition: color 0.3s ease;
}

.header-actions a:hover {
    color: var(--color-accent);
}

.cart-trigger {
    position: relative;
}

.navbar-login-link {
    font-family: var(--rubik-arial);
    font-size: 12px;
    font-weight: 100;
    /* text-transform: uppercase; */
    color: var(--color-heading);
    text-decoration: none;
    transition: color 0.3s ease;
}

.navbar-login-link:hover {
    color: var(--color-accent);
}

/* Search Box Styles */
.search-box {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 25px;
    padding: 5px 10px;
    transition: all 0.3s ease;
}

/* Fix: <form> is display:block by default — override to keep the pill shape inline */
.search-box form {
    display: flex;
    align-items: center;
    width: 100%;
}

.search-box:focus-within {
    background: #ebebeb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.search-input {
    border: none;
    background: transparent;
    padding: 5px 10px;
    /* Reduced from 8px 12px */
    font-size: 13px;
    width: 180px;
    outline: none;
    color: var(--color-heading);
    font-family: var(--rubik-arial);
}

.search-input::placeholder {
    color: #999;
}

.search-btn {
    background: transparent;
    border: none;
    padding: 5px 10px;
    /* Reduced from 8px 12px */
    cursor: pointer;
    color: var(--color-heading);
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.search-btn:hover {
    color: var(--color-accent);
}


/* Row 2: Navigation Links */
.smasher-header-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 0;
    /* Reduced from 8px — slimmer height */
    width: 100%;
    background: #ffffff;
    border-top: none;
    /* No hairline between layers */
}

.smasher-nav {
    display: flex;
    justify-content: center;
    width: auto;
    /* THE FIX: Remove width 100% to allow centering */
}

.smasher-nav-list {
    display: flex;
    gap: 12px;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.smasher-nav-link {
    font-family: var(--rubik-arial);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    color: #1a1a1a;
    position: relative;
    padding: 8px 0;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.smasher-nav-link:hover,
.smasher-nav-link.active {
    color: var(--color-accent);
}

/* Modern underline animation */
.smasher-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}

.smasher-nav-link:hover::after,
.smasher-nav-link.active::after {
    width: 100%;
}

.smasher-nav-link i {
    font-size: 10px;
    margin-left: 5px;
}

/* Mega Menu Styles */
.has-megamenu {
    position: static !important;
}

.smasher-nav-item:hover>.smasher-nav-link {
    background-color: #000080;
    color: #fff !important;
    padding: 12px 10px;
    border-radius: 0;
}

.smasher-nav-item>.smasher-nav-link {
    padding: 12px 10px;
    display: inline-flex;
    align-items: center;
    height: 100%;
}

.smasher-nav-item.has-megamenu:hover>.smasher-nav-link::after {
    display: none;
    /* Remove underline when active */
}

.megamenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 100%;
    max-width: 1440px;
    background: #fff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
}

@media (max-width: 1024px) {
    .megamenu {
        display: none !important;
        /* Completely remove from layout on mobile */
    }
}

.has-megamenu:hover .megamenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.megamenu-inner {
    display: flex;
    width: 100%;
}

.megamenu-column {
    flex: 1;
    padding: 15px 25px;
    /* Reduced vertical padding from 20px */
    border-right: 1px solid #f0f0f0;
}

.megamenu-column:last-child {
    border-right: none;
}

.megamenu-title {
    font-size: 15px;
    /* Slightly smaller */
    font-weight: 700;
    margin-bottom: 12px;
    /* Reduced margin from 15px */
    color: #000;
    text-transform: none;
}

.megamenu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.megamenu-list li {
    margin-bottom: 4px;
    /* Reduced from 6px */
}

.megamenu-list a {
    font-size: 13px;
    /* Slightly smaller */
    color: #333;
    font-weight: 400;
    transition: color 0.2s;
}

.megamenu-list a:hover {
    color: var(--color-accent);
}

.megamenu-promo {
    flex: 0 0 340px;
    /* Wider promo column */
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #fcfcfc;
}

.promo-item {
    position: relative;
    overflow: hidden;
    height: 75px;
    /* Increased height to look more filled */
    width: 100%;
    background: #000;
}

.promo-item.promo-item-large {
    height: 330px;
    /* Full height of the mega-menu content area */
}

.promo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.promo-item span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-weight: 800;
    font-size: 20px;
    /* Slightly larger text for larger banner */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.promo-item:hover img {
    transform: scale(1.05);
    opacity: 1;
}

/* Responsive Optimizations */
@media (max-width: 1400px) {
    .nav-list {
        gap: 25px;
    }
}

/* Header Visibility Toggle */
.header-mobile {
    display: none;
}

@media (max-width: 1266px) {
    body {
        padding-top: 60px !important;
        /* Matches mobile header height precisely */
    }

    .header-inner {
        padding: 0 10px !important;
    }

    .header-desktop {
        display: none !important;
    }

    .header-mobile {
        display: block !important;
        background: #fff;
    }

    /* Hide non-essential items on mobile */
    .language-dropdown,
    .social-icons,
    .separator-vertical {
        display: none !important;
    }





    /* Fixed navigation adjustment for mobile */
    .custom-navbar-fixed.main-header {
        top: 0px !important;
    }

    .mobile-header-inner {
        display: grid;
        grid-template-columns: 40px 1fr 100px;
        /* Fixed widths for side columns to prioritize center logo space */
        align-items: center;
        height: 60px;
        /* Slightly tighter height */
        width: 99%;
        padding: 0 !important;
        /* No left padding so hamburger reaches the true left edge */
        box-sizing: border-box;
    }

    #mobile-menu-btn.mobile-hamburger {
        grid-column: 1;
        justify-self: start;
        background: none;
        border: none;
        font-size: 24px;
        color: var(--color-heading);
        cursor: pointer;
        padding: 0;
        /* Aligned to extreme left edge */
        display: flex !important;
        align-items: center;
    }

    .mobile-logo {
        grid-column: 2;
        justify-self: center;
        display: flex;
        align-items: center;
    }

    .mobile-logo .logo-img {
        /* height: min(25px, 6vw); */
        /* Further reduced to scale down width */
        width: auto;
        object-fit: contain;
        display: block;
        margin: 0 auto;
    }

    .mobile-actions {
        grid-column: 3;
        justify-self: end;
        display: flex;
        align-items: center;
        gap: 12px;
        /* Fixed tight gap */
    }

    .mobile-action-btn {
        position: relative;
        color: var(--color-heading);
        font-size: 18px;
        /* Fixed balanced size */
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
    }

    /* Mobile Search Bar (Hidden by default) */
    .mobile-search-bar {
        position: absolute;
        top: 100%;
        /* Slide down from header */
        left: 0;
        width: 100%;
        background: #ffffff;
        padding: 15px 15px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        border-bottom: 1px solid #f0f0f0;
    }

    .mobile-search-bar.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .mobile-search-inner {
        display: flex;
        align-items: center;
        gap: 15px;
        max-width: 100%;
    }

    .mobile-search-input {
        flex: 1;
        border: 1px solid #eee;
        padding: 12px 18px;
        border-radius: 4px;
        font-family: var(--rubik-arial);
        font-size: 15px;
        outline: none;
        background: #f9f9f9;
        transition: border-color 0.3s ease;
    }

    .mobile-search-input:focus {
        border-color: #000080;
        background: #fff;
    }

    .mobile-search-close {
        background: none;
        border: none;
        font-size: 20px;
        color: #999;
        cursor: pointer;
        padding: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: color 0.3s ease;
    }

    .mobile-search-close:hover {
        color: #e31e24;
    }
}

/* Adjustments for even smaller screens */
@media (max-width: 375px) {
    .mobile-header-inner {
        padding: 0 10px;
    }

    .mobile-actions {
        gap: 8px;
    }
}

.wishlist-trigger {
    position: relative;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: color 0.3s ease;
}

.wishlist-trigger:hover {
    color: var(--color-accent);
}

.wishlist-count {
    position: absolute;
    bottom: -5px;
    right: -8px;
    background-color: #000080 !important;
    /* Navy Blue requested */
    color: #fff !important;
    font-size: 10px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #fff;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wishlist-count.has-items {
    opacity: 1;
    transform: scale(1);
}

/* Action Button Heart (Product Cards) */
.wishlist-btn {
    transition: all 0.3s ease;
}

.wishlist-btn.active i {
    color: #000080;
    animation: heartBeat 0.3s ease;
}

@keyframes heartBeat {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

/* --- Wishlist Modal Styles --- */
.wishlist-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.wishlist-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.wishlist-modal {
    background: #fff;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.wishlist-modal-overlay.active .wishlist-modal {
    transform: translateY(0);
}

.wishlist-modal-header {
    background: #333;
    color: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: flex-end;
}

.wishlist-modal-close {
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    background: none;
    border: none;
}

.wishlist-modal-body {
    padding: 30px;
    overflow-y: auto;
}

.wishlist-modal-title {
    font-family: var(--font-primary);
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 500;
}

.wishlist-search-container {
    position: relative;
    margin-bottom: 30px;
}

.wishlist-search-input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    color: #333;
    outline: none;
}

.wishlist-search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 18px;
}

.wishlist-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
}

.wishlist-item-card {
    display: flex;
    flex-direction: column;
}

.wishlist-item-image-wrap {
    position: relative;
    background: #f7f7f7;
    margin-bottom: 15px;
    aspect-ratio: 1/1;
    /* Square ratio often fits products better */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Ensure cover doesn't bleed */
}

.wishlist-item-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wishlist-item-remove {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 18px;
    color: #333;
    cursor: pointer;
    z-index: 2;
}

.wishlist-item-name {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
}

.wishlist-item-price {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.wishlist-item-attr {
    font-size: 14px;
    color: #888;
    margin-bottom: 15px;
}

.btn-move-to-cart {
    background: #000;
    color: #fff;
    padding: 12px 0;
    width: 100%;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    transition: background 0.3s ease;
    border: none;
}

.btn-move-to-cart:hover {
    background: #333;
}

.wishlist-empty-msg {
    text-align: center;
    padding: 40px 0;
    color: #666;
    font-size: 18px;
}

@media (max-width: 768px) {
    .wishlist-modal-body {
        padding: 15px;
    }

    .wishlist-modal-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .wishlist-items-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .wishlist-item-name {
        font-size: 14px;
        line-height: 1.3;
    }

    .wishlist-item-price {
        font-size: 14px;
    }

    .wishlist-item-attr {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .btn-move-to-cart {
        padding: 8px 0;
        font-size: 11px;
    }
}

/* Center cart count inside SVG bag */
.cart-trigger {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    color: #000080 !important;
    /* Navy Blue requested */
}

.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.cart-icon svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    display: block;
}

.cart-count {
    position: relative;
    /* Relative to centered flex parent */
    top: 3px;
    /* Nudge down from center to bag body center */
    left: auto !important;
    right: auto !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    color: #000080 !important;
    background: transparent !important;
    margin: 0 !important;
    padding: 0 !important;
    pointer-events: none;
    border: none !important;
}


.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--color-heading);
    margin-left: 10px;
}

/* --- Utility Classes --- */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--mobile-padding);
    }
}

.section {
    padding: 50px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 40px;
    text-transform: uppercase;
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    border: none;
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
    cursor: pointer;
    line-height: 1;
    text-decoration: none;
    text-align: center;
    min-width: 160px;
}

.btn-primary {
    background-color: var(--color-heading);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    height: 48px;
    background: transparent;
    border: 2px solid var(--color-white);
    color: var(--color-white);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.1em;
    border-radius: var(--radius-sm);
    text-decoration: none;
    line-height: 1;
    transition: var(--transition-base);
}

.btn-outline-white:hover {
    background: var(--color-white);
    color: var(--color-black);
    transform: translateY(-2px);
}

/* --- Hero Slider - Modern Full Banner --- */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
    background-color: #0a0a0a;
}

.slider-wrapper {
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 100px;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* Modern Gradient Overlay */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg,
            rgba(0, 0, 128, 0.7) 0%,
            rgba(26, 26, 26, 0.5) 50%,
            rgba(0, 0, 0, 0.8) 100%); */
    z-index: 1;
}

/* Content Container */
.slide-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    text-align: left;
    padding: 40px 0;
}

.slide-text-wrapper {
    height: 320px;
    /* Rigid height to prevent any vertical shift */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.slide-title-large {
    font-family: var(--font-heading);
    font-size: clamp(48px, 8vw, 96px);
    line-height: 1;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: slideInDown 0.8s ease-out 0.2s both;
}

.slide-subtitle-text {
    font-family: var(--font-primary);
    font-size: clamp(16px, 2vw, 22px);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    font-weight: 300;
    max-width: 600px;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.8s ease-out 0.4s both;
}

.slide-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 0;
    /* Padding-top/bottom only, width is fixed */
    width: 250px;
    /* Fixed width to prevent horizontal expansion/contraction */
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    animation: fadeInOnly 0.8s ease-out 0.6s both;
}

.slide-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.slider-arrow {
    display: none;
}

.prev-slide {
    left: 50px;
}

.next-slide {
    right: 50px;
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

/* Modern Pagination Dots */
.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.dot.active {
    background-color: #fff;
    width: 40px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
}

/* Modern Animations */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInOnly {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .slide-content {
        padding: 30px;
    }

    .slide-title-large {
        font-size: clamp(40px, 7vw, 72px);
        margin-bottom: 25px;
    }

    .slide-subtitle-text {
        font-size: clamp(15px, 1.8vw, 20px);
        margin-bottom: 35px;
    }

    .slide-btn {
        padding: 16px 40px;
        min-width: 180px;
    }
}

@media (max-width: 768px) {
    .slide {
        padding: 16px 0px;
        /* Reduced padding for mobile */
    }

    .slide-content {
        padding: 30px 0;
        max-width: 100%;
    }

    .slide-title-large {
        font-size: clamp(32px, 8vw, 48px);
        margin-bottom: 15px;
        letter-spacing: 1px;
    }

    .slide-subtitle-text {
        font-size: 15px;
        margin-bottom: 25px;
        max-width: 100%;
        line-height: 1.6;
    }

    .slide-text-wrapper {
        height: auto;
        /* Allow natural height on mobile */
        min-height: auto;
    }

    .slide-btn {
        width: 100%;
        /* Full width button on small mobile for easier tapping, or auto? */
        max-width: 280px;
        /* Cap it but keep it left aligned */
        padding: 15px 0;
        font-size: 13px;
    }

    .slider-dots {
        bottom: 30px;
    }
}

@media (max-width: 480px) {
    .slide-content {
        padding: 20px 15px;
    }

    .slide-title-large {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .slide-subtitle-text {
        font-size: 14px;
        margin-bottom: 25px;
        line-height: 1.6;
    }

    .slide-btn {
        padding: 12px 30px;
        min-width: 140px;
        font-size: 12px;
    }

    .slider-dots {
        bottom: 25px;
        gap: 10px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .dot.active {
        width: 35px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Sections --- */
.section {
    padding: 50px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    color: var(--color-heading);
    margin-bottom: 10px;
}

.section-subtitle {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 400;
    color: #8e8e8e;
    /* Specific subtitle gray */
    display: block;
}

/* --- Categories Grid --- */
.categories-grid {
    width: 100%;
}

.category-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

@media (max-width: 1200px) {
    .category-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .category-row {
        grid-template-columns: 1fr;
    }
}

.category-item {
    /* height: 400px; */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.category-item:hover {
    transform: scale(1.02);
}

.cat-content {
    text-align: center;
    background: var(--color-white);
    padding: var(--space-md) var(--space-lg);
    opacity: 0;
    transition: var(--transition-base);
    min-width: 240px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
}

.category-item:hover .cat-content {
    opacity: 1;
}

.cat-content h3 {
    text-transform: uppercase;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
    color: var(--color-heading);
}

.cat-content a {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--color-body);
    border-bottom: 1px solid var(--color-accent);
    padding-bottom: 2px;
    transition: color 0.3s, border-color 0.3s;
}

.cat-content a:hover {
    color: var(--color-accent);
}

/* --- Product Cards --- */
/* --- Premium Product Cards (Gray-Nicolls Style) --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background-color: transparent;
    position: relative;
    padding-bottom: 30px;
    transition: all 0.3s ease;
    text-align: left;
}

.product-image-container {
    position: relative;
    /* background-color: #f7f7f7; */
    /* Off-white/very light grey */
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-bottom: 20px;
    padding: 0;
    transition: box-shadow 0.3s ease;
}

.product-image {
    width: 95%;
    height: 95%;
    object-fit: contain;
    display: block;
    transition: transform 0.5s ease;
    margin: auto;
}

.product-card:hover .product-image-container {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    /* Premium subtle elevation */
}

.product-card:hover .product-image {
    transform: scale(1.03);
    /* Subtle zoom */
}

.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    color: #333;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wishlist-btn svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.5px;
}

.wishlist-btn:hover {
    transform: scale(1.1);
}

.wishlist-btn.active svg {
    fill: #000080;
    stroke: #000;
}

.product-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #000;
    line-height: 1.4;
    padding: 0;
}

.product-price {
    font-size: 16px;
    font-weight: 400;
    color: #444;
}

.color-dots {
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 12px;
}

.color-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #ddd;
}


.grid-banner {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
}

@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}



.product-actions {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    padding: 15px;
    transition: bottom 0.4s ease;
}

.product-card:hover .product-actions {
    bottom: 0;
}

.add-to-cart {
    text-transform: uppercase;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--color-heading);
    cursor: pointer;
}

.add-to-cart:hover {
    color: var(--color-accent);
}

.product-category {
    font-family: var(--font-primary);
    font-size: 11px;
    text-transform: uppercase;
    color: #adadad;
    letter-spacing: 1px;
    margin-bottom: 5px;
    display: block;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
    color: var(--color-heading);
}

.product-price {
    font-family: var(--font-heading);
    font-weight: 600;
    font-style: normal;
    color: var(--color-accent);
    font-size: 16px;
}

/* --- Blog Section --- */
/* --- Blog Section (Premium Redesign) --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}


/* Premium Blog Card used in Slider */
.premium-blog-card {
    flex: 0 0 calc(25% - 22.5px);
    /* Match product card sizing */
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    background: transparent;
}

.blog-media {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    margin-bottom: 20px;
    background: #f5f5f5;
}

.blog-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.premium-blog-card:hover .blog-media img {
    transform: scale(1.05);
}

.blog-details {
    padding: 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-title a:hover {
    color: #333;
}

.blog-excerpt {
    font-family: var(--font-primary);
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

/* Distinct "Read Now" Button Style */
.blog-read-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 0;
    background-color: #ffffff;
    border: 1px solid #000080;
    color: #000080;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.blog-read-btn:hover {
    background-color: #000080;
    color: #ffffff;
}

/* Responsive Blog Slider */
@media (max-width: 1200px) {
    /* No generic blog-grid media queries needed as we reuse slider logic */
}

@media (max-width: 767px) {
    .premium-blog-card {
        flex: 0 0 calc(75% - 15px);
        /* Show part of next card on mobile */
    }

    .blog-media {
        aspect-ratio: 16/9;
    }
}

/* === Professional Footer Redesign === */
.main-footer {
    background-color: #fff;
    color: #1a1a1a;
    padding: 80px 0 50px;
    border-top: 1px solid #f0f0f0;
    font-family: var(--font-primary);
}

.smasher-footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 80px;
}

/* Left Section: Branding & Links */
.smasher-footer-left {
    flex: 2;
    display: flex;
    gap: 100px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 25px;
    display: block;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
}

.footer-social-title {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.smasher-footer-social {
    display: flex;
    gap: 18px;
}

.smasher-footer-social a {
    color: #1a1a1a;
    font-size: 16px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.smasher-footer-social a:hover {
    color: var(--color-accent);
    transform: translateY(-3px);
}

.footer-links-group {
    display: flex;
    gap: 80px;
    flex: 1;
}

.footer-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: default;
}

.footer-toggle {
    display: none;
    /* Hidden on desktop */
    font-size: 14px;
    color: #1a1a1a;
}

.footer-widget-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #666;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

/* Right Section: Newsletter */
.smasher-footer-right {
    flex: 1;
    max-width: 380px;
    padding-left: 80px;
    border-left: 1px solid #f0f0f0;
}

.newsletter-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
}

.newsletter-form {
    width: 100%;
}

.newsletter-input-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-input-group input {
    height: 50px;
    border: 1px solid #e0e0e0;
    padding: 0 20px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-input-group input:focus {
    border-color: #1a1a1a;
}

.newsletter-btn {
    height: 50px;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-btn:hover {
    background-color: var(--color-accent);
}

/* Mobile Responsiveness */
@media (max-width: 1200px) {
    .smasher-footer-grid {
        gap: 40px;
    }

    .smasher-footer-left {
        gap: 60px;
    }

    .smasher-footer-right {
        padding-left: 40px;
    }
}

@media (max-width: 1024px) {
    .smasher-footer-grid {
        flex-direction: column;
        gap: 0;
        /* Removed gap to eliminate double spacing */
    }

    .smasher-footer-left {
        flex-direction: column;
        gap: 0;
    }

    .footer-links-group {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .smasher-footer-right {
        padding-left: 0;
        border-left: none;
        max-width: 100%;
        border-top: none;
        /* Removed redundant border */
        padding-top: 0;
        /* Removed redundant padding */
    }

    /* Accordion Styles for Mobile */
    .footer-accordion-header {
        cursor: pointer;
        padding: 15px 0;
        border-top: 1px solid #f0f0f0;
        width: 100%;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .footer-toggle {
        display: block;
        transition: transform 0.3s ease;
        font-weight: 700;
        font-size: 16px;
    }

    .footer-accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0;
        padding: 0;
        margin-top: 0;
    }

    .footer-col.footer-active .footer-accordion-content,
    .footer-branding.footer-active .footer-accordion-content {
        max-height: 800px;
        opacity: 1;
        padding-bottom: 25px;
        border-bottom: none;
    }

    .footer-widget-title,
    .footer-social-title {
        /* margin: 0 !important; */
        flex: 1;
        font-size: 10px !important;
        font-weight: 800 !important;
        text-transform: uppercase !important;
        color: #1a1a1a !important;
        letter-spacing: 1px !important;
    }

    .footer-branding {
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-logo {
        margin: 0 auto 15px !important;
        height: 45px !important;
    }

    .footer-branding .footer-social-title {
        margin-bottom: 15px !important;
        justify-content: center;
        display: flex;
    }

    .footer-branding .smasher-footer-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .smasher-footer-left {
        flex-direction: column;
        gap: 0;
    }

    .footer-links-group {
        gap: 0;
        flex-wrap: wrap;
    }
}

/* Divider & Bottom */
.footer-divider {
    height: 1px;
    background-color: #E6E6E6;
    margin-bottom: 30px;
    width: 100%;
}

.footer-bottom-container {
    padding: 25px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    font-size: 13px;
    color: #666;
    text-align: center;
}

.footer-location-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.shop-to-text {
    color: #888;
}

.location-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-weight: 700;
    color: #000;
}

.location-selector i.fa-map-marker-alt {
    color: #e31e24;
    /* Red color from image */
    font-size: 16px;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 500px;
    width: 100%;
}

.footer-legal-links a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #000;
}

.footer-payment-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    font-size: 24px;
}

.copyright-text {
    font-size: 13px;
    color: #888;
}

.copyright-text a {
    color: #888;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Desktop override for footer-bottom-container */
@media (min-width: 1201px) {
    .footer-bottom-container {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        padding: 40px 0;
    }

    .footer-location-wrap {
        order: 1;
        justify-content: flex-start;
        flex: 0 0 auto;
    }

    .footer-legal-links {
        order: 2;
        justify-content: center;
        flex: 1 1 auto;
        margin-top: 0;
    }

    .footer-payment-icons {
        order: 3;
        justify-content: center;
        flex: 0 0 auto;
    }

    .copyright-text {
        order: 4;
        text-align: right;
        flex: 0 0 auto;
        margin-top: 0;
    }
}

@media (min-width: 769px) and (max-width: 1200px) {
    .footer-bottom-container {
        display: grid;
        grid-template-areas:
            "location icons"
            "legal copyright";
        justify-content: space-between;
        align-items: center;
        gap: 20px;
    }

    .footer-location-wrap {
        grid-area: location;
        justify-content: flex-start;
    }

    .footer-payment-icons {
        grid-area: icons;
        justify-content: flex-end;
    }

    .footer-legal-links {
        grid-area: legal;
        justify-content: flex-start;
        margin-top: 0;
    }

    .copyright-text {
        grid-area: copyright;
        text-align: right;
        margin-top: 0;
    }
}

/* Handled in .footer-bottom-container on mobile */

/* --- Responsive --- */
/* --- Responsive --- */
@media (max-width: 992px) {
    /* Nav adjustments removed from here to enforce strict 768px separation */
    /* Kept grids for tablet responsiveness */



    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .columns-grid {
        grid-template-columns: 1fr;
        /* Stack on mobile */
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .header-inner {
        padding: 0 20px;
        height: 70px;
    }

    .main-header {
        position: relative;
        /* Unstick on mobile if needed, or keep sticky */
    }

    /* Hero Responsive */
    .hero-slider {
        height: 500px;
    }

    .slider-content-wrapper {
        padding-left: 20px;
        padding-right: 20px;
        text-align: center;
    }

    .slide-content-left {
        align-items: center;
        text-align: center;
        margin: 0 auto;
    }

    .slide-title-large {
        font-size: 40px;
        margin-bottom: 10px;
    }

    .slide-subtitle-text {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 24px;
    }

    .container {
        padding: 0 var(--mobile-padding);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .category-row {
        flex-direction: column;
        gap: 15px;
    }

    .category-item {
        height: 300px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .free-shipping-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .free-shipping-title {
        font-size: 24px;
    }

    .parallax-section {
        padding: 60px 0;
    }

    .parallax-title {
        font-size: clamp(24px, 8vw, 36px);
        line-height: 1.2;
    }

    .parallax-description {
        font-size: 16px;
        line-height: 1.5;
    }

    /* Footer Mobile adjustments handled in global .footer-bottom-container */
    .main-footer {
        padding: 40px 0 30px;
    }

    .footer-col {
        text-align: left;
    }

    .footer-widget-title {
        justify-content: flex-start;
        display: flex;
    }

    /* Footer bottom elements handled by .footer-bottom-container */

    .newsletter-form {
        max-width: 100%;
        margin: 0 auto;
    }
}



.btn-outline-white {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--color-white);
}

.btn-outline-white:hover {
    background-color: var(--color-white);
    color: var(--color-heading);
    border-color: var(--color-white);
}

/* --- Best Sellers --- */
/* Reuse product-grid, add price styles */
.product-price del {
    color: #999;
    font-size: 14px;
    margin-right: 5px;
    text-decoration: line-through;
}

.product-price ins {
    text-decoration: none;
    color: var(--color-accent);
}

/* --- Free Shipping --- */
.free-shipping {
    background-color: #1a1a1a;
    /* Dark background */
    color: var(--color-white);
    padding: 60px 0;
}

.free-shipping-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.free-shipping-title {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 600;
    color: var(--color-white);
    margin: 0;
}

/* --- Mixed Columns --- */
.columns-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.column-title {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 400;
    color: #8e8e8e;
    /* Subtitle color */
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    text-transform: capitalize;
}

/* --- Modern Triptych Redesign --- */
.mixed-columns {

    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    padding: 80px 0;
}

.columns-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: start;
}

.column-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 35px;
    padding-bottom: 15px;
    border-bottom: 2px solid #000080;
    /* Navy Blue Accent */
    display: inline-block;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Small Product Cards - Premium Polish */
.product-list-small {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-small {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    background: #fff;
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.product-small:hover {
    border-color: #e1e1e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateX(5px);
}

.product-small-image {
    width: 70px;
    height: 75px;
    flex-shrink: 0;
    overflow: hidden;
    background: #f9f9f9;
}

.product-small-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-small:hover .product-small-image img {
    transform: scale(1.1);
}

.product-small-info {
    flex: 1;
}

.product-small-title {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 4px;
    line-height: 1.2;
}

.product-small-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-small:hover .product-small-title a {
    color: #000080;
}

.product-small-category {
    font-family: var(--font-primary);
    font-size: 10px;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Trending Immersive Spotlight */
.trending-spotlight {
    position: relative;
    height: 100%;
    min-height: 400px;
    border-radius: 4px;
    overflow: hidden;
}

.trending-spotlight img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.2, 0, 0.2, 1);
}

.trending-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 80, 0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 1;
    transition: background 0.4s ease;
}

.trending-tag {
    background: #000080;
    color: #fff;
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    width: fit-content;
    margin-bottom: 12px;
}

.trending-title {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.trending-btn {
    color: #fff;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 0;
    border-bottom: 2px solid #fff;
    width: fit-content;
    transition: all 0.3s ease;
}

.trending-spotlight:hover img {
    transform: scale(1.05);
}

.trending-btn:hover {
    padding-left: 10px;
    border-bottom-color: transparent;
}

/* --- Mobile Sidebar --- */
/* --- Mobile Sidebar --- */
#mobile-menu-btn {
    display: none;
    /* Hidden by default (desktop) - controlled by media query below */
    background-color: transparent;
    color: #000;
    border: none;
    padding: 0;
    /* Remove padding to match other icons */
    font-size: 20px;
    /* Match other icons size */
    cursor: pointer;
    box-shadow: none;
    align-items: center;
    justify-content: center;
    line-height: 1;
    margin-left: 15px;
    /* Spacing from cart */
}

#mobile-menu-btn i {
    font-size: 20px;
}

#mobile-menu-overlay {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100% - 60px);
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

#mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

#mobile-sidebar {
    position: fixed;
    top: 60px;
    left: 0;
    width: 85vw;
    max-width: 360px;
    height: calc(100vh - 60px);
    background-color: #ffffff;
    z-index: 2001;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.12);
    padding: 0;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateX(-100%);
    overflow-y: auto;
    overflow-x: hidden;
}

#mobile-sidebar.active {
    transform: translateX(0);
}

#mobile-sidebar .sidebar-header {
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    align-items: center;
    padding: 0 20px;
    margin-bottom: 20px;
}

#mobile-sidebar .sidebar-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

#mobile-sidebar .sidebar-logo .logo-img {
    height: 25px;
    width: auto;
}

#mobile-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #555;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

#mobile-menu-close:hover {
    color: #000080;
    cursor: pointer;
}

.mobile-hamburger {
    background: none;
    border: none;
    font-size: 20px;
    color: #000;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list li {
    width: 100%;
}

.mobile-nav-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 30px;
    color: #1a1a1a;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, padding-left 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-list li a i {
    color: #ccc;
    font-size: 12px;
}

.mobile-nav-list li a:hover {
    background-color: #fcfcfc;
    color: var(--color-accent);
    padding-left: 35px;
}

/* === MOBILE RESPONSIVE STYLES === */
/* Consolidated mobile styles into upper media query for consistency */
@media (max-width: 768px) {
    /* Retain only non-header responsive needs here if any, 
       otherwise keep clean to avoid specificity wars */
}

/* Ensure Mobile Elements are hidden and Desktop elements are visible on larger screens */
@media (min-width: 1267px) {
    #mobile-menu-btn {
        display: none !important;
    }

    #mobile-sidebar {
        display: none !important;
        pointer-events: none;
        opacity: 0;
    }

    .smasher-nav {
        display: flex !important;
    }
}

/* === INTERACTIVE PRODUCT SHOWCASE SECTION === */
.product-showcase {
    background-color: #f9f9f9;
}

.showcase-header {
    text-align: center;
    margin-bottom: 40px;
}

.showcase-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: var(--color-heading);
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.showcase-description {
    font-family: var(--font-primary);
    font-size: 1rem;

    max-width: 730px;
    margin: 0 auto;
}

/* Tab Navigation */
.tab-navigation {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 0px 40px 20px 40px;
    flex-wrap: wrap;
}

.tab-btn {
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #999;
    padding: 10px 0;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #000080;
    transition: width 0.3s ease;
}

.tab-btn:hover {
    color: #333;
}

.tab-btn.active {
    color: #000;
    font-weight: 600;
}

.tab-btn.active::after {
    width: 100%;
}

/* Two Column Layout */
.showcase-header {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
}

.showcase-nav-buttons {
    display: none;
    /* Hidden on desktop */
    gap: 15px;
}

.showcase-nav-btn {
    width: 45px;
    height: 45px;
    border: 1px solid #e0e0e0;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.showcase-nav-btn:hover {
    background: #000080;
    color: #fff;
    border-color: #000080;
}

.showcase-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    /* Identical to .lg:grid-cols-2 */
    column-gap: 1.25rem;
    /* Identical to .gap-x-5 */
    margin-top: 0px;
    align-items: stretch;
    max-width: 1400px;
    /* Using full container width as it's a showcase */
    margin-left: auto;
    margin-right: auto;
}

/* Left Column: Dynamic Image */
.showcase-image-container {
    background-color: #fff;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    /* Required for lg:absolute */
    height: 100%;
    min-height: 480px;
}

.showcase-image {
    position: absolute;
    /* Identical to lg:absolute */
    inset: 0;
    /* Identical to lg:inset-0 */
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

.showcase-image.fade-out {
    opacity: 0;
}

/* Right Column: Scrollable Product List */
.showcase-products-container {
    background-color: #fff;
    border-radius: 0;
    /* Match screenshot's sharp edges */
    box-shadow: none;
    height: 480px;
    overflow: hidden;
    position: relative;
    /* For absolute arrow positioning */
}

/* Overlay Arrows */
.showcase-arrow-overlay {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    /* Hidden by default on desktop */
    pointer-events: none;
}

.showcase-arrow-overlay.prev-showcase {
    left: 10px;
}

.showcase-arrow-overlay.next-showcase {
    right: 10px;
}

.showcase-arrow-overlay:hover {
    background: #000080;
    color: #fff;
}

.showcase-products-scroll {
    height: 100%;
    overflow-y: auto;
    padding: 0 15px 0 0;
    /* Space for scrollbar */
    scrollbar-width: thin;
    scrollbar-color: #000080 #f5f5f5;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1.25rem;
    /* Identical to .gap-x-5 */
    row-gap: 1rem;
    /* Identical to .gap-y-4 */
}

/* Custom Scrollbar for Webkit browsers */
.showcase-products-scroll::-webkit-scrollbar {
    width: 4px;
}

.showcase-products-scroll::-webkit-scrollbar-track {
    background: #f5f5f5;
}

.showcase-products-scroll::-webkit-scrollbar-thumb {
    background-color: #e31e24;
    /* Red scrollbar from screenshot */
    border-radius: 0;
}

.showcase-products-scroll::-webkit-scrollbar-thumb:hover {
    background-color: #000080;
}

/* Product Cards */
.showcase-product-card {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    margin-bottom: 30px;
    background-color: transparent;
    border: none;
    border-radius: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.showcase-product-card:hover {
    transform: translateY(-5px);
}

.showcase-product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #f6f6f6;
    overflow: hidden;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0px;
    transition: transform 0.5s ease;
}

.showcase-product-card:hover .showcase-product-image img {
    transform: scale(1.05);
}

.wishlist-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 22px;
    color: #1a1a1a;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
    z-index: 5;
    padding: 0;
    box-shadow: none;
}

.wishlist-icon:hover {
    color: #e31e24;
    transform: scale(1.2);
    background: transparent;
}

.showcase-product-info {
    padding: 5px 0;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.showcase-swatch {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-bottom: 8px;
    display: inline-block;
}

.showcase-product-title {
    font-family: var(--rubik-arial);
    font-size: 15px;
    font-weight: 700;
    /* Bold as per request */
    line-height: 1.3;
    margin-bottom: 4px;
    color: #000;
}

.showcase-product-price {
    font-size: 14px;
    color: #1a1a1a;
    font-weight: 400;
}



/* === RESPONSIVE: MOBILE === */
@media (max-width: 768px) {
    .showcase-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }



    .showcase-image-container {
        min-height: 350px;
    }

    .showcase-products-container {
        height: 450px;
    }

    .showcase-title {
        font-size: 24px;
    }

    .showcase-description {
        font-size: 14px;
    }
}



/* === TRUST / USP SECTION === */
.trust-section {
    background-color: #f7f7f7;
    padding: 70px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.trust-item {
    text-align: center;
    padding: 20px;
}

.trust-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.trust-icon i {
    font-size: 26px;
    color: #000080;
}

.trust-heading {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-heading);
    margin-bottom: 10px;
    line-height: 1.4;
}

.trust-description {
    font-family: var(--font-primary);
    font-size: 13px;
    color: #777;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .trust-section {
        padding: 50px 0;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .trust-item {
        padding: 15px;
    }
}

/* === PREMIUM HERO BANNER SECTION === */
.premium-hero-banner {
    position: relative;
    min-height: 850px;
    /* Taller for premium feel */
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
        url('../img/banner 1(desktop).png') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 5% 60px 5%;
    overflow: hidden;
    z-index: 1;
}

.premium-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Removed Ken Burns */

.banner-overlay {
    display: none;
}

.premium-hero-banner .container {
    position: relative;
    z-index: 2;
}

.banner-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.banner-title {
    font-family: var(--font-heading);
    font-size: clamp(40px, 12vw, 120px);
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    /* Tighter for premium look */
    margin: 0 0 40px 0;
    line-height: 0.95;
    overflow-wrap: break-word;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.banner-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(14px, 2vw, 24px);
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    /* Wider tracking for elegance */
    margin: 0 0 20px 0;
    line-height: 1.1;
    max-width: none;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.banner-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 50px;
    background: rgba(0, 0, 128, 0.8);
    /* Using theme blue */
    backdrop-filter: blur(10px);
    /* Glassmorphism */
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    cursor: pointer;
    line-height: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.9);
}

.banner-content.reveal .banner-subtitle,
.banner-content.reveal .banner-title,
.banner-content.reveal .banner-cta {
    opacity: 1;
    transform: none;
}

.banner-content.reveal .banner-subtitle {
    transition-delay: 0.2s;
}

.banner-content.reveal .banner-title {
    transition-delay: 0.4s;
}

.banner-content.reveal .banner-cta {
    transition-delay: 0.6s;
}

.banner-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    transition: all 0.6s ease;
}

.banner-cta:hover::after {
    left: 150%;
}

.banner-cta:hover {
    background: rgba(0, 0, 128, 1);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 128, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
}

/* === SECONDARY HERO BANNER SECTION === */
.secondary-hero-banner {
    position: relative;
    min-height: 800px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
        url('../img/banner 2(desktop).png') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 5%;
    overflow: hidden;
    z-index: 1;
}

.secondary-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
    pointer-events: none;
}

/* Scroll Indicator Styles - Removed */

.secondary-hero-banner .container {
    position: relative;
    z-index: 2;
}

.banner-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.banner-cta:hover::before {
    left: 100%;
}

.banner-cta:hover {
    background-color: #000080;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px #000080;
}

.banner-cta:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px #000080;
}

/* === PARALLAX SECTION === */


.btn-outline-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    height: 45px;
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-decoration: none;
    line-height: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline-white:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-3px);
}


/* Responsive Design */
@media (max-width: 768px) {
    .premium-hero-banner {
        min-height: 650px;
        padding: 60px 20px 80px;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
            url('../img/banner 1 (mob).png') center center/cover no-repeat;
    }

    .secondary-hero-banner {
        background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
            url('../img/banner 2 mobile.png') center center/cover no-repeat;
    }

    .banner-content {
        text-align: center;
        width: 100%;
    }

    .banner-subtitle {
        font-size: 14px;
        margin-bottom: 12px;
        color: #ffffff;
        letter-spacing: 0.2em;
        /* Reduced for small screens */
    }

    .banner-title {
        font-size: clamp(32px, 10vw, 42px);
        line-height: 1.1;
        margin-bottom: 30px;
    }

    .banner-cta {
        padding: 14px 32px;
        font-size: 14px;
        backdrop-filter: blur(5px);
        /* Less blur for performance if needed */
        background: rgba(0, 0, 128, 0.9);
    }
}

@media (max-width: 480px) {
    .premium-hero-banner {
        min-height: 600px;
        padding: 50px 15px 60px;
    }

    .banner-title {
        font-size: 36px;
    }

    .banner-cta {
        padding: 12px 32px;
        font-size: 14px;
        letter-spacing: 1px;
    }
}

/* --- Trust Section --- */
.trust-section {
    padding: 30px 0;
    /* Reduced from 60px */
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    /* Reduced gap */
}

.trust-icon {
    font-size: 22px;
    /* Smaller icon to match image */
    color: #333;
    margin-bottom: 2px;
}

.trust-heading {
    font-family: var(--font-heading);
    font-size: 14px;
    /* Smaller text */
    font-weight: 500;
    color: var(--color-heading);
    margin: 0;
    text-transform: none;
    /* Removed uppercase */
    letter-spacing: 0;
}

.trust-description {
    font-family: var(--font-primary);
    font-size: 11px;
    /* Smaller description */
    color: #8e8e8e;
    margin: 0;
}

/* Mobile Swipe Gesture Adjustments */
@media (max-width: 991px) {
    .trust-grid {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding: 10px 20px 25px;
        margin: 0 -20px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
    }

    .trust-grid::-webkit-scrollbar {
        display: none;
    }

    .trust-item {
        flex: 0 0 60%;
        /* Smaller cards for mobile */
        scroll-snap-align: center;
        background: #fff;
        padding: 20px 15px;
        /* Reduced vertical padding */
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }
}

/* Modern Product Grid Section */
.modern-product-section {
    padding: 60px 0;
    background-color: #fff;
}

.modern-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}


/* --- Modern Product Grid: now uses best-sellers-grid / premium-card pattern --- */


/* --- Best Sellers & Trending Premium Redesign --- */
.best-sellers-premium,
.trending-premium {
    background: #ffffff;
    padding: 40px 0;
}





/* --- Shop By Category Custom Redesign --- */
.category-section {
    padding: 40px 0;
    background: #f8f9fa;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    height: 36px;
    margin: 0 0 20px 0;
}

.category-title {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 450;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.category-nav {
    display: flex;
    gap: 12px;
}

.category-nav-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 12px;
}

.category-nav-btn.prev-cat {
    background: #edeff2;
    color: #444;
}

.category-nav-btn.next-cat {
    background: #d1d7de;
    color: #444;
}

.category-nav-btn:hover {
    background: #c0c6cc;
}

/* Modern section header (Mirrors category-header) */
.modern-header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    margin: 0 0 25px 0;
}

.modern-text-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.modern-title-text {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 450;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1;
}

.modern-subtitle-text {
    font-family: var(--font-primary);
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.modern-nav-group {
    display: flex;
    gap: 12px;
}

.modern-nav-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 12px;
}

.modern-nav-btn.prev-modern {
    background: #edeff2;
    color: #444;
}

.modern-nav-btn.next-modern {
    background: #d1d7de;
    color: #444;
}

.modern-nav-btn:hover {
    background: #c0c6cc;
}

.category-slider-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-behavior: smooth;
    /* padding-bottom: 25px; */
    cursor: grab;
    user-select: none;
}

.category-slider-grid:active {
    cursor: grabbing;
}

.category-slider-grid::-webkit-scrollbar {
    display: none;
}

.category-item {
    flex: 0 0 calc(20% - 16px);
    /* 5 items per view on desktop */
    min-width: 220px;
    text-decoration: none;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.category-img-holder {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    margin-bottom: 12px;
    background: #fff;
    border-radius: 2px;
    max-height: 240px;
}

.category-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-item:hover img {
    transform: scale(1.08);
}

.category-name {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    display: block;
    text-align: left;
    text-decoration: underline;
    letter-spacing: 0.1px;
    width: 100%;
}


/* Progress Bar (Black over Grey track) */
.category-progress-container {
    width: 100%;
    height: 2px;
    background: #dee2e6;
    position: relative;
    margin-top: 25px;
    border-radius: 1px;
    overflow: hidden;
}

.category-progress-fill {
    position: absolute;
    height: 100%;
    width: 20%;
    /* Relative to 5 items per view */
    background: #000;
    transition: transform 0.15s ease-out;
    transform-origin: left;
}


@media (max-width: 1200px) {
    .category-item {
        flex: 0 0 calc(25% - 19px);
        /* 4 items */
    }
}

@media (max-width: 768px) {
    .category-section {
        padding: 30px 0;
    }

    .category-title {
        font-size: 20px;
    }

    .category-item {
        flex: 0 0 calc(50% - 12.5px);
        /* 2 items */
        min-width: 220px;
    }

    .category-nav-btn {
        width: 38px;
        height: 38px;
    }
}



/* Best Sellers Slider Container */
.best-sellers-grid {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 15px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
    scroll-behavior: smooth;
    padding-bottom: 20px;
    margin: 15px -15px;
    /* Bleed slightly for edge-to-edge swipe feeling */
    padding: 0 15px;
}

.best-sellers-grid::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.premium-card-link,
.premium-card.skeleton-card {
    flex: 0 0 calc(25% - 22.5px);
    /* 4 items per view on desktop */
    scroll-snap-align: start;
    text-decoration: none;
    display: block;
}

.premium-card {
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.premium-card-image {
    position: relative;
    background: #fff;
    width: 100%;
    aspect-ratio: 1 / 1.15;
    overflow: hidden;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.premium-card:hover .premium-card-image img {
    transform: scale(1.03);
}

.wishlist-btn-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: #1a1a1a;
    cursor: pointer;
    z-index: 5;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.wishlist-btn-overlay:hover {
    opacity: 1;
    color: #000080;
    transform: scale(1.1);
}

.premium-card-info {
    text-align: left;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Swatches */
.card-swatches {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.swatch {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.swatch-blue {
    background-color: #000080;
}

.swatch-green {
    background-color: #00ff00;
}

.swatch-maroon {
    background-color: #800000;
}

.swatch.active {
    border-color: #1a1a1a;
}

.card-title {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.3;
}

.card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.card-price {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.quick-view-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--color-accent);
    /* Use store blue */
    cursor: pointer;
    transition: transform 0.3s ease;
}

.quick-view-btn:hover {
    transform: scale(1.1);
}

/* Mobile Adjustments for Best Sellers Premium */
@media (max-width: 767px) {
    .best-sellers-header {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
    }

    .best-sellers-nav {
        margin-top: 0;
    }

    .best-sellers-grid {
        gap: 10px;
        margin: 0 -10px;
        padding: 0 10px;
    }

    .premium-card-link,
    .premium-card.skeleton-card {
        flex: 0 0 calc(50% - 7.5px);
        /* 2 items per view on mobile */
    }

    .premium-section-title {
        font-size: 24px;
    }

    .premium-section-desc {
        font-size: 14px;
    }

    .premium-card-image {
        margin-bottom: 15px;
    }

    .card-title {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .card-bottom {
        gap: 10px;
    }

    .card-price {
        font-size: 16px;
    }

    .swatch {
        width: 18px;
        height: 18px;
    }

    .quick-view-btn,
    .wishlist-btn-overlay {
        font-size: 20px;
    }
}

/* Slider Progress Bar Styling */
.slider-progress-container {
    width: 100%;
    height: 2px;
    background: #e0e0e0;
    margin-top: 30px;
    position: relative;
    border-radius: 1px;
    overflow: hidden;
}

.slider-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 25%;
    /* Initial width based on 4 items view */
    background: var(--color-accent);
    /* Store Blue */
    transition: transform 0.1s ease-out;
    transform-origin: left;
}

@media (max-width: 767px) {
    .slider-progress-bar {
        width: 50%;
        /* 2 items per view on mobile */
    }
}

/* --- Explore Our Collections Responsive Redesign --- */
@media (max-width: 1023px) {
    .showcase-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .showcase-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .showcase-nav-buttons {
        display: none !important;
        /* Force hide navigation buttons on mobile */
    }

    .showcase-image-container {
        min-height: 400px;
        order: -1;
    }

    .showcase-products-container {
        height: auto;
    }

    .showcase-products-scroll {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 20px;
        padding-bottom: 20px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        /* Hide scrollbar for clean look */
        -webkit-overflow-scrolling: touch;
    }

    .showcase-products-scroll::-webkit-scrollbar {
        display: none;
    }

    .showcase-product-card {
        flex: 0 0 280px;
        scroll-snap-align: center;
        margin-bottom: 0;
    }

    .showcase-swatch {
        width: 18px;
        height: 18px;
        margin-bottom: 10px;
    }

    .showcase-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Vertical Tabs for Mobile */
    .showcase-arrow-overlay {
        display: flex !important;
        /* Restore overlay arrows on mobile */
        opacity: 1;
        pointer-events: auto;
    }
}

/* Tab Navigation Swiper for Mobile Only (< 500px) */
@media (max-width: 500px) {
    .tab-navigation {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 30px;
        justify-content: flex-start;
        padding: 5px 20px 0 20px;
        margin: 0 -20px 30px;
        width: calc(100% + 40px);
        border-bottom: 1px solid #f0f0f0;
        scrollbar-width: none;
    }

    .tab-navigation::-webkit-scrollbar {
        display: none;
    }

    .tab-btn {
        width: auto;
        text-align: left;
        padding: 15px 0;
        flex: 0 0 auto;
        white-space: nowrap;
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        color: #999;
    }

    .tab-btn.active {
        color: #000;
    }

    .tab-btn::after {
        background-color: #000080;
        height: 3px;
        bottom: -1px;
    }
}

@media (max-width: 480px) {
    .showcase-product-card {
        flex: 0 0 240px;
    }
}

/* Hide Mixed Columns (Unique Showcasing) on Mobile as requested */
@media (max-width: 765px) {
    .mixed-columns {
        display: none !important;
    }
}

/* Fix Parallax Section Background - Redesigned (Bottom Right) */
.section-parallax {
    background-attachment: scroll !important;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-image: url('../img/design untitled desktop(4).png');
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: flex-end;
    /* Bottom aligned */
    justify-content: flex-end;
    /* Right aligned */
    padding: 80px 10%;
    /* Increased right padding for breathing room */
}

@media (max-width: 768px) {
    .section-parallax {
        background-image: url('../img/Untitled design (4).png');
        min-height: 500px;
        padding: 40px 5%;
    }
}

.section-parallax::before {
    position: absolute !important;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: right;
    max-width: none;
}



.parallax-subtitle {
    font-family: var(--font-heading);
    font-size: 25px;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 4px; /* More premium look */
    margin-bottom: 10px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.parallax-title {
    font-family: var(--font-heading);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.btn-red {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    background-color: #000080;
    /* Red color */
    color: #fff;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border: none;
}

.btn-red:hover {
    background-color: #000080;
    /* Darker red on hover */
    color: #fff;
}

/* === MID-SECTION BANNER SECTION === */
.mid-section-banner {
    position: relative;
    min-height: 750px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
        url('https://images.saymedia-content.com/.image/t_share/MjAzNzQyMTkxMTI4OTQ2NTc4/learning-to-play-cricket-for-children-aged-5-and-above.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* Align to the right */
    padding: 80px 10%;
    /* More right padding for breathing room */
    overflow: hidden;
}

.mid-section-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
    pointer-events: none;
}

.mid-banner-content {
    text-align: right;
    /* Right align text */
    max-width: 600px;
    margin-left: auto;
    position: relative;
    z-index: 2;
}

.mid-banner-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(20px, 4vw, 32px);
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 10px 0;
    line-height: 1.1;
}

.mid-banner-title {
    font-family: var(--font-heading);
    font-size: clamp(40px, 10vw, 86px);
    /* Very large as per screenshot */
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 30px 0;
    line-height: 0.95;
    overflow-wrap: break-word;
}

.mid-banner-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 35px;
    background-color: #ffffff;
    color: #000000;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border: none;
    border-radius: 0;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    vertical-align: middle;
}

.mid-banner-cta:hover {
    background-color: #f0f0f0;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .mid-section-banner {
        min-height: 500px;
        padding: 60px 5%;
        justify-content: center;
    }

    .mid-banner-content {
        text-align: center;
    }

    .mid-banner-title {
        font-size: 40px;
    }

    .mid-banner-subtitle {
        font-size: 18px;
    }
}

/* === SECOND MID-SECTION BANNER SECTION === */
.second-mid-banner {
    position: relative;
    min-height: 750px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
        url('https://smashersports.co.uk/wp-content/uploads/2023/03/MG_9253-copy-1.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* Right side alignment */
    padding: 80px 10%;
    overflow: hidden;
}

.second-mid-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
    pointer-events: none;
}

.second-banner-content {
    text-align: right;
    max-width: 600px;
    margin-left: auto;
    position: relative;
    z-index: 2;
}

.second-banner-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(20px, 4vw, 32px);
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 10px 0;
    line-height: 1.1;
}

.second-banner-title {
    font-family: var(--font-heading);
    font-size: clamp(40px, 10vw, 86px);
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 30px 0;
    line-height: 0.95;
    overflow-wrap: break-word;
}

.second-banner-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 35px;
    background-color: #ffffff;
    color: #000000;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border: none;
    border-radius: 0;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    vertical-align: middle;
}

.second-banner-cta:hover {
    background-color: #f0f0f0;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .second-mid-banner {
        min-height: 500px;
        padding: 60px 5%;
        justify-content: center;
    }

    .second-banner-content {
        text-align: center;
    }

    .second-banner-title {
        font-size: 40px;
    }

    .second-banner-subtitle {
        font-size: 18px;
    }
}

/* Mobile Banner Edge-to-Edge Expansion */
@media (max-width: 768px) {
    .grid-banner {
        grid-column: 1 / -1;
        width: calc(100vw - 20px);
        margin-left: calc(50% - 50vw + 10px);
        margin-right: calc(50% - 50vw + 10px);
        min-height: 350px;
    }

    .product-image-container {
        padding: 5px;
    }

    .product-image {
        width: 92%;
        height: 92%;
    }
}

/* ==========================================================================
   PRODUCT DETAIL PAGE (PDP) - PRODUCTION READY
   ========================================================================== */

.pdp-main {
    padding-top: 40px;
    padding-bottom: var(--space-xl);
}

.breadcrumbs {
    display: flex;
    gap: var(--space-xs);
    font-size: var(--font-size-sm);
    color: var(--text-grey);
    margin-bottom: var(--space-md);
}

.breadcrumbs a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-base);
}

.breadcrumbs a:hover {
    color: var(--primary-red);
}

.breadcrumbs .separator {
    color: #ccc;
}

/* Product Hero Grid */
.pdp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: start;
}

@media (max-width: 991px) {
    .pdp-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}

/* Gallery Styles */
.pdp-media {
    position: sticky;
    top: calc(var(--header-height) + 20px);
}

.main-image-wrapper {
    background: var(--color-bg-light);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-sm);
}

.main-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.zoom-container:hover .main-img {
    transform: scale(1.1);
}

.thumbnail-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-sm);
}

/* --- PDP Grid Layout --- */
.pdp-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 1024px) {
    .pdp-grid {
        display: flex;
        /* Using flex for easier order control */
        gap: 60px;
        align-items: flex-start;
    }

    .pdp-info {
        flex: 1;
        order: 1;
        /* Place Info on the LEFT (first in flow) */
    }

    .pdp-media {
        flex: 1.2;
        order: 2;
        /* Place Media on the RIGHT (second in flow) */
    }
}

/* --- Breadcrumbs --- */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 25px;
    color: #666;
}

.breadcrumbs a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumbs a:hover {
    color: #000;
}

.breadcrumb-separator {
    color: #999;
    /* Neutral bullet */
    font-size: 18px;
    line-height: 1;
}

.breadcrumbs .current {
    color: #333;
    font-weight: 500;
}

/* --- Info Styles --- */
.pdp-info {
    font-family: Arial, sans-serif;
}

.pdp-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #000;
}

.pdp-price-shipping-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.price-shipping-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.current-price {
    font-size: 26px;
    font-weight: 700;
    color: #006b4d;
    /* Dark Green from image */
}

.shipping-info-tag {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.shipping-info-tag i {
    font-size: 14px;
    color: #666;
    margin-left: 2px;
}

.pdp-wishlist-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #000;
    transition: transform 0.2s;
}

.pdp-wishlist-btn:hover {
    transform: scale(1.1);
}

.pdp-short-desc {
    font-size: 15px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 25px;
}

/* --- Bat Size Selector --- */
.pdp-size-selector {
    margin-bottom: 25px;
}

.size-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.size-header span {
    font-weight: 600;
    color: #333;
}

.size-guide-link {
    font-size: 14px;
    color: #333;
    text-decoration: underline;
}

.size-chip {
    padding: 12px 30px;
    border: 1px solid #000080;
    /* Brand Navy */
    background: #f0f0ff;
    color: #000080;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
}

/* --- Concierge Box --- */
.pdp-concierge-box {
    background: #f2f2f2;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 25px;
}

.concierge-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.custom-checkbox {
    width: 25px;
    height: 25px;
    cursor: pointer;
}

.concierge-header label {
    font-weight: 500;
    color: #333;
    cursor: pointer;
}

.concierge-desc {
    font-size: 14px;
    color: #444;
    line-height: 1.4;
    margin-left: 35px;
}

/* --- Shipping Countdown --- */
.shipping-countdown-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #333;
    margin-bottom: 25px;
}

.shipping-countdown-row i {
    font-size: 20px;
}

/* --- Actions Row --- */
.pdp-actions-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.qty-btn {
    width: 45px;
    height: 45px;
    border: 1px solid #999;
    background: #fff;
    cursor: pointer;
    font-size: 18px;
}

.qty-input {
    width: 60px;
    height: 45px;
    border: 1px solid #999;
    border-left: none;
    border-right: none;
    text-align: center;
    font-weight: 600;
}

.btn-add-bag {
    flex: 1;
    background: #000080;
    /* Brand Navy */
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn-add-bag:hover {
    opacity: 0.9;
}

/* --- Klarna row --- */
.klarna-info-row {
    font-size: 17px;
    font-weight: 600;
    color: #000;
    line-height: 1.4;
}

.klarna-badge {
    background: #ffb3c7;
    padding: 2px 6px;
    border-radius: 2px;
    font-size: 14px;
    margin: 0 4px;
}

.learn-more-link {
    display: block;
    margin-top: 8px;
    color: #000;
    font-weight: 700;
    text-decoration: underline;
}

/* --- Media Section Overrides --- */
.pdp-media {
    position: sticky;
    top: 150px;
    display: flex;
    flex-direction: column-reverse;
    /* Thumbnails below on mobile */
    gap: 15px;
}

@media (min-width: 1024px) {
    .pdp-media {
        flex-direction: row;
        /* Thumbnails on left on desktop */
        gap: 20px;
        align-items: flex-start;
    }

    .thumbnail-list {
        display: flex !important;
        flex-direction: column;
        width: 100px;
        gap: 15px;
        flex-shrink: 0;
    }

    .main-image-wrapper {
        flex: 1;
        margin-bottom: 0;
    }
}

.main-image-wrapper {
    background: #fff;
    border: 1px solid #eee;
    position: relative;
    /* For absolute buttons */
    overflow: hidden;
    margin-bottom: 15px;
}

.pdp-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    opacity: 0;
    /* Hidden by default */
}

.pdp-nav-btn.prev {
    left: -10px;
    /* Animate from left */
}

.pdp-nav-btn.next {
    right: -10px;
    /* Animate from right */
}

.pdp-media:hover .pdp-nav-btn {
    opacity: 1;
}

.pdp-media:hover .pdp-nav-btn.prev {
    left: 20px;
}

.pdp-media:hover .pdp-nav-btn.next {
    right: 20px;
}

.pdp-nav-btn:hover {
    background: #000080;
    color: #fff;
    border-color: #000080;
}

@media (max-width: 1023px) {
    .pdp-nav-btn {
        display: none;
        /* Hide on mobile as per standard best practices since we have thumbnails */
    }
}

.thumbnail-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.thumb-btn {
    border: 1px solid #eee;
    background: #fff;
    padding: 2px;
    cursor: pointer;
    transition: border-color 0.2s;
}

.thumb-btn img {
    width: 100%;
    height: auto;
    display: block;
}

.thumb-btn.active {
    border-color: #000080;
    /* Brand Navy */
    border-width: 1px;
}

/* ---- Mobile/Tablet PDP Gallery (<1024px) ---- */
@media (max-width: 1023px) {

    /* Hide breadcrumbs on mobile/tablet */
    .breadcrumbs {
        display: none;
    }

    .pdp-media {
        position: static;
        flex-direction: column;
        /* stack: main image → dots */
        gap: 0;
    }

    /* Hide vertical thumbnails on mobile — use dots instead */
    .pdp-media .thumbnail-list {
        display: none !important;
    }

    /* Make main image full width, no bottom border gap */
    .main-image-wrapper {
        width: 100%;
        margin-bottom: 0;
        border: none;
        background: #f5f5f5;
    }

    .main-image-wrapper .zoom-container {
        width: 100%;
        aspect-ratio: 1 / 1;
    }

    .main-image-wrapper .zoom-container img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    /* Show dot nav on mobile */
    .pdp-dot-nav {
        display: flex !important;
    }

    /* Info stacks below media */
    .pdp-actions-row {
        flex-direction: column;
    }

    .quantity-selector {
        width: 100%;
        justify-content: center;
    }

    .btn-add-bag {
        padding: 15px;
    }
}

/* Dot navigation — hidden on desktop, shown on mobile */
.pdp-dot-nav {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 16px 0 10px;
}

.pdp-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1.5px solid #bbb;
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, border-color 0.2s;
}

.pdp-dot.active {
    background: #e51e25;
    border-color: #e51e25;
}


@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: grid;
    }

    .pdp-main {
        padding-bottom: 40px;
    }
}

/* --- PDP Accordions --- */
.pdp-accordions {
    margin-top: 30px;
    border-top: 1px solid #eee;
}

.pdp-accordion-item {
    border-bottom: 1px solid #eee;
}

.pdp-accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    transition: color 0.2s;
}

.pdp-accordion-header span {
    pointer-events: none;
}

.pdp-accordion-header i {
    font-size: 14px;
    color: #999;
    transition: transform 0.3s ease;
    pointer-events: none;
}

.pdp-accordion-item.active .pdp-accordion-header i {
    transform: rotate(45deg);
    color: #000;
}

.pdp-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    padding: 0;
}

.pdp-accordion-item.active .pdp-accordion-content {
    max-height: 1000px;
    padding-bottom: 25px;
}

.pdp-accordion-content p {
    margin-bottom: 15px;
}

.pdp-accordion-content ul {
    padding-left: 18px;
}

.pdp-accordion-content li {
    margin-bottom: 8px;
    list-style: disc;
}

/* ===========================
   TRENDING PRODUCTS SECTION
   =========================== */

.trending-products-section {
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
}

.trending-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.trending-title {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #111;
    text-transform: uppercase;
}

.trending-nav {
    display: flex;
    gap: 8px;
}

.trending-nav-btn {
    width: 38px;
    height: 38px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 13px;
    color: #333;
    transition: all 0.2s ease;
}

.trending-nav-btn:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* Slider */
.trending-slider-wrapper {
    overflow: hidden;
}

.trending-slider {
    display: flex;
    gap: 20px;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Cards */
.trending-card {
    flex: 0 0 calc(25% - 15px);
    /* 4 visible on desktop */
    min-width: 0;
}

.trending-card-img {
    position: relative;
    background: #f4f4f4;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    margin-bottom: 14px;
}

.trending-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.4s ease;
}

.trending-card:hover .trending-card-img img {
    transform: scale(1.04);
}

.trending-wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.85);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    z-index: 2;
    transition: all 0.2s ease;
}

.trending-wishlist:hover {
    background: #fff;
    color: #e51e25;
}

/* Card text */
.trending-card-info {
    padding: 0 2px;
}

.trending-color-dots {
    display: flex;
    gap: 5px;
    margin-bottom: 8px;
}

.color-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-block;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.trending-card-title {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    line-height: 1.4;
    margin-bottom: 6px;
}

.trending-card-price {
    font-size: 15px;
    font-weight: 500;
    color: #111;
}

/* Price row with eye icon */
.trending-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 6px;
}

.trending-quick-view {
    background: none;
    border: none;
    font-size: 18px;
    color: #555;
    cursor: pointer;
    padding: 2px 4px;
    transition: color 0.2s;
}

.trending-quick-view:hover {
    color: #000080;
}

/* ---- Responsive ---- */

/* Tablet: 768px - 1023px → 2 cards */
@media (max-width: 1023px) {
    .trending-card {
        flex: 0 0 calc(50% - 10px);
    }

    .trending-header {
        align-items: flex-start;
    }

    .trending-title {
        font-size: 20px;
        /* Allow title to wrap naturally on mobile */
        max-width: 55%;
    }

    .trending-products-section {
        padding: 50px 0;
    }
}

/* Mobile: below 480px → still 2 cards, but tighter */
@media (max-width: 480px) {
    .trending-card {
        flex: 0 0 calc(50% - 8px);
    }

    .trending-slider {
        gap: 12px;
    }

    .trending-title {
        font-size: 18px;
        max-width: 55%;
    }

    .trending-card-title {
        font-size: 13px;
    }

    .trending-card-price {
        font-size: 14px;
    }

    .trending-products-section {
        padding: 35px 0;
    }
}

/* === AJAX Live Search Dropdown === */
.search-box, .mobile-search-inner {
    position: relative; /* Ensure dropdown anchors to this */
}

.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: auto;
    width: 320px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 9999;
    margin-top: 5px;
    overflow: hidden;
    display: none;
    border: 1px solid #eee;
}

#mobile-search-results {
    width: 100%;
    margin-top: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.live-search-loading,
.live-search-error,
.live-search-no-results {
    padding: 20px;
    text-align: center;
    font-size: 14px;
    color: #666;
    background: #fff;
}

.live-search-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 380px;
    overflow-y: auto;
}

.live-search-item a {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid #f5f5f5;
    transition: background-color 0.2s;
    text-decoration: none;
}

.live-search-item:last-child a {
    border-bottom: none;
}

.live-search-item a:hover {
    background-color: #f9f9f9;
}

.ls-image {
    flex: 0 0 55px;
    width: 55px;
    height: 55px;
    margin-right: 15px;
    background: #fbfbfb;
    border-radius: 4px;
    overflow: hidden;
}

.ls-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ls-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ls-title {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
    line-height: 1.3;
}

.ls-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-accent, #cf3434);
}

.ls-price del {
    color: #999;
    font-size: 12px;
    margin-right: 4px;
    font-weight: 400;
}

.ls-price ins {
    text-decoration: none;
}

.ls-view-all {
    text-align: center;
    padding: 12px;
    background: #f7f7f7;
    border-top: 1px solid #eaeaea;
}

.ls-view-all a {
    font-size: 12px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    text-decoration: none;
    display: block;
    letter-spacing: 0.5px;
}

.ls-view-all a:hover {
    color: var(--color-accent, #cf3434);
}

.ls-section-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 15px 5px;
    color: #888;
    background: #fff;
}

.live-search-cat-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #eaeaea;
}

.live-search-cat-item a {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    transition: background-color 0.2s;
}

.live-search-cat-item a i {
    color: #aaa;
    margin-right: 10px;
    font-size: 14px;
}

.live-search-cat-item a:hover {
    background-color: #f9f9f9;
    color: var(--color-accent, #cf3434);
}
.live-search-cat-item a:hover i {
    color: var(--color-accent, #cf3434);
}