
        /* ==================== RESET & BASE ==================== */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: #f5f5f7;
            color: #111;
            line-height: 1.4;
            text-align: left;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
            background: none;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ==================== TOP HEADER ==================== */
        header {
            background-color: #0b0c10;
            color: #ffffff;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            z-index: 50;
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }

        .logo-ship-wrapper {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        /* Mobile Hamburger Menu Toggle Button */
        .mobile-menu-btn {
            display: none;
            /* Hidden on Desktop */
            color: #fff;
            font-size: 22px;
            padding: 4px;
            line-height: 1;
        }

        .logo {
            font-size: 24px;
            font-weight: 800;
            letter-spacing: 6px;
            color: #fff;
            text-transform: uppercase;
            text-align: left;
        }

        .ship-to {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 11px;
            color: #aaa;
            text-align: left;
        }

        .ship-to span {
            display: block;
            color: #fff;
            font-weight: 600;
        }

        .search-bar {
            flex: 1;
            max-width: 500px;
            position: relative;
        }

        .search-bar input {
            width: 100%;
            background: #1c1e24;
            border: 1px solid #2e323b;
            padding: 10px 16px;
            border-radius: 4px;
            color: #fff;
            font-size: 13px;
            text-align: left;
        }

        .search-bar input::placeholder {
            color: #888;
        }

        .search-bar button {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: #888;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 24px;
            font-size: 12px;
            font-weight: 600;
        }

        .header-action-item {
            display: flex;
            align-items: center;
            gap: 6px;
            color: #fff;
            transition: color 0.2s ease;
        }

        .header-action-item:hover {
            color: #D4AF37;
        }

        .badge-cart {
            position: relative;
        }

        .cart-count {
            position: absolute;
            top: -6px;
            right: -8px;
            background: #D4AF37;
            /* Royal Gold */
            color: #000;
            font-size: 9px;
            font-weight: 800;
            border-radius: 50%;
            width: 15px;
            height: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* ==================== DESKTOP NAVIGATION BAR ==================== */
        nav.desktop-nav {
            background-color: #0b0c10;
            position: relative;
            z-index: 40;
            margin-bottom: 0;
            border-bottom: none;
        }
        .hero-section {
            background-color: #0b0c10;
            margin-top: 0;
            padding-top: 0;
        }

        .nav-links {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 32px;
            font-size: 13.5px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin: 0;
            padding: 0;
        }

        .nav-links>li {
            list-style: none;
            position: relative;
            padding: 14px 0;
        }

        .nav-links>li>a {
            color: #ccc;
            transition: color 0.2s;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .nav-links>li>a:hover {
            color: #D4AF37;
        }

        .offers-link {
            color: #D4AF37 !important;
        }

        /* Desktop Dropdown Menu CSS */
        .desktop-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 200px;
            background-color: #14161d;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
            border-radius: 4px;
            padding: 8px 0;
            list-style: none;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 200;
        }

        .nav-links>li:hover .desktop-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .desktop-dropdown li a {
            display: block;
            padding: 10px 18px;
            color: #bbb;
            font-size: 12px;
            font-weight: 600;
            text-transform: none;
            letter-spacing: 0.5px;
            transition: background 0.2s, color 0.2s;
        }

        .desktop-dropdown li a:hover {
            background-color: #1c1e26;
            color: #D4AF37;
        }

        /* ==================== MOBILE SLIDE-IN OFF-CANVAS MENU ==================== */
        .mobile-nav-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(4px);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .mobile-nav-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-nav-drawer {
            position: fixed;
            top: 0;
            left: -320px;
            width: 290px;
            height: 100vh;
            background: #0d0f12;
            color: #fff;
            z-index: 999;
            box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5);
            transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            overflow-y: auto;
        }

        .mobile-nav-drawer.active {
            left: 0;
        }

        .drawer-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .drawer-header .logo {
            font-size: 20px;
        }

        .close-drawer-btn {
            color: #fff;
            font-size: 22px;
            padding: 4px;
        }

        .drawer-account-section {
            padding: 16px 20px;
            background: #14161d;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .account-drawer-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            font-weight: 700;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .account-drawer-btn svg {
            stroke: #D4AF37;
        }

        .drawer-menu {
            list-style: none;
            padding: 10px 0;
        }

        .drawer-item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }

        .drawer-link {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 20px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #ddd;
            transition: background 0.2s, color 0.2s;
        }

        .drawer-link:hover,
        .drawer-link.highlight {
            color: #D4AF37;
        }

        .dropdown-arrow {
            font-size: 10px;
            transition: transform 0.3s ease;
        }

        .drawer-submenu {
            list-style: none;
            background: #14161c;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease;
        }

        .drawer-submenu li a {
            display: block;
            padding: 10px 20px 10px 36px;
            font-size: 12px;
            color: #aaa;
            font-weight: 500;
        }

        .drawer-submenu li a:hover {
            color: #fff;
        }

        .drawer-item.open .dropdown-arrow {
            transform: rotate(180deg);
            color: #D4AF37;
        }

        .drawer-item.open .drawer-submenu {
            max-height: 250px;
        }

        /* ==================== HERO SECTION ==================== */
        .hero {
            position: relative;
            min-height: 680px;
            background: linear-gradient(90deg, rgba(15, 15, 18, 0.92) 0%, rgba(15, 15, 18, 0.55) 45%, rgba(15, 15, 18, 0.1) 100%),
                url('https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
            color: #fff;
            padding: 80px 0 40px 0;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .hero-container {
            position: relative;
            width: 100%;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: flex-start;
            padding-left: 5% !important;
        }

        .hero-content {
            max-width: 520px;
            z-index: 2;
            margin-top: 10px;
            text-align: left;
        }

        .hero-tag {
            display: inline-block;
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(212, 175, 55, 0.3);
            backdrop-filter: blur(8px);
            padding: 6px 14px;
            font-size: 10px;
            letter-spacing: 1.5px;
            font-weight: 600;
            text-transform: uppercase;
            border-radius: 4px;
            margin-bottom: 20px;
            color: #eee;
        }

        .hero-title {
            font-size: 56px;
            font-weight: 900;
            line-height: 1.05;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 20px;
            color: #ffffff;
            text-align: left;
        }

        .hero-title span {
            color: #D4AF37;
            display: block;
        }

        .hero-description {
            font-size: 13px;
            color: #ddd;
            margin-bottom: 28px;
            line-height: 1.6;
            font-weight: 500;
            text-align: left;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #ffffff;
            color: #111;
            padding: 12px 28px;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background: #D4AF37;
            color: #000;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
        }

        .hero-pagination {
            position: absolute;
            right: 30px;
            top: 35%;
            display: flex;
            flex-direction: column;
            gap: 16px;
            font-size: 12px;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.4);
            z-index: 2;
        }

        .hero-pagination span.active {
            color: #D4AF37;
            font-size: 15px;
            font-weight: 800;
        }

        .trust-badges-overlay {
            background: transparent;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
            border: none;
            padding: 10px 0;
            margin-top: 40px;
            max-width: 820px;
            width: calc(100% - 80px);
            z-index: 2;
            box-shadow: none;
        }

        .badges-grid {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }

        .badge-item {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #fff;
            text-align: left;
        }

        .badge-item svg {
            width: 22px;
            height: 22px;
            stroke: #D4AF37;
            flex-shrink: 0;
        }

        .badge-text h4 {
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-align: left;
            color: #D4AF37;
        }

        .badge-text p {
            font-size: 10px;
            color: #D4AF37;
            text-align: left;
        }

        /* ==================== CATEGORIES SECTION ==================== */
        .categories-section {
            padding: 50px 0;
        }

        .category-container {
            display: flex;
            gap: 30px;
        }

        .category-header {
            width: 200px;
            flex-shrink: 0;
            text-align: left;
        }

        .category-header h2 {
            font-size: 18px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 8px;
            text-align: left;
        }

        .category-header p {
            font-size: 11px;
            color: #666;
            line-height: 1.5;
            text-align: left;
        }

        .category-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 16px;
            flex-grow: 1;
        }

        .category-card {
            text-align: left;
            transition: all 0.3s ease;
            user-select: none;
            -webkit-user-drag: none;
            position: relative;
            z-index: 20;
            display: block;
        }

        .category-card:hover {
            color: #D4AF37;
        }

        .category-img-box {
            background: #e5e5e7;
            border-radius: 12px;
            aspect-ratio: 1;
            overflow: hidden;
            margin-bottom: 10px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            pointer-events: none;
        }

        .category-card:hover .category-img-box {
            transform: translateY(-4px);
            border-color: #D4AF37;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .category-img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
            -webkit-user-drag: none;
        }

        .category-card:hover .category-img-box img {
            transform: scale(1.05);
        }

        .category-card span {
            font-size: 10px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: block;
            text-align: left;
            pointer-events: none;
        }

        /* ==================== PROMO BANNERS ==================== */
        .promos-section {
            padding-bottom: 50px;
        }

        .promos-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .promo-card {
            border-radius: 8px;
            height: 240px;
            position: relative;
            overflow: hidden;
            text-align: left;
        }

        .promo-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 1;
        }

        .promo-content {
            position: relative;
            z-index: 2;
            padding: 30px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .promo-card.dark .promo-content {
            color: #fff;
        }

        .promo-card.light .promo-content {
            color: #111;
        }

        .promo-card h3 {
            font-size: 20px;
            font-weight: 800;
            text-transform: uppercase;
            line-height: 1.2;
            max-width: 160px;
            text-align: left;
        }

        .promo-card p {
            font-size: 11px;
            margin-top: 10px;
            opacity: 0.8;
            text-align: left;
        }

        .btn-promo {
            align-self: flex-start;
            border: 1px solid currentColor;
            padding: 8px 18px;
            font-size: 9px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 3px;
            transition: all 0.3s ease;
            background: transparent;
        }

        .btn-promo:hover {
            background: #D4AF37 !important;
            border-color: #D4AF37 !important;
            color: #000 !important;
            box-shadow: 0 4px 12px rgba(212, 175, 55, 0.35);
            transform: translateY(-2px);
        }

        /* ==================== PRODUCT CAROUSEL ==================== */
        .products-section {
            padding-bottom: 60px;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .section-header h2 {
            font-size: 16px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-align: left;
        }

        .carousel-controls {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .view-all {
            font-size: 10px;
            font-weight: 700;
            color: #666;
            text-transform: uppercase;
            transition: color 0.2s;
        }

        .view-all:hover {
            color: #D4AF37;
        }

        .nav-arrow {
            width: 26px;
            height: 26px;
            border: 1px solid #ccc;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            background: #fff;
            transition: all 0.2s;
        }

        .nav-arrow:hover {
            background: #D4AF37;
            border-color: #D4AF37;
            color: #000;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 16px;
        }

        .product-card {
            background: #fff;
            border-radius: 6px;
            padding: 16px;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            border: 1px solid #eaeaea;
            text-align: left;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .product-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
        }

        /* UPDATED: Scope Wishlist icon position to product-card only */
        .product-card .wishlist-btn {
            position: absolute;
            top: 12px;
            right: 12px;
            color: #999;
            font-size: 20px;
            transition: color 0.2s;
            z-index: 5;
            background: transparent;
            border: none;
            cursor: pointer;
        }

        .product-card .wishlist-btn:hover {
            color: #D4AF37;
        }

        .product-img {
            width: 100%;
            height: 140px;
            object-fit: contain;
            margin-bottom: 12px;
        }

        .product-title {
            font-size: 15px;
            font-weight: 300;
            margin-bottom: 4px;
            text-align: left;
            line-height: 1.3;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .product-desc {
            font-size: 13px;
            color: #666;
            margin-bottom: 8px;
            text-align: left;
        }

        .rating {
            display: flex;
            align-items: center;
            gap: 2px;
            color: #D4AF37;
            font-size: 14px;
            margin-bottom: 12px;
        }

        .rating-count {
            color: #888;
            font-size: 12px;
            margin-left: 4px;
        }

        .product-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
        }

        .price {
            font-size: 18px;
            font-weight: 800;
        }

        .add-cart-btn {
            background: #090a0c;
            color: #fff;
            width: 34px;
            height: 34px;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }

        .add-cart-btn:hover {
            background: #D4AF37;
            color: #000;
        }

        /* ==================== NEWSLETTER SECTION ==================== */
        .newsletter-section {
            background: #101215;
            padding: 56px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            color: #fff;
        }

        .newsletter-box {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }

        .newsletter-text {
            max-width: 380px;
        }

        .newsletter-text h2 {
            font-size: 26px;
            font-weight: 900;
            text-transform: uppercase;
            line-height: 1.15;
            letter-spacing: 0.5px;
            margin-bottom: 10px;
        }

        .newsletter-text p {
            font-size: 13px;
            color: #aaa;
            line-height: 1.5;
        }

        .newsletter-form-container {
            flex: 1;
            max-width: 580px;
        }

        .newsletter-form {
            display: flex;
            gap: 0;
            margin-bottom: 10px;
        }

        .newsletter-form input {
            flex: 1;
            background: #1c1e24;
            border: 1px solid #2e323b;
            padding: 14px 18px;
            border-radius: 4px 0 0 4px;
            color: #fff;
            font-size: 13px;
            outline: none;
        }

        .newsletter-form input::placeholder {
            color: #777;
        }

        .newsletter-form button {
            background: #D4AF37;
            color: #000;
            font-size: 12px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 14px 28px;
            border-radius: 0 4px 4px 0;
            transition: background 0.2s;
        }

        .newsletter-form button:hover {
            background: #C5A059;
        }

        .newsletter-note {
            font-size: 11px;
            color: #777;
        }

        .newsletter-icon-graphic svg {
            width: 80px;
            height: 80px;
            stroke: #333d4d;
        }

        /* ==================== MAIN FOOTER ==================== */
        footer {
            background: #0b0c10;
            color: #aaa;
            padding: 60px 0 35px;
            display: block;
        }

        .footer-columns {
            display: grid;
            grid-template-columns: 2fr 1.2fr 1.2fr 1.5fr;
            gap: 48px;
            padding-bottom: 48px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .footer-col-brand .logo {
            margin-bottom: 16px;
            display: block;
        }

        .footer-col-brand p {
            font-size: 12px;
            line-height: 1.6;
            color: #999;
            margin-bottom: 24px;
        }

        .social-links {
            display: flex;
            gap: 12px;
        }

        .social-icon {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: #1c1e24;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ccc;
            transition: all 0.2s ease;
        }

        .social-icon svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        .social-icon:hover {
            background: #D4AF37;
            color: #000;
            transform: translateY(-2px);
        }

        .footer-col h3 {
            color: #fff;
            font-size: 13px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col ul li a {
            font-size: 12px;
            color: #999;
            transition: color 0.2s;
        }

        .footer-col ul li a:hover {
            color: #D4AF37;
        }

        .payment-badges {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
        }

        .payment-badge {
            background: #ffffff;
            border-radius: 4px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            font-weight: 900;
            color: #111;
            text-transform: uppercase;
            font-style: italic;
        }

        .footer-bottom {
            padding-top: 28px;
            text-align: center;
            font-size: 12px;
            color: #777;
        }

        /* ==========================================================================
       MEDIA QUERIES (MOBILE RESPONSIVE ADJUSTMENTS)
       ========================================================================== */

        /* Tablet Devices (max-width: 1024px) */
        @media (max-width: 1024px) {
            .products-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .category-grid {
                grid-template-columns: repeat(4, 1fr);
            }

            .footer-columns {
                grid-template-columns: 1fr 1fr;
            }

            .hero-title {
                font-size: 42px;
            }

            .trust-badges-overlay {
                width: calc(100% - 40px);
            }
        }

        /* Mobile Devices (max-width: 768px) */
        @media (max-width: 768px) {
            .container {
                padding: 0 16px;
            }

            /* Hide Desktop Sub-Navbar */
            nav.desktop-nav {
                display: none;
            }

            /* Show Top-Left Mobile Hamburger Button */
            .mobile-menu-btn {
                display: block;
            }

            /* Hide "Ship To" block on Mobile */
            .ship-to {
                display: none !important;
            }

            /* Hide Login/Sign Up and Wishlist from the top header bar on Mobile (Moved to Drawer) */
            .desktop-header-action {
                display: none !important;
            }

            /* Mobile Header Layout */
            .header-content {
                flex-direction: row;
                flex-wrap: wrap;
                align-items: center;
                justify-content: space-between;
                gap: 10px;
            }

            .logo-ship-wrapper {
                width: auto;
            }

            /* MOBILE ONLY: Shift MANERA logo right so it looks centered between hamburger & cart */
            .logo {
                margin-left: 55px;
                /* Centered alignment on mobile view */
                font-size: 20px;
                letter-spacing: 4px;
            }

            .header-actions {
                width: auto;
                gap: 12px;
            }

            .search-bar {
                width: 100%;
                flex: 0 0 100%;
                order: 3;
                margin-top: 4px;
            }

            /* HERO MOBILE: Image covers full width */
            .hero {
                min-height: auto;
                padding: 20px 0 16px 0;
                background: linear-gradient(180deg, rgba(15, 15, 18, 0.85) 0%, rgba(15, 15, 18, 0.4) 60%, rgba(15, 15, 18, 0.95) 100%),
                    url('https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat #0f0f12;
            }

            .hero-container {
                padding-left: 16px !important;
                padding-right: 16px !important;
                justify-content: flex-start;
            }

            .hero-tag {
                font-size: 8px;
                padding: 4px 8px;
                margin-bottom: 8px;
            }

            .hero-title {
                font-size: 20px;
                line-height: 1.1;
                margin-bottom: 8px;
            }

            .hero-description {
                font-size: 10px;
                margin-bottom: 14px;
                line-height: 1.3;
            }

            .btn-primary {
                padding: 6px 14px;
                font-size: 8px;
                letter-spacing: 1px;
            }

            .hero-pagination {
                display: none;
            }

            .trust-badges-overlay {
                width: 100%;
                padding: 0;
                margin-top: 20px;
                background: transparent;
                backdrop-filter: none;
                -webkit-backdrop-filter: none;
                border: none;
            }

            .badges-grid {
                display: flex;
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
                gap: 2px;
            }

            .badge-item {
                gap: 3px;
                flex-shrink: 0;
            }

            .badge-item svg {
                width: 12px;
                height: 12px;
                stroke: #D4AF37;
                /* Royal Golden Icons */
            }

            .badge-text h4 {
                font-size: 7.5px;
                letter-spacing: -0.2px;
                color: #D4AF37;
                /* Royal Golden Headings */
            }

            .badge-text p {
                display: none;
                /* Hidden on Mobile */
            }

            .category-container {
                flex-direction: column;
                gap: 16px;
            }

            .category-header {
                width: 100%;
            }

            .category-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 10px;
            }

            .promos-grid {
                grid-template-columns: 1fr;
            }

            .promo-card {
                height: 180px;
            }

            .products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }

            .newsletter-box {
                flex-direction: column;
                align-items: stretch;
                gap: 16px;
            }

            .newsletter-text h2 {
                font-size: 20px;
            }

            .newsletter-form {
                flex-direction: column;
                gap: 8px;
            }

            .newsletter-form input {
                border-radius: 4px;
                padding: 10px 14px;
            }

            .newsletter-form button {
                border-radius: 4px;
                width: 100%;
                padding: 10px 16px;
            }

            .newsletter-icon-graphic {
                display: none;
            }

            .footer-columns {
                grid-template-columns: 1fr;
                gap: 28px;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 18px;
            }

            .category-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
    