
    :root {
      /* --- Core Gold Palette --- */
      --primary-gold: #d4af37;
      --secondary-gold: #ffd700;
      --deep-gold: #b8941f;
      --light-gold: #f0d97e;
       --medium-bg: #2a2a2a;
       --light-text: #f5f5f5;
            --medium-text: #cccccc;
            --dark-text: #888888;

      /* --- Browns & Neutrals --- */
      --dark-brown: #3d2b1f;
      --medium-brown: #6c4c23;
        --dark-bg: #1a1a1a;
      --text-brown: #574924;
      --light-cream: #f8f4ee;
      --card-bg: #ffffff;
      --light-bg: #f8f5f1;

      /* --- Shadows --- */
      --shadow-light: rgba(79, 8, 95, 0.837);
      --shadow-medium: rgba(90, 67, 21, 0.12);
      --shadow-heavy: rgba(90, 67, 21, 0.18);

      /* --- Backgrounds --- */
      --dark-bg: #0d0f14;
      --darker-bg: #0a0b0f;
      --medium-bg: #15161c;

      /* --- Miscellaneous --- */
      --white: #ffffff;
      --shadow: rgba(0, 0, 0, 0.1);
      --text-gold: #a47e43;

        --tq-primary-color: #1a1a1a;
            --tq-accent-color: #d4af37;
            --tq-accent-light: #f4e4a4;
            --tq-text-dark: #2d2d2d;
            --tq-text-light: #f8f9fa;
            --tq-bg-white: #ffffff;
            --tq-bg-light: #f8f9fa;
            --tq-bg-dark: #1a1a1a;
            --tq-border-light: #e9ecef;
            --tq-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
            --tq-shadow-md: 0 5px 15px rgba(0, 0, 0, 0.08);
            --tq-shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
            --tq-transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: var(--light-cream);
      color: var(--medium-brown);
      overflow-x: hidden;
      scroll-behavior: smooth;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Cinzel', serif;
      font-weight: 600;
    }

    
        .container {
            width: 90%;
            max-width: 1300px;
            font-family: 'Cinzel', serif;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* --- 2. Site Header (Fixed) --- */
        .site-header {
            width: 100%;
            background-color:var(--shadow-light);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
        }

        .header-main {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 0;
            height: 90px; /* Defined height for calculation */
        }

        .header-logo {
            display: block;
            text-decoration: none;
            flex-shrink: 0;
        }

        /* Logo Image Sizing */
        .header-logo img {
            height: 100px; /* Adjust based on your actual logo file */
            width: auto;
            object-fit: contain;
        }

        .mobile-nav-toggle {
            display: none;
            font-size: 24px;
            background: none;
            border: none;
            color: #333;
            cursor: pointer;
        }

        .header-search {
            flex-grow: 1;
            margin: 0 30px;
            position: relative;
        }

        .header-search input {
            width: 100%;
            padding: 12px 20px 12px 45px;
            font-size: 14px;
            border: 1px solid #ddd;
            border-radius: 8px;
            background-color: #f9f9f9;
            outline: none;
        }

        .header-search .search-icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #d4af37;
        }

        .header-actions {
            display: flex;
            align-items: center;
            flex-shrink: 0;
            font-size:700 ;
        }

        .header-actions a {
            margin-left: 20px;
            font-size: 17px;
            color: #d4af37;
            text-decoration: none;
            display: flex;
            align-items: center;
            font-weight: 700;
        }

        .header-actions a i {
            margin-right: 5px;
            font-size: 18px;
            color: #d4af37;
        }

        /* --- 3. Main Navigation Bar --- */
        .main-nav {
            width: 100%;
            background-color:var(--shadow-light);
            border-top: 1px solid #eee;
            position: relative; 
            height: 52px; /* Defined height for calculation */
            display: flex;
            align-items: center;
        }

        .nav-list {
            display: flex;
            justify-content: center;
            list-style: none;
            width: 100%;
            color: var(--deep-gold);
            font-weight: 700;
            font-size: 17px;
        }

        .nav-item {
            position: static; 
        }

        .nav-item > a {
            display: block;
            padding: 10px 12px;
            text-decoration: none;
            color:var(--primary-gold);
            font-weight:700;
            font-size: 17px;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: color 0.3s;
        }

        .nav-item:hover > a {
            color:var(--primary-gold);
            box-shadow: inset 0 -2px 0 #832729;
        }

        /* --- 4. Mega Menu General Structure --- */
        .mega-menu-container {
            display: none; 
            position: absolute;
            left: 0;
            width: 100%; 
            background-color: #ffffff;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            border-top: 1px solid #eee;
            z-index: 999;
             /* NEW: Add max-height and overflow for scrolling */
            max-height: 70vh;
            overflow-y: auto;
            /* Smooth scrolling for better UX */
            scroll-behavior: smooth;
        }

        /* Show on Hover (Desktop) */
        @media (min-width: 1025px) {
            .nav-item:hover > .mega-menu-container {
                display: block;
            }
        }

        .mega-menu-wrapper {
            display: flex;
            padding: 30px 0;
            gap: 30px;
            min-height: 400px;
        }  .mega-menu-container::-webkit-scrollbar {
            width: 8px;
        }

        .mega-menu-container::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        .mega-menu-container::-webkit-scrollbar-thumb {
            background: #c1c1c1;
            border-radius: 4px;
        }

        .mega-menu-container::-webkit-scrollbar-thumb:hover {
            background: #a8a8a8;
        }

        /* TYPE A: Sidebar + Content */
        .sidebar-layout-container {
            display: flex;
            width: 100%;
            gap: 20px;
        }

        .mm-sidebar {
            width: 200px;
            flex-shrink: 0;
            border-right: 1px solid #eee;
            padding-right: 20px;
        }

        .mm-sidebar ul {
            list-style: none;
        }

        .mm-sidebar a {
            display: block;
            padding: 10px 15px;
            text-decoration: none;
            color: #555;
            font-weight: 500;
            border-radius: 5px;
            margin-bottom: 5px;
            transition: 0.2s;
        }

        .mm-sidebar a:hover, .mm-sidebar a.active {
            background-color: #fef7f0;
            color: #832729;
        }

        .mm-content {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .tab-content {
            display: none;
            animation: fadeIn 0.3s;
        }
        .tab-content.active {
            display: block;
        }
        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

        /* TYPE B: Direct Grid */
        .direct-grid-layout {
            display: flex;
            width: 100%;
            gap: 30px;
        }

        .grid-area {
            flex-grow: 1;
        }
        
        .promo-area {
            width: 300px;
            flex-shrink: 0;
        }

        /* --- 6. Grids & Items --- */
        .grid-container {
            display: grid;
            gap: 20px;
        }

        .cols-6 { grid-template-columns: repeat(6, 1fr); }
        .cols-5 { grid-template-columns: repeat(5, 1fr); }
        .cols-4 { grid-template-columns: repeat(4, 1fr); }
        .cols-3 { grid-template-columns: repeat(3, 1fr); }

        .menu-item {
            text-decoration: none;
            color: #333;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: transform 0.2s;
        }
        
        .menu-item:hover {
            transform: translateY(-3px);
            color: #832729;
        }

        .img-wrap {
            background: #f5f5f5;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .img-wrap.circle {
            border-radius: 50%;
            width: 80px;
            height: 80px;
        }
        
        .img-wrap.square {
            width: 100%;
            aspect-ratio: 1/1;
        }

        .img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .menu-item span {
            font-size: 13px;
            font-weight: 500;
            line-height: 1.4;
        }

        /* --- 7. Banners & Promos --- */
        .bottom-banner {
            margin-top: auto; 
            background: #fffbf5;
            border: 1px solid #f2e6d8;
            padding: 15px 20px;
            border-radius: 8px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 20px;
        }

        .bottom-banner h4 { font-size: 16px; color: #832729; }
        .bottom-banner p { font-size: 12px; color: #666; }
        .btn-view-all {
            background: #832729;
            color: white;
            padding: 8px 15px;
            text-decoration: none;
            border-radius: 4px;
            font-size: 12px;
        }

        .promo-card {
            width: 100%;
            height: 100%;
            position: relative;
            border-radius: 8px;
            overflow: hidden;
        }
        .promo-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* --- 8. Responsive Styling --- */

        @media (max-width: 1024px) {
            /* Tablet adjustments */
            .container { width: 95%; }
            .header-search { display: none; }
            .cols-6, .cols-5, .cols-4 { grid-template-columns: repeat(3, 1fr); }
            .promo-area { display: none; }
            .mm-sidebar { width: 160px; }
        }

        @media (max-width: 768px) {
            /* Mobile Body Padding Adjustment (Header is smaller on mobile) */
            body {
                padding-top: 70px;
            }

            .header-main {
                height: 70px; /* Smaller header height for mobile */
                padding: 10px 0;
            }

            .header-logo img {
                height: 50px; /* Smaller logo */
            }

            /* --- Mobile Navigation --- */
            .mobile-nav-toggle { display: block; color: #d4af37; }
            .header-actions span { display: none; } 
            
            .main-nav {
                display: none; 
                position: fixed; /* Fixed for full screen scroll */
                top: 70px; /* Starts directly below header-main */
                left: 0;
                width: 100%;
                /* Calculate height: 100vh minus the header height */
                height: calc(100vh - 70px); 
                overflow-y: auto;
                background: white;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
                border-top: none;
                align-items: flex-start; /* Align items to top */
            }

            .main-nav.is-open { display: block; }

            .nav-list { flex-direction: column; align-items: flex-start; }
            .nav-item { width: 100%; border-bottom: 1px solid #eee; }
            .nav-item > a { justify-content: space-between; font-size: 16px; padding: 15px; }

            /* Mobile Mega Menu logic */
            .mega-menu-container {
                position: static;
                box-shadow: none;
                border: none;
                display: none; 
                background: #f9f9f9;
            }

            .nav-item.menu-open > .mega-menu-container { display: block; }
            .nav-item.menu-open > a { background: #f0f0f0; color: #832729; }

            .mega-menu-wrapper {
                flex-direction: column;
                padding: 10px;
                min-height: auto;
            }

            /* Sidebar to Top Tabs on Mobile */
            .sidebar-layout-container { flex-direction: column; }
            .mm-sidebar {
                width: 100%;
                border-right: none;
                border-bottom: 1px solid #ddd;
                margin-bottom: 15px;
                overflow-x: auto;
            }
            .mm-sidebar ul {
                display: flex;
                padding-bottom: 10px;
            }
            .mm-sidebar a { white-space: nowrap; margin-right: 10px; }

            .direct-grid-layout { flex-direction: column; }

            /* Grid Columns Mobile */
            .cols-6, .cols-5, .cols-4, .cols-3 { grid-template-columns: repeat(2, 1fr); gap: 15px; }
            
            .img-wrap.circle { width: 60px; height: 60px; }
        }

    /* Hero Section */
    .hero-section {
      background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1599643478518-a784e5dc4c8f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
      background-size: cover;
      background-position: center;
      color: white;
      padding: 100px 0;
      text-align: center;
      margin-bottom: 50px;
    }

    .hero-section h1 {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .hero-section p {
      font-size: 1.2rem;
      max-width: 600px;
      margin: 0 auto 30px;
    }

    .btn-hero {
      background-color: var(--primary-gold);
      color: var(--dark-brown);
      padding: 12px 30px;
      font-weight: 600;
      border-radius: 30px;
      transition: all 0.3s ease;
      border: none;
    }

    .btn-hero:hover {
      background-color: var(--deep-gold);
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    /* Carousel Styles */
    .carousel-container {
      position: relative;
      overflow: hidden;
      height: 100vh;
      width: 100%;
    }

    .carousel-slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 1s ease-in-out;
      z-index: 0;
    }

    .carousel-slide.active {
      opacity: 1;
      z-index: 1;
    }

    .slide-image {
      position: absolute;
      top: 0;
      left: 0;
      width:100%;
      height:100%;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      transform: scale(1);
      transition: transform 8s ease-in-out;
    }

    .carousel-slide.active .slide-image {
      transform: scale(1.1);
    }

    .slide-content {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 6rem;
      background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .slide-title, .slide-desc, .slide-btn {
      color: #fff;
      transform: translateY(50px);
      opacity: 0;
      transition: transform 1s ease-out, opacity 1s ease-out;
    }

    .slide-title {
      font-size: 3rem;
      font-weight: 600;
      margin-bottom: 1rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      transition-delay: 0.3s;
    }

    .slide-desc {
      font-size: 1.25rem;
      font-weight: 300;
      margin-bottom: 2rem;
      max-width: 600px;
      transition-delay: 0.6s;
    }

    .slide-btn {
      padding: 0.75rem 2rem;
      background-color:var(--shadow-light);
      color:var(--primary-gold);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      text-decoration: none;
      transition: transform 1s ease-out, opacity 1s ease-out, background-color 0.3s;
      transition-delay: 0.9s;
    font-family: 'Cinzel', serif;
      font-weight: 600;
    }
    .slide-btn:hover { background-color:#2E0F3A; }

    .carousel-slide.active .slide-title,
    .carousel-slide.active .slide-desc,
    .carousel-slide.active .slide-btn {
      transform: translateY(0);
      opacity: 1;
    }

    .carousel-dots {
      position: absolute;
      bottom: 2rem;
      right: 6rem;
      display: flex;
      gap: 1rem;
      z-index: 10;
    }
    .dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background-color: rgba(255,255,255,0.5);
      cursor: pointer;
      transition: background-color 0.3s, transform 0.3s;
    }
    .dot.active {
      background-color: #fff;
      transform: scale(1.2);
    }

    .carousel-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background-color: rgba(255,255,255,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 10;
      transition: background-color 0.3s;
    }
    .carousel-arrow:hover { background-color: rgba(255,255,255,0.4); }
    .prev { left: 2rem; }
    .next { right: 2rem; }

    /* Offer Ticker Styles */
    .offer-ticker {
      width: 100%;
      background: #fffbe7;
      border-bottom: 1px solid #f3e7c3;
      overflow: hidden;
      position: relative;
      z-index: 10;
    }

    .ticker-wrapper {
      width: 100%;
      overflow: hidden;
      position: relative;
      height: 48px;
      display: flex;
      align-items: center;
    }

    .ticker-content {
      display: flex;
      align-items: center;
      white-space: nowrap;
      animation: ticker-scroll 28s linear infinite;
    }

    @keyframes ticker-scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .ticker-item {
      display: flex;
      align-items: center;
      margin-right: 48px;
      font-size: 1rem;
      color: #b48a2e;
      font-weight: 600;
      letter-spacing: 0.5px;
      transition: color 0.2s;
    }

    .ticker-item a {
      color: #b48a2e;
      text-decoration: none;
      margin-left: 8px;
      transition: color 0.2s;
    }

    .ticker-item a:hover {
      color: #7c4f2c;
      text-decoration: underline;
    }

    .ticker-icon {
      margin-right: 4px;
      color: #f5c242;
      vertical-align: middle;
    }

    .ticker-wrapper:hover .ticker-content {
      animation-play-state: paused;
    }

    /* Dual CTA Styles */
    .dual-cta-container {
      display: flex;
      flex-direction: row;
      width: 100%;
      gap: 0;
    }

    .cta-box {
      position: relative;
      flex: 1;
      height: 520px;
      background-size: cover;
      background-position: center;
      overflow: hidden;
      transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
      box-shadow: 0 8px 32px rgba(44, 37, 19, 0.08);
    }

    .cta-box:hover {
      transform: scale(1.025);
      z-index: 5;
      box-shadow: 0 16px 40px rgba(44, 37, 19, 0.13);
    }

    .cta-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(120deg, rgba(255,255,255,0.45) 60%, rgba(255, 230, 180, 0.18) 100%);
      mix-blend-mode: overlay;
      z-index: 1;
      transition:0.4s;
    }

    .cta-box:hover .cta-overlay {
      background: linear-gradient(120deg, rgba(255,255,255,0.6) 40%, rgba(255, 230, 180, 0.28) 100%);
    }

    .cta-content {
      position: absolute;
      top: 50%;
      left: 10%;
      transform: translateY(-50%);
      color: #1a1202;
      z-index: 2;
      max-width: 420px;
      min-height: 220px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
    }

    .cta-title, .cta-subtitle, .cta-description, .cta-button {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.5s, transform 0.5s;
    }

    .cta-box:hover .cta-title,
    .cta-box:hover .cta-subtitle,
    .cta-box:hover .cta-description,
    .cta-box:hover .cta-button {
      opacity: 1;
      transform: translateY(0);
    }

    .cta-box:hover .cta-title { transition-delay: 0.1s; }
    .cta-box:hover .cta-subtitle { transition-delay: 0.2s; }
    .cta-box:hover .cta-description { transition-delay: 0.3s; }
    .cta-box:hover .cta-button { transition-delay: 0.4s; }

    .cta-title {
      font-size: 1.35rem;
      font-weight: 700;
      margin: 0 0 7px 0;
      letter-spacing: -0.5px;
      color: #2d1a05;
      line-height: 1.2;
    }
    .cta-subtitle {
      font-size: 0.98rem;
      font-weight: 600;
      letter-spacing: 1.5px;
      margin-bottom: 7px;
      text-transform: uppercase;
      color: #b48a2e;
    }
    .cta-description {
      font-size: 0.98rem;
      margin-bottom: 18px;
      color: #5a3d1b;
    }
    .cta-button {
      display: inline-block;
      padding: 10px 24px;
      background: linear-gradient(90deg, #ffe7b2 0%, #fff 100%);
      color: #2d1a05;
      font-weight: 700;
      border-radius: 6px;
      font-size: 1.02rem;
      letter-spacing: 0.5px;
      box-shadow: 0 2px 8px rgba(180,138,46,0.08);
      border: 1.2px solid #f5c242;
      transition: all 0.3s;
      text-decoration: none;
    }
    .cta-button:hover {
      background: linear-gradient(90deg, #f5c242 0%, #ffe7b2 100%);
      color: #fff;
      transform: translateY(-2px) scale(1.04);
      border-color: #b48a2e;
    }

    /* Promo Grid Styles */
    .promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      padding: 20px;
      background-color: #fff;
    }

    .promo-card {
      position: relative;
      display: block;
      color: #000;
      overflow: hidden;
      height: 400px;
      border-radius: 14px;
      text-decoration: none;
      transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
      box-shadow: 0 4px 24px rgba(44, 37, 19, 0.08);
    }

    .promo-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
      z-index: 1;
    }

    .promo-card:hover .promo-bg {
      transform: scale(1.08) rotate(-1deg);
    }

    .promo-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, rgba(255,255,255,0.12) 60%, rgba(255, 230, 180, 0.10) 100%);
      z-index: 2;
      display: flex;
      align-items: flex-start;
      justify-content: flex-end;
      padding: 18px;
      pointer-events: none;
    }

    .promo-shape {
      width: 60px;
      height: auto;
      opacity: 0.7;
      filter: drop-shadow(0 2px 8px rgba(44,37,19,0.08));
      transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .promo-card:hover .promo-shape {
      transform: scale(1.12) rotate(8deg);
    }

    .promo-content {
      position: absolute;
      bottom: 28px;
      left: 28px;
      z-index: 3;
      max-width: 80%;
      color: #2d1a05;
    }

    .promo-subtitle, .promo-title, .promo-description, .promo-button {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.5s, transform 0.5s;
    }

    .promo-card:hover .promo-subtitle { opacity: 1; transform: translateY(0); transition-delay: 0s; }
    .promo-card:hover .promo-title { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
    .promo-card:hover .promo-description { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
    .promo-card:hover .promo-button { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }

    .promo-subtitle {
      font-size: 0.98rem;
      font-weight: 600;
      letter-spacing: 1.5px;
      margin-bottom: 7px;
      text-transform: uppercase;
      color: #ffffff;
      text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }

    .promo-title {
      font-size: 1.35rem;
      font-weight: 700;
      margin: 0 0 7px 0;
      letter-spacing: -0.5px;
      color: #2d1a05;
      background: rgba(255, 255, 255, 0.8);
      padding: 2px 8px;
      border-radius: 4px;
      display: inline-block;
    }

    .promo-description {
      font-size: 0.98rem;
      margin-bottom: 18px;
      color: #fff;
      text-shadow: 0 2px 4px rgba(0,0,0,0.5);
      font-weight: 500;
    }

    .promo-button {
      display: inline-block;
      padding: 10px 24px;
      background: linear-gradient(90deg, #ffe7b2 0%, #fff 100%);
      color: #2d1a05;
      font-weight: 700;
      border-radius: 6px;
      font-size: 1.02rem;
      letter-spacing: 0.5px;
      box-shadow: 0 2px 8px rgba(180,138,46,0.08);
      border: 1.2px solid #f5c242;
      transition: all 0.3s;
    }

    .promo-button:hover {
      background: linear-gradient(90deg, #f5c242 0%, #ffe7b2 100%);
      color: #fff;
      box-shadow: 0 6px 24px rgba(180,138,46,0.18);
      border-color: #b48a2e;
      transform: translateY(-2px) scale(1.04);
    }

    /* Product Card - FIXED */
    .product-card {
      background: var(--card-bg);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 10px 30px var(--shadow-light);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      position: relative;
      display: flex;
      flex-direction: column;
      border: 1px solid rgba(212, 175, 55, 0.1);
    }

    .product-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--primary-gold), var(--primary-green));
      z-index: 5;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.5s ease;
    }

    .product-card:hover {
      box-shadow: 0 20px 50px var(--shadow-heavy);
      transform: translateY(-10px);
    }

    .product-card:hover::before {
      transform: scaleX(1);
    }

    /* Video Wrapper */
    .product-video-wrapper {
      position: relative;
      width: 100%;
      height: 400px;
      background: linear-gradient(135deg, #f5f0e8 0%, #ebe5db 100%);
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .product-video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .product-card:hover .product-video {
      transform: scale(1.05);
    }

    /* Badge Styles */
    .badge-container {
      position: absolute;
      top: 15px;
      left: 15px;
      z-index: 10;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .badge-new {
      background:var(--shadow-light);
      color:var(--primary-gold);
      padding: 0.5rem 1rem;
      border-radius: 25px;
      font-weight: 700;
      font-size: 0.85rem;
      display: inline-block;
      box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
      animation: pulse 2s infinite;
    }

    .badge-off {
      background: var(--shadow-light);
      color:var(--primary-gold);
      padding: 0.4rem 0.9rem;
      border-radius: 20px;
      font-weight: 700;
      font-size: 0.8rem;
      display: inline-block;
      box-shadow: 0 4px 12px rgba(56, 177, 108, 0.3);
    }

    @keyframes pulse {
      0% {
        box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
      }
      50% {
        box-shadow: 0 4px 20px rgba(231, 76, 60, 0.6);
      }
      100% {
        box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
      }
    }

    /* Action Icons - Enhanced */
    .action-icons {
      position: absolute;
      right: 15px;
      top: 50%;
      transform: translateY(-50%) translateX(20px);
      display: flex;
      flex-direction: column;
      gap: 12px;
      z-index: 10;
      opacity: 0;
      visibility: hidden;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .product-card:hover .action-icons {
      opacity: 1;
      visibility: visible;
      transform: translateY(-50%) translateX(0);
    }

    .action-icon {
      width: 45px;
      height: 45px;
      background: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-gold);
      font-size: 1.2rem;
      cursor: pointer;
      box-shadow: 0 5px 15px var(--shadow-medium);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .action-icon::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
      transition: left 0.5s ease;
    }

    .action-icon:hover {
      background: var(--primary-gold);
      color: white;
      transform: scale(1.15) rotate(5deg);
    }

    .action-icon:hover::before {
      left: 100%;
    }

    /* Quick View Overlay */
    .quick-view-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.7);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: all 0.4s ease;
      z-index: 20;
    }

    .quick-view-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .quick-view-content {
      background: white;
      border-radius: 16px;
      padding: 2rem;
      max-width: 500px;
      width: 90%;
      text-align: center;
      transform: scale(0.9);
      transition: transform 0.4s ease;
    }

    .quick-view-overlay.active .quick-view-content {
      transform: scale(1);
    }

    .close-quick-view {
      position: absolute;
      top: 15px;
      right: 15px;
      background: white;
      width: 35px;
      height: 35px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      transition: all 0.3s ease;
    }

    .close-quick-view:hover {
      background: var(--primary-gold);
      color: white;
      transform: rotate(90deg);
    }

    /* Product Body */
    .product-body {
      padding: 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
      position: relative;
      z-index: 2;
    }

    .product-category {
      font-size: 0.9rem;
      color: #999;
      font-weight: 500;
      margin-bottom: 0.5rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .product-name {
      font-size: 1.3rem;
      font-weight: 700;
      color: #243868;
      margin-bottom: 0.5rem;
      line-height: 1.3;
      transition: color 0.3s ease;
    }

    .product-card:hover .product-name {
      color: var(--primary-gold);
    }

    .product-specs {
      font-size: 0.95rem;
      color: #888;
      margin-bottom: 1.2rem;
      line-height: 1.5;
    }

    .product-price-section {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      margin-bottom: 0.8rem;
    }

    .product-price {
      font-size: 1.6rem;
      font-weight: bold;
      color:rgba(0, 0, 0, 0.612);
      letter-spacing: 0.5px;
    }

    .product-price-old {
      font-size: 1.1rem;
      color: #ccc;
      text-decoration: line-through;
    }

    .product-save {
      color: var(--dark-bg);
      font-size: 0.95rem;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .btn-order {
      background: var(--shadow-light);
      color:var(--primary-gold);
      border: none;
      border-radius: 10px;
      padding: 1rem 1.5rem;
      font-size: 1.05rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      width: 100%;
      margin-top: auto;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.8rem;
      position: relative;
      overflow: hidden;
    }

    .btn-order::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      transition: left 0.7s ease;
    }

    .btn-order:hover {
      background:var(--shadow-light);
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(56, 177, 108, 0.4);
    }

    .btn-order:hover::before {
      left: 100%;
    }

    .btn-order i {
      transition: transform 0.3s ease;
    }

    .btn-order:hover i {
      transform: translateX(5px);
    }

    /* Floating decorative elements */
    .floating-element {
      position: absolute;
      z-index: 0;
      opacity: 0.7;
      pointer-events: none;
    }

    .floating-diamond {
      top: 10%;
      left: 5%;
      font-size: 2rem;
      color: var(--primary-gold);
      animation: float 8s ease-in-out infinite;
    }

    .floating-heart {
      bottom: 15%;
      right: 8%;
      font-size: 1.5rem;
      color: var(--primary-green);
      animation: float 10s ease-in-out infinite reverse;
    }

    /* Animations */
    @keyframes float {
      0%, 100% {
        transform: translateY(0px) rotate(0deg);
      }
      50% {
        transform: translateY(-20px) rotate(5deg);
      }
    }

    /* NEW: Custom container for better card alignment */
    .custom-container {
      max-width: 1400px;
      margin: 0 auto;
    }

    /* Products Section */
    .products-section {
      padding: 4rem 2rem;
      background: var(--light-bg);
      position: relative;
    }

    .section-title-1 {
      text-align: center;
      font-size: 2.8rem;
      font-weight: 700;
      color: #243868;
      margin-bottom: 3.5rem;
      letter-spacing: 1.5px;
      position: relative;
      display: inline-block;
      left: 50%;
      transform: translateX(-50%);
    }

    .section-title-1::after {
      content: '';
      position: absolute;
      bottom: -12px;
      left: 25%;
      width: 50%;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
      border-radius: 3px;
    }

    /* ===== ENHANCED PRODUCT SECTION ===== */
    .product-section {
      padding: 4rem 2rem;
      background: linear-gradient(135deg, #fdf5ef 0%, #fef9f3 100%);
      position: relative;
      overflow: hidden;
    }

    .product-section::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
      border-radius: 50%;
      animation: float 8s ease-in-out infinite;
      z-index: 0;
    }

    .product-section::after {
      content: '';
      position: absolute;
      bottom: -30%;
      left: -10%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(139, 58, 58, 0.08) 0%, transparent 70%);
      border-radius: 50%;
      animation: float 10s ease-in-out infinite reverse;
      z-index: 0;
    }

    .product-section-wrapper {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 3rem;
      align-items: flex-start;
      max-width: 1400px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    /* Left Featured Card */
    .featured-card {
      background: var(--card-bg);
      border-radius: 20px;
      padding: 3rem 2.5rem;
      box-shadow: 0 20px 60px var(--shadow-medium);
      min-height: 550px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      overflow: hidden;
      animation: fadeInLeft 0.8s ease-out;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      border: 1px solid rgba(212, 175, 55, 0.1);
    }

    .featured-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 30px 80px var(--shadow-heavy);
    }

    .featured-card::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -50%;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
      border-radius: 50%;
      animation: float 6s ease-in-out infinite;
    }

    .featured-card-content {
      position: relative;
      z-index: 2;
    }

    .featured-category {
      color: var(--primary-gold);
      font-size: 0.9rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2.5px;
      margin-bottom: 0.8rem;
      animation: fadeInUp 0.6s ease-out 0.1s both;
    }

    .featured-title {
      font-size: 2.5rem;
      font-weight: bold;
      color: #243868;
      margin-bottom: 1.2rem;
      line-height: 1.2;
      animation: fadeInUp 0.6s ease-out 0.2s both;
      transition: all 0.3s ease;
    }

    .featured-description {
      font-size: 1.05rem;
      color: var(--dark-text);
      line-height: 1.8;
      margin-bottom: 1.8rem;
      animation: fadeInUp 0.6s ease-out 0.3s both;
    }

    .featured-price {
      font-size: 2rem;
      font-weight: bold;
      color: var(--primary-gold);
      margin-bottom: 1rem;
      animation: fadeInUp 0.6s ease-out 0.4s both;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .original-price {
      font-size: 1.2rem;
      color: #999;
      text-decoration: line-through;
    }

    .featured-rating {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 2rem;
      animation: fadeInUp 0.6s ease-out 0.5s both;
    }

    .featured-rating i {
      color: var(--primary-gold);
      font-size: 1.1rem;
      transition: all 0.3s ease;
    }

    .featured-rating:hover i {
      transform: scale(1.2);
    }

    .featured-rating-text {
      color: var(--dark-text);
      font-size: 0.95rem;
      margin-left: 0.5rem;
    }

    .btn-add-cart {
      background:#2E0F3A;
      color:var(--primary-gold);
      border: none;
      border-radius: 10px;
      padding: 1.1rem 2.5rem;
      font-size: 1rem;
      font-weight: bold;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      display: inline-flex;
      align-items: center;
      gap: 0.8rem;
      box-shadow: 0 5px 20px rgba(139, 58, 58, 0.3);
      animation: fadeInUp 0.6s ease-out 0.6s both;
      position: relative;
      overflow: hidden;
    }

    .btn-add-cart::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: #2E0F3A;
      transition: left 0.7s ease;
    }

    .btn-add-cart:hover {
      background: #2E0F3A;;
      transform: translateY(-5px);
      box-shadow: 0 12px 35px rgba(139, 58, 58, 0.5);
    }

    .btn-add-cart:hover::before {
      left: 100%;
    }

    .btn-add-cart i {
      transition: transform 0.3s ease;
    }

    .btn-add-cart:hover i {
      transform: translateX(5px);
    }

    /* Right Side - Product Images */
    .products-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }

    .product-image-card {
      position: relative;
      border-radius: 15px;
      overflow: hidden;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      box-shadow: 0 10px 30px var(--shadow-light);
    }

    .product-image-card:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 20px 50px var(--shadow-medium);
    }

    .product-image-card:nth-child(1),
    .product-image-card:nth-child(2) {
      animation: slideInRight 0.6s ease-out;
    }

    .product-image-card:nth-child(3),
    .product-image-card:nth-child(4) {
      animation: slideInRight 0.6s ease-out 0.1s both;
    }

    .product-img-wrapper {
      position: relative;
      width: 100%;
      height: 300px;
      background: linear-gradient(135deg, #f5f0e8 0%, #ebe5db 100%);
      overflow: hidden;
      border-radius: 15px;
    }

    .product-img-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .product-image-card:hover .product-img-wrapper img {
      transform: scale(1.15) rotate(1deg);
    }

    .product-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(212, 175, 55, 0.9) 0%, rgba(139, 58, 58, 0.9) 100%);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      opacity: 0;
      transition: all 0.4s ease;
      color: white;
      text-align: center;
      z-index: 10;
      padding: 1.5rem;
    }

    .product-image-card:hover .product-overlay {
      opacity: 1;
    }

    .product-overlay-title {
      font-size: 1.3rem;
      font-weight: bold;
      margin-bottom: 0.5rem;
      transform: translateY(20px);
      transition: transform 0.4s ease;
    }

    .product-overlay-price {
      font-size: 1.8rem;
      font-weight: bold;
      color: var(--secondary-gold);
      transform: translateY(20px);
      transition: transform 0.4s ease 0.1s;
    }

    .product-image-card:hover .product-overlay-title,
    .product-image-card:hover .product-overlay-price {
      transform: translateY(0);
    }

    .product-badge {
      position: absolute;
      top: 15px;
      right: 15px;
      background: var(--primary-gold);
      color: var(--primary-red);
      padding: 0.5rem 1rem;
      border-radius: 25px;
      font-size: 0.9rem;
      font-weight: bold;
      z-index: 5;
      animation: popIn 0.5s ease-out;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
    }

    .product-image-card:hover .product-badge {
      transform: scale(1.1) rotate(5deg);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    }

    /* Footer Styles */


    /* Animations */
    @keyframes slideInDown {
      from {
        opacity: 0;
        transform: translateY(-30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes slideInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeInLeft {
      from {
        opacity: 0;
        transform: translateX(-30px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes slideInRight {
      from {
        opacity: 0;
        transform: translateX(30px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes float {
      0%, 100% {
        transform: translateY(0px) rotate(0deg);
      }
      50% {
        transform: translateY(-20px) rotate(5deg);
      }
    }

    @keyframes popIn {
      0% {
        transform: scale(0) rotate(-45deg);
        opacity: 0;
      }
      100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
      }
    }

    @keyframes shimmer {
      0% {
        transform: translateX(-100%);
      }
      100% {
        transform: translateX(100%);
      }
    }

    /* ===== MOBILE RESPONSIVENESS ENHANCEMENTS ===== */
    
    /* General Mobile Adjustments */
    @media (max-width: 768px) {
      /* Carousel improvements */
      .carousel-container {
        height: 60vh;
      }
      
      .slide-content {
        padding: 2rem 1.5rem !important;
      }
      
      .slide-title {
        font-size: 1.8rem !important;
        margin-bottom: 0.8rem !important;
      }
      
      .slide-desc {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
      }
      
      .carousel-dots {
        right: 50% !important;
        transform: translateX(50%) !important;
        bottom: 1rem !important;
      }
      
      .carousel-arrow {
        display: none !important;
      }
      
      /* Dual CTA improvements */
      .dual-cta-container {
        flex-direction: column;
      }
      
      .cta-box {
        height: 400px;
      }
      
      .cta-content {
        left: 5% !important;
        max-width: 90% !important;
      }
      
      .cta-title, .cta-subtitle, .cta-description, .cta-button {
        opacity: 1 !important;
        transform: translateY(0) !important;
      }
      
      /* Promo Grid improvements */
      .promo-grid {
        grid-template-columns: 1fr;
        padding: 10px;
        gap: 15px;
      }
      
      .promo-card {
        height: 350px;
      }
      
      .promo-content {
        bottom: 20px;
        left: 20px;
        max-width: 90%;
      }
      
      .promo-subtitle, .promo-title, .promo-description, .promo-button {
        opacity: 1 !important;
        transform: translateY(0) !important;
      }
      
      /* Product section improvements */
      .product-section {
        padding: 2rem 1rem;
      }
      
      .product-section-wrapper {
        grid-template-columns: 1fr;
      }
      
      .featured-card {
        min-height: auto;
        padding: 2rem 1.5rem;
      }
      
      .featured-title {
        font-size: 1.8rem;
      }
      
      .products-grid {
        grid-template-columns: 1fr;
      }
      
      .product-img-wrapper {
        height: 250px;
      }
      
      /* Products section improvements */
      .products-section {
        padding: 2rem 1rem;
      }
      
      .section-title-1 {
        font-size: 2rem;
        margin-bottom: 2.5rem;
      }
      
      .product-video-wrapper {
        height: 220px;
      }
      
      .product-body {
        padding: 1.5rem;
      }
      
      .product-name {
        font-size: 1.2rem;
      }
      
      .action-icons {
        opacity: 1;
        visibility: visible;
        transform: translateY(-50%) translateX(0);
      }
    }

    @media (max-width: 575px) {
      
      .products-section {
        padding: 1.5rem 0.8rem;
      }
      
      .product-card {
        border-radius: 12px;
      }
      
      .product-video-wrapper {
        height: 200px;
        border-radius: 12px 12px 0 0;
      }
      
      .product-body {
        padding: 1.2rem;
      }
      
      .product-name {
        font-size: 1.1rem;
      }
      
      .product-price {
        font-size: 1.4rem;
      }
      
      .btn-order {
        padding: 0.9rem 1.2rem;
        font-size: 1rem;
      }
      
      .section-title-1 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
      }
      
      .featured-card {
        padding: 1.5rem 1rem;
      }
      
      .featured-title {
        font-size: 1.5rem;
      }
      
      .featured-price {
        font-size: 1.5rem;
      }
      
      .product-img-wrapper {
        height: 200px;
      }
    }
    
/* ===========================
   TRENDING SECTION
   =========================== */

.trending-section {
    background-color: var(--bg-white);
    padding: 5rem 0;
    position: relative;
}

.trending-header {
    margin-bottom: 3rem;
}

.trending-title {
    font-size: 3rem;
    font-weight: 800;
    color:black;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.trending-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* ===========================
   SWIPER CAROUSEL
   =========================== */

.trending-swiper {
    padding: 2rem 0;
}

.swiper-wrapper {
    margin-bottom: 2rem;
}

/* Product Cards */
.trending-product-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.trending-product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    background-color: #f0f0f0;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.trending-product-card:hover .product-image {
    transform: scale(1.08);
    filter: brightness(0.7);
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 2;
    animation: slideInLeft 0.5s ease;
}

.product-badge.trending {
    background-color: #e74c3c;
    color: white;
}

.product-badge.sale {
    background-color: #27ae60;
    color: white;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Product Overlay */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: var(--transition-smooth);
    backdrop-filter: blur(3px);
}

.trending-product-card:hover .product-overlay {
    opacity: 1;
}

.btn-product-action {
    background-color: var(--primary-color);
    color: var(--text-dark);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    transform: translateY(10px);
}

.trending-product-card:hover .btn-product-action:nth-child(1) {
    transform: translateY(0);
    animation: slideUp 0.5s ease 0.1s both;
}

.trending-product-card:hover .btn-product-action:nth-child(2) {
    transform: translateY(0);
    animation: slideUp 0.5s ease 0.2s both;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-product-action:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: scale(1.05);
}

/* Product Details */
.product-details {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.product-description {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

/* Product Pricing */
.product-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.price-current {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.25rem;
}

.price-original {
    color: var(--text-muted);
    font-size: 0.95rem;
    text-decoration: line-through;
}

.price-discount {
    background-color: #e74c3c;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* ===========================
   SWIPER NAVIGATION
   =========================== */

.swiper-button-prev,
.swiper-button-next {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--text-dark);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    top: 50%;
    transform: translateY(-50%);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    content: '';
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.swiper-button-prev {
    left: 10px;
}

.swiper-button-next {
    right: 10px;
}

/* Pagination */
.swiper-pagination {
    bottom: 10px !important;
}

.swiper-pagination-bullet {
    background-color: var(--primary-color);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    opacity: 1;
}

/* ===========================
   RESPONSIVE - TABLET
   =========================== */

@media (max-width: 1199px) {
    .trending-title {
        font-size: 2.5rem;
    }

    .trending-subtitle {
        font-size: 1.1rem;
    }

    .product-image-wrapper {
        height: 350px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 45px;
        height: 45px;
        font-size: 0.9rem;
    }
}

/* ===========================
   RESPONSIVE - MOBILE
   =========================== */

@media (max-width: 767px) {
    .trending-section {
        padding: 3rem 0;
    }

    .trending-title {
        font-size: 2rem;
    }

    .trending-subtitle {
        font-size: 1rem;
    }

    .trending-header {
        margin-bottom: 2rem;
    }

    .product-image-wrapper {
        height: 300px;
    }

    .product-details {
        padding: 1rem;
    }

    .product-name {
        font-size: 0.95rem;
    }

    .product-description {
        font-size: 0.8rem;
    }

    .price-current {
        font-size: 1.1rem;
    }

    /* Hide desktop navigation buttons on mobile */
    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }

    /* Pagination becomes more visible */
    .swiper-pagination {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        bottom: 15px !important;
    }

    .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }

    .btn-product-action {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
}

/* ===========================
   RESPONSIVE - SMALL MOBILE
   =========================== */

@media (max-width: 480px) {
    .trending-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .trending-subtitle {
        font-size: 0.9rem;
    }

    .trending-header {
        margin-bottom: 1.5rem;
    }

    .trending-section {
        padding: 1.5rem 0;
    }

    .product-image-wrapper {
        height: 280px;
    }

    .product-details {
        padding: 0.75rem;
    }

    .product-name {
        font-size: 0.85rem;
    }

    .product-description {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .price-current {
        font-size: 1rem;
    }

    .price-original {
        font-size: 0.85rem;
    }

    .btn-product-action {
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
    }

    .product-badge {
        top: 10px;
        left: 10px;
        padding: 0.4rem 0.8rem;
        font-size: 0.65rem;
    }
}

/* Grid Card Base Styles */
.grid-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    background: var(--bg-white);
    aspect-ratio: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.grid-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-image-container {
    position: relative;
    width: 100%;
    height: 85%;
    overflow: hidden;
    background-color: #f0f0f0;
}

.grid-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.grid-card:hover .grid-card-image {
    transform: scale(1.1) rotate(2deg);
    filter: brightness(0.75);
}

/* Card Overlay */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    backdrop-filter: blur(2px);
}

.grid-card:hover .card-overlay {
    opacity: 1;
}

.btn-quick-view {
    background-color: var(--primary-color);
    color: var(--text-dark);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    transform: translateY(10px);
}

.grid-card:hover .btn-quick-view {
    transform: translateY(0);
}

.btn-quick-view:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: scale(1.05);
}

/* Card Label */
.card-label {
    height: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #f0f0f0;
    background: var(--bg-white);
}

.label-text {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-align: center;
}

/* ===========================
   DESKTOP LAYOUT (4 COLUMNS)
   =========================== */

@media (min-width: 1200px) {


    .card-image-container {
        height: 80%;
    }

    .card-label {
        height: 20%;
    }

   
}

/* ===========================
   TABLET LAYOUT (2 COLUMNS)
   =========================== */

@media (max-width: 1199px) and (min-width: 768px) {

    .card-image-container {
        height: 80%;
    }

    .category-grid-section {
        padding: 3rem 0;
    }

    .label-text {
        font-size: 0.8rem;
    }
}

/* ===========================
   MOBILE LAYOUT (SINGLE COLUMN)
   =========================== */

@media (max-width: 767px) {
    .category-grid-section {
        padding: 2rem 0;
    }

    .card-image-container {
        height: 75%;
    }

    .card-label {
        height: 25%;
    }

    .btn-quick-view {
        padding: 0.65rem 1.5rem;
        font-size: 0.85rem;
    }

    .overlay-title {
        font-size: 1rem;
    }

    .label-text {
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }

}

/* ===========================
   MOBILE SMALL DEVICES
   =========================== */

@media (max-width: 480px) {


    .card-label {
        height: 30%;
    }

    .btn-quick-view {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }

    .label-text {
        font-size: 0.7rem;
    }
}

/* ===========================
   RESPONSIVE SPACING
   =========================== */

@media (max-width: 768px) {
    .container-fluid {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .row {
        --bs-gutter-x: 0.75rem;
    }
}


/* ===========================
   COLLECTIONS SECTION
   =========================== */

.collections-section {
    background: linear-gradient(135deg, #fafbfc 0%, #f5f5f5 100%);
    padding: 4rem 0;
    min-height: 100vh;
}

.collections-header {
    margin-bottom: 3rem;
}

.collections-title {
    font-size: 3rem;
    font-weight: 800;
    color:black;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.collections-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* ===========================
   MASONRY GRID LAYOUT
   =========================== */

.masonry-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 300px;
}

/* Desktop - 4 Column Masonry */
@media (min-width: 1200px) {
    .masonry-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 300px;
        gap: 1.5rem;
    }

    .masonry-item.masonry-lg-2x {
        grid-column: span 2;
    }

    .masonry-item.masonry-lg-2y {
        grid-row: span 2;
    }

    .masonry-item.masonry-lg-1x {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* Tablet - 2 Column Masonry */
@media (max-width: 1199px) and (min-width: 768px) {
    .masonry-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 280px;
        gap: 1.25rem;
    }

    .masonry-item {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }

    .collections-title {
        font-size: 2.5rem;
    }
}

/* Mobile - 1 Column Masonry */
@media (max-width: 767px) {
    .collections-section {
        padding: 2rem 0;
    }

    .masonry-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
        gap: 1rem;
    }

    .masonry-item {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }

    .collections-title {
        font-size: 2rem;
    }

    .collections-subtitle {
        font-size: 1rem;
    }
}

/* Mobile Small - Single Column */
@media (max-width: 480px) {
    .collections-section {
        padding: 1.5rem 0;
    }

    .masonry-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
        gap: 0.75rem;
    }

    .collections-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .collections-subtitle {
        font-size: 0.9rem;
    }

    .collections-header {
        margin-bottom: 2rem;
    }
}

/* ===========================
   COLLECTION CARDS
   =========================== */

.collection-card {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    cursor: pointer;
    background-color: #f0f0f0;
}

.collection-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.collection-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.collection-card:hover .collection-image {
    transform: scale(1.1);
    filter: brightness(0.6);
}

/* Collection Overlay */
.collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.collection-card:hover .collection-overlay {
    opacity: 1;
}

.collection-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.collection-card:hover .collection-content {
    transform: translateY(0);
}

.collection-name {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.collection-desc {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.btn-collection {
    background-color: var(--primary-gold);
    color:white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.btn-collection:hover {
    background-color: var(--primary-gold);
    color: white;
    transform: scale(1.05);
}

/* Responsive Collection Names */
@media (max-width: 768px) {
    .collection-name {
        font-size: 1.5rem;
    }

    .collection-desc {
        font-size: 0.85rem;
    }

    .btn-collection {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .collection-name {
        font-size: 1.2rem;
    }

    .collection-desc {
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }

    .btn-collection {
        padding: 0.5rem 1.2rem;
        font-size: 0.75rem;
    }
}

/* ===========================
   ASSURANCE HERO SECTION
   =========================== */

.assurance-hero {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    padding: 4rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.assurance-text-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.assurance-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    color:black;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.assurance-highlight {
    color: var(--secondary-color);
    font-style: italic;
}

.assurance-tagline {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 2rem;
}

.assurance-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Feature Cards */
.assurance-feature-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.assurance-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 3rem;
    color: var(--shadow-light);
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
}

.assurance-feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(10deg);
}

.feature-title {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.feature-description {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

/* Responsive Assurance Hero */
@media (max-width: 1199px) {
    .assurance-main-title {
        font-size: 2.75rem;
    }

    .assurance-hero {
        padding: 3rem 0;
    }
}

@media (max-width: 991px) {
    .assurance-hero {
        padding: 2.5rem 0;
    }

    .assurance-text-section {
        text-align: center;
        margin-bottom: 2rem;
    }

    .assurance-main-title {
        font-size: 2.5rem;
    }

    .assurance-tagline {
        font-size: 1.1rem;
    }

    .assurance-divider {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .assurance-hero {
        padding: 2rem 0;
    }

    .assurance-main-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .assurance-tagline {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .assurance-feature-card {
        padding: 1.5rem 1rem;
    }

    .feature-icon {
        font-size: 2.5rem;
    }

    .feature-title {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .assurance-hero {
        padding: 1.5rem 0;
    }

    .assurance-main-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .assurance-tagline {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .assurance-divider {
        width: 60px;
        height: 3px;
    }

    .assurance-feature-card {
        padding: 1.25rem 0.75rem;
    }

    .feature-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .feature-title {
        font-size: 0.9rem;
        line-height: 1.2;
    }

    .feature-description {
        font-size: 0.75rem;
    }
}

/* ===========================
   EXCHANGE PROGRAM SECTION
   =========================== */

.exchange-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #fafbfc 100%);
    padding: 4rem 0;
}

.exchange-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid #f0f0f0;
    transition: var(--transition-smooth);
}

.exchange-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.exchange-title {
    font-size: 2.5rem;
    font-weight: 800;
    color:black;
    text-align: center;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.exchange-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 2rem;
}

/* Exchange Features */
.exchange-feature {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(139, 69, 19, 0.05) 100%);
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.exchange-feature:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(139, 69, 19, 0.1) 100%);
    transform: translateY(-5px);
}

.exchange-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
}

.exchange-feature:hover .exchange-icon {
    transform: scale(1.2) rotate(10deg);
}

.exchange-feature-title {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.exchange-feature-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

.btn-exchange {
    background-color: var(--primary-color);
    color: var(--text-dark);
    border: none;
    padding: 1rem 3rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    margin: 0 auto;
    display: block;
    transition: var(--transition-smooth);
}

.btn-exchange:hover {
    background-color: var(--shadow-light);
    color:var(--deep-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* Responsive Exchange Section */
@media (max-width: 768px) {
    .exchange-section {
        padding: 2.5rem 0;
    }

    .exchange-card {
        padding: 2rem 1.5rem;
    }

    .exchange-title {
        font-size: 2rem;
    }

    .exchange-subtitle {
        font-size: 0.95rem;
    }

    .exchange-feature {
        padding: 1rem;
    }

    .exchange-icon {
        font-size: 2rem;
    }

    .exchange-feature-title {
        font-size: 1rem;
    }

    .btn-exchange {
        padding: 0.75rem 2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .exchange-section {
        padding: 1.5rem 0;
    }

    .exchange-card {
        padding: 1.5rem 1rem;
    }

    .exchange-title {
        font-size: 1.5rem;
    }

    .exchange-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }

    .exchange-feature {
        padding: 0.75rem 0.5rem;
    }

    .exchange-icon {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .exchange-feature-title {
        font-size: 0.9rem;
    }

    .exchange-feature-desc {
        font-size: 0.7rem;
    }

    .btn-exchange {
        padding: 0.6rem 1.5rem;
        font-size: 0.8rem;
    }
}

/* ===========================
   TRUST SECTION
   =========================== */

.trust-section {
    background: var(--bg-white);
    padding: 4rem 0;
}

.trust-title {
    font-size: 2.5rem;
    font-weight: 800;
    color:black;
    letter-spacing: -0.5px;
}

.trust-badge-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #fafbfc 100%);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.trust-badge-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.trust-badge-icon {
    font-size: 3rem;
    color: var(--shadow-light);
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
}

.trust-badge-card:hover .trust-badge-icon {
    transform: scale(1.1) rotate(5deg);
}

.trust-badge-title {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.trust-badge-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

/* Responsive Trust Section */
@media (max-width: 768px) {
    .trust-section {
        padding: 2.5rem 0;
    }

    .trust-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .trust-badge-card {
        padding: 1.5rem 1rem;
    }

    .trust-badge-icon {
        font-size: 2.5rem;
    }

    .trust-badge-title {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .trust-section {
        padding: 1.5rem 0;
    }

    .trust-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .trust-badge-card {
        padding: 1.25rem 0.75rem;
    }

    .trust-badge-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .trust-badge-title {
        font-size: 0.95rem;
    }

    .trust-badge-desc {
        font-size: 0.75rem;
    }
}

        /* Gallery Section */
        .gc-gallery-section {
            padding: 40px 15px;
            background-color: #fff;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .gc-container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        /* Heading Styles */
        .gc-gallery-heading {
            text-align: center;
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.6s ease;
            margin-bottom: 30px;
        }

        .gc-gallery-heading.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .gc-gallery-subtitle {
            font-size: clamp(12px, 2.5vw, 14px);
            font-weight: 600;
            letter-spacing: 1px;
            color: #000;
            margin-bottom: 8px;
            text-transform: uppercase;
        }

        .gc-gallery-subtitle .gc-om-symbol {
            color: #ff6600;
            margin-right: 5px;
            font-weight: bold;
            font-size: 1.2em;
        }

        .gc-gallery-title {
            font-size: clamp(24px, 6vw, 42px);
            font-weight: 800;
            color: #000;
            margin-bottom: 5px;
            line-height: 1.2;
        }

        .gc-gallery-underline {
            width: 60px;
            height: 2px;
            background-color: #ff6600;
            margin: 15px auto 0;
            transition: width 0.5s ease;
        }

        .gc-gallery-heading:hover .gc-gallery-underline {
            width: 100px;
        }

        /* Carousel Styles */
        .gc-carousel {
            width: 100%;
            position: relative;
            perspective: 1000px;
            overflow: hidden;
        }

        .gc-carousel input {
            display: none;
        }

        .gc-cards {
            height: clamp(300px, 50vh, 500px);
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            margin-bottom: 25px;
            padding: 0 10px;
        }

        .gc-card {
              width: clamp(318px, 139%, 329px);
             height: clamp(330px, 75%, 400px);
            position: absolute;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            cursor: pointer;
        }

        .gc-card video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
            display: block;
        }

        .gc-card:hover video {
            transform: scale(1.05);
        }

        /* Active Card Styles */
        #gc-slide1:checked ~ .gc-cards #gc-card1,
        #gc-slide2:checked ~ .gc-cards #gc-card2,
        #gc-slide3:checked ~ .gc-cards #gc-card3,
        #gc-slide4:checked ~ .gc-cards #gc-card4,
        #gc-slide5:checked ~ .gc-cards #gc-card5,
        #gc-slide6:checked ~ .gc-cards #gc-card6 {
            opacity: 1;
            transform: scale(1);
            z-index: 3;
        }

        /* Next Cards */
        #gc-slide1:checked ~ .gc-cards #gc-card2,
        #gc-slide2:checked ~ .gc-cards #gc-card3,
        #gc-slide3:checked ~ .gc-cards #gc-card4,
        #gc-slide4:checked ~ .gc-cards #gc-card5,
        #gc-slide5:checked ~ .gc-cards #gc-card6,
        #gc-slide6:checked ~ .gc-cards #gc-card1 {
            opacity: 0.6;
            transform: scale(0.85) translateX(40%);
            z-index: 2;
        }

        /* Previous Cards */
        #gc-slide1:checked ~ .gc-cards #gc-card6,
        #gc-slide2:checked ~ .gc-cards #gc-card1,
        #gc-slide3:checked ~ .gc-cards #gc-card2,
        #gc-slide4:checked ~ .gc-cards #gc-card3,
        #gc-slide5:checked ~ .gc-cards #gc-card4,
        #gc-slide6:checked ~ .gc-cards #gc-card5 {
            opacity: 0.6;
            transform: scale(0.85) translateX(-40%);
            z-index: 2;
        }

        /* Navigation Dots */
        .gc-navigation {
            text-align: center;
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .gc-nav-dot {
            cursor: pointer;
            width: 12px;
            height: 12px;
            background:var(--deep-gold);
            border-radius: 50%;
            transition: all 0.3s ease;
            opacity: 0.6;
            border: none;
            padding: 0;
        }

        .gc-nav-dot.active,
        .gc-nav-dot:hover {
            background:var(--shadow-light);
            transform: scale(1.2);
            opacity: 1;
        }

        /* Button Styles */
        .gc-readmore-wrapper {
            text-align: center;
        }

        .gc-btn-readmore {
            background: var(--shadow-light);
            color:var(--primary-gold);
            padding: 12px 28px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            font-size: clamp(14px, 2.5vw, 16px);
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow:wheat;
            border: none;
            cursor: pointer;
        }

        .gc-btn-readmore:hover {
            background: var(--primary-gold);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(71, 2, 63, 0.474);
        }

        /* Mobile Optimizations */
        @media (max-width: 768px) {
            .gc-gallery-section {
                padding: 30px 10px;
            }

            .gc-cards {
                height: clamp(250px, 40vh, 350px);
                padding: 0 5px;
            }

            .gc-card {
                width: clamp(260px, 90%, 350px);
                height: clamp(200px, 70%, 280px);
                border-radius: 10px;
            }

            .gc-nav-dot {
                width: 10px;
                height: 10px;
            }

            .gc-gallery-heading {
                margin-bottom: 20px;
            }

            .gc-navigation {
                margin-bottom: 25px;
                gap: 8px;
            }
        }

        @media (max-width: 480px) {
            .gc-gallery-section {
                padding: 20px 8px;
            }

            .gc-cards {
                height: clamp(200px, 35vh, 280px);
            }

            .gc-card {
                width: clamp(240px, 95%, 300px);
                height: clamp(180px, 65%, 230px);
            }

            .gc-nav-dot {
                width: 8px;
                height: 8px;
            }

            .gc-navigation {
                gap: 6px;
            }
        }
   .tq-btn-modern {
            padding: 0.8rem 2rem;
            border-radius: 0;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--tq-transition-smooth);
            border: none;
        }

        .tq-btn-primary-modern {
            background-color: var(--shadow-light);
            color: var(--primary-gold);
        }

        .tq-btn-primary-modern:hover {
            background-color: var(--tq-accent-color);
            color: var(--tq-primary-color);
            transform: translateY(-3px);
            box-shadow: var(--tq-shadow-md);
        }

        .tq-btn-outline-modern {
            background-color: transparent;
            color: var(--tq-primary-color);
            border: 2px solid var(--tq-primary-color);
        }

        .tq-btn-outline-modern:hover {
            background-color: var(--tq-primary-color);
            color: var(--tq-text-light);
            transform: translateY(-3px);
            box-shadow: var(--tq-shadow-md);
        }


        /* Modern Grid Cards */
        .tq-modern-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2rem;
        }

        .tq-modern-card {
            position: relative;
            overflow: hidden;
            border-radius: 0;
            background: var(--tq-bg-white);
            box-shadow: var(--tq-shadow-sm);
            transition: var(--tq-transition-smooth);
            height: 100%;
            display: flex;
            flex-direction: column;
            border: none;
        }

        .tq-modern-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--tq-shadow-lg);
        }

        .tq-card-image-container {
            position: relative;
            width: 100%;
            height: 300px;
            overflow: hidden;
            background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
        }

        .tq-modern-card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--tq-transition-smooth);
        }

        .tq-modern-card:hover .tq-modern-card-image {
            transform: scale(1.05);
        }

        /* Card Overlay */
        .tq-modern-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 2rem;
            opacity: 0;
            transition: var(--tq-transition-smooth);
        }

        .tq-modern-card:hover .tq-modern-overlay {
            opacity: 1;
        }

        .tq-overlay-content {
            transform: translateY(20px);
            transition: var(--tq-transition-smooth);
        }

        .tq-modern-card:hover .tq-overlay-content {
            transform: translateY(0);
        }

        .tq-overlay-title {
            color: var(--tq-text-light);
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .tq-overlay-subtitle {
            color: var(--tq-text-light);
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            opacity: 0.8;
        }

        .tq-btn-overlay {
            background-color: var(--shadow-light);
            color: var(--primary-gold);
            border: none;
            padding: 0.7rem 1.5rem;
            border-radius: 0;
            font-weight: 600;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--tq-transition-smooth);
            width: fit-content;
        }

        .tq-btn-overlay:hover {
            background-color: var(--primary-gold);
            transform: translateY(-3px);
            color:white;
        }

        /* Card Label */
        .tq-modern-card-label {
            padding: 1.5rem;
            background-color: var(--tq-bg-white);
            border-top: 1px solid var(--tq-border-light);
        }

        .tq-label-title {
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 0.25rem;
            color: var(--tq-primary-color);
        }

        .tq-label-subtitle {
            font-size: 0.8rem;
            color: var(--tq-text-dark);
            opacity: 0.7;
        }

        /* ===========================
           SECTION STYLES
           =========================== */
        .tq-modern-category-section {
            padding: 5rem 0;
        }

        .tq-section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .tq-section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--tq-primary-color);
        }

        .tq-section-subtitle {
            font-size: 1.1rem;
            color: var(--tq-text-dark);
            opacity: 0.8;
            max-width: 600px;
            margin: 0 auto;
        }

        /* ===========================
           ENHANCED FEATURED COLLECTION
           =========================== */
        .tq-featured-collection {
            background-color: var(--tq-bg-light);
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
        }

        .tq-featured-card {
            position: relative;
            height: 500px;
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border-radius: 8px;
        }

        .tq-featured-content {
            text-align: center;
            color: var(--tq-text-light);
            z-index: 2;
            padding: 2rem;
            position: relative;
        }

        .tq-featured-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .tq-featured-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: var(--tq-accent-color);
            transition: width 0.8s ease;
        }

        .tq-featured-card:hover .tq-featured-title::after {
            width: 100%;
        }

        .tq-featured-subtitle {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.8;
            transform: translateY(20px);
            transition: all 0.6s ease 0.3s;
        }

        .tq-featured-card:hover .tq-featured-subtitle {
            transform: translateY(0);
            opacity: 1;
        }

        .tq-featured-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://i.pinimg.com/1200x/85/57/52/8557525ada0e166838a1eb82138536ab.jpg') center/cover no-repeat;
            opacity: 0.3;
            transition: all 1.2s ease;
            transform: scale(1);
        }

        .tq-featured-card:hover .tq-featured-bg {
            transform: scale(1.1);
            opacity: 0.4;
        }

        /* New Floating Elements */
        .tq-floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .tq-floating-element {
            position: absolute;
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .tq-floating-element:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .tq-floating-element:nth-child(2) {
            width: 120px;
            height: 120px;
            top: 60%;
            right: 10%;
            animation-delay: 2s;
        }

        .tq-floating-element:nth-child(3) {
            width: 60px;
            height: 60px;
            bottom: 20%;
            left: 20%;
            animation-delay: 4s;
        }

        /* Enhanced Button */
        .tq-featured-btn {
            position: relative;
            overflow: hidden;
            transform: translateY(30px);
            opacity: 0;
            transition: all 0.6s ease 0.6s;
        }

        .tq-featured-card:hover .tq-featured-btn {
            transform: translateY(0);
            opacity: 1;
        }

        .tq-featured-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.8s ease;
        }

        .tq-featured-btn:hover::before {
            left: 100%;
        }

        /* Particle Effect */
        .tq-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .tq-particle {
            position: absolute;
            background: var(--tq-accent-color);
            border-radius: 50%;
            opacity: 0;
        }

        /* Glow Effect */
        .tq-glow-effect {
            position: absolute;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, rgba(212, 175, 55, 0) 70%);
            border-radius: 50%;
            filter: blur(20px);
            animation: glowPulse 4s ease-in-out infinite;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 1;
        }

        /* ===========================
           RESPONSIVE STYLES
           =========================== */
        @media (max-width: 992px) {
            .tq-nav-links {
                display: none;
            }

            .tq-hero-title {
                font-size: 2.5rem;
            }

            .tq-modern-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .tq-hero-title {
                font-size: 2rem;
            }

            .tq-section-title {
                font-size: 2rem;
            }

            .tq-modern-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .tq-featured-title {
                font-size: 2rem;
            }

            .tq-featured-card {
                height: 400px;
            }

            .tq-floating-element {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .tq-modern-category-section {
                padding: 3rem 0;
            }

            .tq-featured-collection {
                padding: 3rem 0;
            }

            .tq-hero-cta {
                flex-direction: column;
                gap: 0.5rem;
            }

            .tq-btn-modern {
                width: 100%;
                justify-content: center;
            }

            .tq-featured-title {
                font-size: 1.8rem;
            }

            .tq-featured-subtitle {
                font-size: 1rem;
            }
        }

        /* ===========================
           ANIMATIONS
           =========================== */
        @keyframes tq-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(180deg);
            }
        }

        @keyframes glowPulse {
            0%, 100% {
                opacity: 0.3;
                transform: translate(-50%, -50%) scale(1);
            }
            50% {
                opacity: 0.6;
                transform: translate(-50%, -50%) scale(1.2);
            }
        }

        @keyframes sparkle {
            0% {
                transform: scale(0) rotate(0deg);
                opacity: 0;
            }
            50% {
                opacity: 1;
            }
            100% {
                transform: scale(1) rotate(360deg);
                opacity: 0;
            }
        }

        .tq-fade-in-up {
            animation: tq-fadeInUp 0.6s ease forwards;
        }

        .tq-stagger-animation > * {
            opacity: 0;
            animation: tq-fadeInUp 0.6s ease forwards;
        }

        .tq-stagger-animation > *:nth-child(1) { animation-delay: 0.1s; }
        .tq-stagger-animation > *:nth-child(2) { animation-delay: 0.2s; }
        .tq-stagger-animation > *:nth-child(3) { animation-delay: 0.3s; }
        .tq-stagger-animation > *:nth-child(4) { animation-delay: 0.4s; }
        .tq-stagger-animation > *:nth-child(5) { animation-delay: 0.5s; }
        .tq-stagger-animation > *:nth-child(6) { animation-delay: 0.6s; }
        .tq-stagger-animation > *:nth-child(7) { animation-delay: 0.7s; }

        .mega-title-1{
            color: var(--light-gold); 
            font-family: 'Cinzel', serif;
            font-weight: 800; 
            font-size: 18px;
        }
        
        /* =================================
        === PREMIUM JEWELRY FOOTER       ===
        ================================= */

        .premium-footer {
            background: linear-gradient(to bottom, var(--dark-bg), #0f0f0f);
            color: var(--light-text);
            position: relative;
            overflow: hidden;
        }

        .footer-top {
            padding: 60px 0 40px;
            position: relative;
        }

        /* Decorative elements */
        .footer-top::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(to right, transparent, var(--primary-gold), transparent);
        }

        .footer-top::after {
            content: "";
            position: absolute;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 2px;
            background-color: var(--primary-gold);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 40px;
        }

        .footer-col h3 {
            font-family: var(--font-heading);
            font-size: 22px;
            font-weight: 600;
            color: var(--primary-gold);
            margin-bottom: 25px;
            position: relative;
            display: inline-block;
        }

        .footer-col h3::after {
            content: "";
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 1px;
            background-color: var(--primary-gold);
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-col ul li {
            margin-bottom: 12px;
            transition: transform 0.3s ease;
        }

        .footer-col ul li:hover {
            transform: translateX(5px);
        }

        .footer-col ul li a {
            color: var(--medium-text);
            text-decoration: none;
            font-size: 15px;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
        }

        .footer-col ul li a i {
            margin-right: 10px;
            font-size: 12px;
            color: var(--primary-gold);
        }

        .footer-col ul li a:hover {
            color: var(--primary-gold);
        }

        .footer-col p {
            color: var(--medium-text);
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        /* --- Logo and Description --- */
        .footer-brand {
            margin-bottom: 25px;
        }

        .footer-logo {
            font-family: var(--font-heading);
            font-size: 42px;
            font-weight: 700;
            color: var(--primary-gold);
            margin-bottom: 15px;
            letter-spacing: 2px;
        }

        .footer-tagline {
            font-style: italic;
            color: var(--medium-text);
            font-size: 16px;
            margin-bottom: 25px;
        }

        /* --- Newsletter Subscription --- */
        .newsletter-form {
            display: flex;
            margin-top: 20px;
        }

        .newsletter-input {
            flex: 1;
            padding: 12px 15px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: var(--light-text);
            font-family: var(--font-body);
            border-radius: 4px 0 0 4px;
            outline: none;
            transition: all 0.3s ease;
        }

        .newsletter-input:focus {
            background: rgba(255, 255, 255, 0.15);
            border-color: var(--primary-gold);
        }

        .newsletter-btn {
            padding: 0 20px;
            background: var(--primary-gold);
            color: var(--dark-bg);
            border: none;
            border-radius: 0 4px 4px 0;
            font-family: var(--font-body);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-btn:hover {
            background: #e6c158;
        }

        /* --- Contact Info --- */
        .contact-info {
            margin-top: 20px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }

        .contact-icon {
            color: var(--primary-gold);
            margin-right: 12px;
            font-size: 16px;
            margin-top: 2px;
        }

        .contact-details {
            color: var(--medium-text);
            font-size: 15px;
        }

        /* --- Social Media --- */
        .social-media {
            margin-top: 25px;
        }

        .social-title {
            font-size: 16px;
            color: var(--medium-text);
            margin-bottom: 15px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            color: var(--light-text);
            border-radius: 50%;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background: var(--primary-gold);
            color: var(--dark-bg);
            transform: translateY(-3px);
        }

        /* --- Footer Middle --- */
        .footer-middle {
            padding: 30px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .payment-methods {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .payment-title {
            font-size: 15px;
            color: var(--medium-text);
            margin-right: 10px;
        }

        .payment-icons {
            display: flex;
            gap: 10px;
        }

        .payment-icons i {
            font-size: 28px;
            color: var(--medium-text);
            transition: color 0.3s ease;
        }

        .payment-icons i:hover {
            color: var(--primary-gold);
        }

        .security-badges {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .security-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--medium-text);
            font-size: 14px;
        }

        .security-icon {
            color: var(--primary-gold);
            font-size: 18px;
        }

        /* --- Footer Bottom --- */
        .footer-bottom {
            padding: 25px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .copyright {
            font-size: 14px;
            color: var(--dark-text);
        }

        .footer-links {
            display: flex;
            gap: 25px;
        }

        .footer-links a {
            color: var(--dark-text);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary-gold);
        }

        .back-to-top {
            background: var(--primary-gold);
            color: var(--dark-bg);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .back-to-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
        }

        /* --- Responsive Design --- */
        @media (max-width: 1100px) {
            .footer-grid {
                grid-template-columns: 1.2fr 1fr 1fr;
                gap: 30px;
            }
            
            .footer-col:nth-child(4) {
                grid-column: 1 / -1;
                margin-top: 20px;
            }
            
            .footer-col:nth-child(4) .footer-grid-inner {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .footer-col:nth-child(4) {
                grid-column: auto;
                margin-top: 0;
            }
            
            .footer-col:nth-child(4) .footer-grid-inner {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .footer-middle {
                flex-direction: column;
                gap: 25px;
                text-align: center;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
            
            .footer-links {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .newsletter-input {
                border-radius: 4px;
                margin-bottom: 10px;
            }
            
            .newsletter-btn {
                border-radius: 4px;
                padding: 12px;
            }
        }

        @media (max-width: 480px) {
            .footer-top {
                padding: 40px 0 30px;
            }
            
            .footer-logo {
                font-size: 36px;
            }
            
            .social-icons {
                justify-content: center;
            }
            
            .payment-methods {
                flex-direction: column;
                gap: 15px;
            }
            
            .security-badges {
                flex-direction: column;
                gap: 15px;
            }
        }

