:root {
      /* Premium Color Palette */
      --royal-gold: #D4AF37;
      --deep-burgundy: #800020;
      --rich-navy: #1a1f3a;
      --ivory: #FFFFF0;
      --warm-cream: #FFF8E7;
      --soft-beige: #F5F1E8;
      --bronze: #CD7F32;
      --copper: #B87333;
      --charcoal: #2d2d2d;
      --muted-gold: #C9A961;
      
      /* Typography */
      --font-heading: 'Cormorant Garamond', serif;
      --font-body: 'Montserrat', sans-serif;
      
      /* Spacing */
      --max-width: 1440px;
      --section-padding: 80px 0;
      --card-radius: 16px;
      
      /* Effects */
      --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.08);
      --shadow-lifted: 0 16px 48px rgba(0, 0, 0, 0.12);
      --gradient-royal: linear-gradient(135deg, #D4AF37 0%, #C9A961 100%);
      --gradient-overlay: linear-gradient(180deg, rgba(26, 31, 58, 0) 0%, rgba(26, 31, 58, 0.85) 100%);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-body);
      background: var(--ivory);
      color: var(--charcoal);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
    }

    /* Typography */
    h1, h2, h3, h4, h5, h6 {
      font-family: var(--font-heading);
      font-weight: 600;
      line-height: 1.2;
    }

    /* Container */
    .container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ========== HEADER ========== */
    header {
      position: sticky;
      top: 0;
      background: rgba(255, 255, 240, 0.98);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(212, 175, 55, 0.15);
      z-index: 1000;
      box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 88px;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 32px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 16px;
      cursor: pointer;
    }

    .logo-icon {
      width: 56px;
      height: 56px;
      background: var(--gradient-royal);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-heading);
      font-size: 28px;
      font-weight: 700;
      color: white;
      box-shadow: var(--shadow-soft);
      transition: transform 0.3s ease;
    }

    .logo-icon:hover {
      transform: scale(1.05);
    }

    .brand-text {
      display: flex;
      flex-direction: column;
    }

    .brand-text h1 {
      font-size: 22px;
      color: var(--rich-navy);
      font-weight: 700;
      letter-spacing: -0.5px;
    }

    .brand-text p {
      font-size: 11px;
      color: var(--muted-gold);
      text-transform: uppercase;
      letter-spacing: 1.5px;
      font-weight: 500;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .nav-links a {
      font-size: 14px;
      font-weight: 500;
      color: var(--charcoal);
      text-decoration: none;
      position: relative;
      transition: color 0.3s ease;
      letter-spacing: 0.3px;
    }

    .nav-links a:hover {
      color: var(--royal-gold);
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--gradient-royal);
      transition: width 0.3s ease;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .icon-btn {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      border: 1px solid rgba(212, 175, 55, 0.2);
      background: transparent;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      font-size: 18px;
    }

    .icon-btn:hover {
      background: var(--warm-cream);
      border-color: var(--royal-gold);
      transform: translateY(-2px);
    }

    @media (max-width: 768px) {
      .nav {
        height: 72px;
        padding: 0 20px;
      }
      
      .brand-text h1 {
        font-size: 18px;
      }
      
      .brand-text p {
        font-size: 9px;
      }
      
      .nav-links {
        gap: 16px;
      }
      
      .nav-links a {
        font-size: 13px;
      }
    }

    /* ========== HERO SECTION ========== */
    .hero-section {
      position: relative;
      height: 85vh;
      min-height: 600px;
      max-height: 900px;
      margin-bottom: 80px;
      overflow: hidden;
    }

    .hero-slide {
      position: absolute;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 1.2s ease-in-out;
    }

    .hero-slide.active {
      opacity: 1;
    }

    .hero-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      /* background: var(--gradient-overlay); */
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 0 24px;
    }

    .hero-content {
      max-width: 900px;
      color: white;
      animation: fadeInUp 1s ease-out;
    }

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

    .hero-badge {
      display: inline-block;
      padding: 8px 20px;
      background: rgba(212, 175, 55, 0.25);
      border: 1px solid rgba(212, 175, 55, 0.5);
      border-radius: 50px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 24px;
      backdrop-filter: blur(10px);
    }

    .hero-title {
      font-size: 72px;
      font-weight: 700;
      margin-bottom: 20px;
      line-height: 1.1;
      text-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    }

    .hero-subtitle {
      font-size: 20px;
      font-weight: 300;
      margin-bottom: 40px;
      opacity: 0.95;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .hero-cta {
      display: inline-flex;
      gap: 16px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .btn {
      padding: 16px 36px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 15px;
      cursor: pointer;
      transition: all 0.3s ease;
      border: none;
      letter-spacing: 0.5px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
    }

    .btn-primary {
      background: var(--gradient-royal);
      color: white;
      box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 32px rgba(212, 175, 55, 0.4);
    }

    .btn-secondary {
      background: rgba(255, 255, 255, 0.15);
      color: white;
      border: 2px solid rgba(255, 255, 255, 0.5);
      backdrop-filter: blur(10px);
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.25);
      border-color: white;
    }

    .hero-nav-dots {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 12px;
      z-index: 10;
    }

    .hero-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.4);
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .hero-dot.active {
      width: 36px;
      border-radius: 6px;
      background: white;
    }

    @media (max-width: 768px) {
      .hero-section {
        height: 85vh;
        min-height: 500px;
      }
      
      .hero-title {
        font-size: 42px;
      }
      
      .hero-subtitle {
        font-size: 16px;
      }
      
      .btn {
        padding: 14px 28px;
        font-size: 14px;
      }
    }

    /* ========== SECTION HEADERS ========== */
    .section-header {
      text-align: center;
      margin-bottom: 64px;
    }

    .section-subtitle {
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 2.5px;
      color: var(--royal-gold);
      font-weight: 600;
      margin-bottom: 12px;
    }

    .section-title {
      font-size: 48px;
      color: var(--rich-navy);
      font-weight: 700;
      margin-bottom: 16px;
      position: relative;
      display: inline-block;
    }

    .section-title::after {
      content: '';
      position: absolute;
      bottom: -12px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: var(--gradient-royal);
      border-radius: 2px;
    }

    .section-description {
      font-size: 16px;
      color: var(--charcoal);
      opacity: 0.7;
      max-width: 600px;
      margin: 24px auto 0;
    }

    @media (max-width: 768px) {
      .section-header {
        margin-bottom: 40px;
      }
      
      .section-title {
        font-size: 32px;
      }
      
      .section-subtitle {
        font-size: 12px;
      }
    }

    /* ========== BESTSELLERS CAROUSEL ========== */
    .bestsellers-section {
      padding: var(--section-padding);
      background: white;
      position: relative;
    }

    .carousel-wrapper {
      position: relative;
      padding: 40px 0;
    }

    .carousel-container {
      overflow: hidden;
      border-radius: 24px;
      position: relative;
    }

    .carousel-track {
      display: flex;
      transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
      padding: 0 20px;
    }

    .carousel-item {
      flex: 0 0 calc(33.333% - 24px);
      margin: 0 12px;
      background: white;
      border-radius: var(--card-radius);
      overflow: hidden;
      box-shadow: var(--shadow-soft);
      transition: all 0.4s ease;
      cursor: pointer;
      position: relative;
    }

    .carousel-item:hover {
      transform: translateY(-12px);
      box-shadow: var(--shadow-lifted);
    }

    .carousel-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      border: 2px solid transparent;
      border-radius: var(--card-radius);
      transition: border-color 0.3s ease;
      pointer-events: none;
    }

    .carousel-item:hover::before {
      border-color: var(--royal-gold);
    }

    .carousel-media {
      height: 380px;
      background-size: cover;
      background-position: center;
      position: relative;
      overflow: hidden;
    }

    .carousel-media::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 100px;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
    }

    .wishlist-btn {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.95);
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 20px;
      transition: all 0.3s ease;
      z-index: 5;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .wishlist-btn:hover {
      transform: scale(1.1);
      background: white;
    }

    .wishlist-btn.active {
      color: #ef4444;
      background: #fee;
    }

    .carousel-badge {
      position: absolute;
      top: 16px;
      left: 16px;
      padding: 6px 14px;
      background: var(--gradient-royal);
      color: white;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      border-radius: 20px;
      z-index: 5;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .carousel-body {
      padding: 24px;
    }

    .carousel-title {
      font-size: 18px;
      font-weight: 600;
      color: var(--rich-navy);
      margin-bottom: 8px;
      line-height: 1.4;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .carousel-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 16px;
    }

    .carousel-price {
      font-size: 24px;
      font-weight: 700;
      color: var(--royal-gold);
      font-family: var(--font-heading);
    }

    .carousel-rating {
      display: flex;
      align-items: center;
      gap: 4px;
      font-size: 14px;
      color: #fbbf24;
    }

    .carousel-description {
      font-size: 13px;
      color: var(--charcoal);
      opacity: 0.7;
      line-height: 1.6;
      margin-bottom: 16px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .carousel-footer {
      display: flex;
      gap: 8px;
    }

    .btn-small {
      padding: 10px 20px;
      font-size: 13px;
      border-radius: 8px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      flex: 1;
      text-align: center;
    }

    .btn-outline {
      background: transparent;
      border: 1.5px solid var(--royal-gold);
      color: var(--royal-gold);
    }

    .btn-outline:hover {
      background: var(--royal-gold);
      color: white;
    }

    .carousel-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: white;
      border: none;
      box-shadow: var(--shadow-soft);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 100;
      font-size: 24px;
      color: var(--royal-gold);
      transition: all 0.3s ease;
    }

    .carousel-nav:hover {
      background: var(--royal-gold);
      color: white;
      transform: translateY(-50%) scale(1.1);
    }

    .carousel-nav.prev {
      left: -28px;
    }

    .carousel-nav.next {
      right: -28px;
    }

    .carousel-nav:disabled {
      opacity: 0.3;
      cursor: not-allowed;
    }

    .carousel-nav:disabled:hover {
      background: white;
      color: var(--royal-gold);
      transform: translateY(-50%);
    }

    @media (max-width: 1024px) {
      .carousel-item {
        flex: 0 0 calc(50% - 24px);
      }
    }

    @media (max-width: 768px) {
      .carousel-item {
        flex: 0 0 calc(100% - 24px);
      }
      
      .carousel-nav {
        width: 48px;
        height: 48px;
        font-size: 20px;
      }
      
      .carousel-nav.prev {
        left: 8px;
      }
      
      .carousel-nav.next {
        right: 8px;
      }
    }

    /* ========== CATEGORIES GRID ========== */
    .categories-section {
      padding: var(--section-padding);
      background: var(--soft-beige);
    }

    .categories-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 24px;
    }

    .category-card {
      background: white;
      border-radius: var(--card-radius);
      overflow: hidden;
      box-shadow: var(--shadow-soft);
      transition: all 0.4s ease;
      cursor: pointer;
      position: relative;
    }

    .category-card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: var(--shadow-lifted);
    }

    .category-image {
      height: 240px;
      background-size: cover;
      background-position: center;
      position: relative;
    }

    .category-image::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 80px;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    }

    .category-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 20px;
      z-index: 1;
      color: white;
    }

    .category-name {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 4px;
    }

    .category-subtitle {
      font-size: 13px;
      opacity: 0.9;
    }

    .category-icon {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.95);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      z-index: 2;
    }

    @media (max-width: 1200px) {
      .categories-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 768px) {
      .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
      }
      
      .category-image {
        height: 180px;
      }
    }

    /* ========== TAG SECTIONS ========== */
    .tag-section {
      padding: 60px 0;
      background: white;
      border-top: 1px solid rgba(212, 175, 55, 0.1);
    }

    .tag-section:nth-child(even) {
      background: var(--warm-cream);
    }

    .tag-carousel {
      position: relative;
      overflow: hidden;
      padding: 20px 0;
    }

    .tag-track {
      display: flex;
      transition: transform 0.5s ease;
      padding: 0 12px;
    }

    .tag-item {
      flex: 0 0 calc(25% - 24px);
      margin: 0 12px;
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .tag-item:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    }

    .tag-media {
      height: 280px;
      background-size: cover;
      background-position: center;
      position: relative;
    }

    .tag-body {
      padding: 16px;
    }

    .tag-title {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 8px;
      color: var(--rich-navy);
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .tag-price {
      font-size: 20px;
      font-weight: 700;
      color: var(--royal-gold);
      font-family: var(--font-heading);
    }

    .tag-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: white;
      border: none;
      box-shadow: var(--shadow-soft);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 1000000;
      font-size: 20px;
      color: var(--royal-gold);
      transition: all 0.3s ease;
    }

    .tag-nav:hover {
      background: var(--royal-gold);
      color: white;
    }

    .tag-nav.prev {
      left: 0px;
    }

    .tag-nav.next {
      right: 0px;
    }

    .tag-nav:disabled {
      opacity: 0.3;
      cursor: not-allowed;
    }

    @media (max-width: 1200px) {
      .tag-item {
        flex: 0 0 calc(33.333% - 24px);
      }
    }

    @media (max-width: 768px) {
      .tag-item {
        flex: 0 0 calc(50% - 24px);
      }
      
      .tag-nav {
        width: 40px;
        height: 40px;
      }
      
      .tag-nav.prev {
        left: 8px;
      }
      
      .tag-nav.next {
        right: 8px;
      }
    }

    @media (max-width: 480px) {
      .tag-item {
        flex: 0 0 calc(100% - 24px);
      }
    }

    /* ========== TESTIMONIALS ========== */
    .testimonials-section {
      padding: var(--section-padding);
      background: linear-gradient(135deg, var(--royal-gold) 0%, var(--bronze) 100%);
      color: white;
      position: relative;
      overflow: hidden;
    }

    .testimonials-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></svg>') repeat;
      opacity: 0.3;
    }

    .testimonial-card {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      padding: 48px;
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .quote-icon {
      font-size: 64px;
      opacity: 0.3;
      line-height: 1;
      margin-bottom: 24px;
    }

    .testimonial-text {
      font-size: 24px;
      font-style: italic;
      line-height: 1.7;
      margin-bottom: 32px;
      font-family: var(--font-heading);
    }

    .testimonial-author {
      font-size: 16px;
      font-weight: 600;
      opacity: 0.9;
    }

    .testimonial-nav {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-top: 32px;
    }

    .testimonial-nav button {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.2);
      border: 1px solid rgba(255, 255, 255, 0.3);
      color: white;
      font-size: 20px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .testimonial-nav button:hover {
      background: rgba(255, 255, 255, 0.3);
      transform: scale(1.1);
    }

    @media (max-width: 768px) {
      .testimonial-card {
        padding: 32px 24px;
      }
      
      .testimonial-text {
        font-size: 18px;
      }
    }

    /* ========== CTA SECTION ========== */
    .cta-section {
      padding: 100px 0;
      background: var(--rich-navy);
      color: white;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
      animation: rotate 30s linear infinite;
    }

    @keyframes rotate {
      from {
        transform: rotate(0deg);
      }
      to {
        transform: rotate(360deg);
      }
    }

    .cta-content {
      position: relative;
      z-index: 1;
      max-width: 700px;
      margin: 0 auto;
    }

    .cta-title {
      font-size: 52px;
      margin-bottom: 24px;
      line-height: 1.2;
    }

    .cta-description {
      font-size: 18px;
      opacity: 0.9;
      margin-bottom: 40px;
    }

    @media (max-width: 768px) {
      .cta-section {
        padding: 60px 0;
      }
      
      .cta-title {
        font-size: 36px;
      }
    }

    /* ========== LOADING PLACEHOLDER ========== */
    .loading-placeholder {
      display: flex;
      gap: 24px;
      padding: 20px;
    }

    .placeholder-card {
      flex: 0 0 calc(25% - 24px);
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: var(--shadow-soft);
    }

    .placeholder-media {
      height: 280px;
      background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
      background-size: 200% 100%;
      animation: shimmer 1.5s infinite;
    }

    .placeholder-body {
      padding: 16px;
    }

    .placeholder-line {
      height: 16px;
      background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
      background-size: 200% 100%;
      animation: shimmer 1.5s infinite;
      border-radius: 4px;
      margin-bottom: 12px;
    }

    .placeholder-line.short {
      width: 60%;
    }

    @keyframes shimmer {
      0% {
        background-position: 200% 0;
      }
      100% {
        background-position: -200% 0;
      }
    }

    @media (max-width: 1200px) {
      .placeholder-card {
        flex: 0 0 calc(33.333% - 24px);
      }
    }

    @media (max-width: 768px) {
      .placeholder-card {
        flex: 0 0 calc(50% - 24px);
      }
    }

    @media (max-width: 480px) {
      .placeholder-card {
        flex: 0 0 calc(100% - 24px);
      }
    }

    /* ========== FOOTER ========== */
    footer {
      background: var(--rich-navy);
      color: rgba(255, 255, 255, 0.8);
      padding: 60px 0 32px;
    }

    .footer-content {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }

    .footer-brand {
      max-width: 350px;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
    }

    .footer-logo-icon {
      width: 48px;
      height: 48px;
      background: var(--gradient-royal);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      font-weight: 700;
      color: white;
    }

    .footer-logo-text {
      font-size: 20px;
      font-family: var(--font-heading);
      font-weight: 700;
      color: white;
    }

    .footer-description {
      font-size: 14px;
      line-height: 1.7;
      opacity: 0.8;
      margin-bottom: 20px;
    }

    .footer-social {
      display: flex;
      gap: 12px;
    }

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

    .social-icon:hover {
      background: var(--royal-gold);
      transform: translateY(-3px);
    }

    .footer-column h4 {
      font-size: 16px;
      font-weight: 600;
      color: white;
      margin-bottom: 20px;
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 12px;
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      font-size: 14px;
      transition: all 0.3s ease;
      display: inline-block;
    }

    .footer-links a:hover {
      color: var(--royal-gold);
      transform: translateX(4px);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 32px;
      text-align: center;
      font-size: 14px;
      opacity: 0.7;
    }

    @media (max-width: 1024px) {
      .footer-content {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 640px) {
      .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
      }
    }

    /* ========== MOBILE UTILITIES ========== */
    @media (max-width: 768px) {
      .hide-mobile {
        display: none !important;
      }
    }

    @media (min-width: 769px) {
      .show-mobile {
        display: none !important;
      }
    }
    /* In styles_premium.css - Update the categories grid section */

/* ========== CATEGORIES GRID ========== */
.categories-section {
  padding: var(--section-padding);
  background: var(--soft-beige);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.category-card {
  background: white;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
}

.category-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lifted);
}

.category-image {
  height: 240px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.category-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 1;
  color: white;
}

.category-name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}

.category-subtitle {
  font-size: 13px;
  opacity: 0.9;
}

.category-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  z-index: 2;
}

@media (max-width: 768px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .category-image {
    height: 180px;
  }
}
/* Make sure only active slide content is interactive */
.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  pointer-events: none; /* THIS IS KEY - disables interaction on hidden slides */
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto; /* Re-enable interaction on active slide */
}
/* ========== HERO SECTION ========== */
.hero-section {
  position: relative;
  height: 85vh;
  min-height: 600px;
  max-height: 900px;
  margin-bottom: 80px;
  overflow: hidden;
  cursor: grab; /* Show grab cursor by default */
}

.hero-section:active {
  cursor: grabbing; /* Show grabbing when clicking */
}

.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  pointer-events: none; /* CRITICAL: Disables all interaction on hidden slides */
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto; /* CRITICAL: Re-enables interaction on visible slide */
  z-index: 1; /* Ensure active slide is on top */
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none; /* Image doesn't need to be clickable */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: var(--gradient-overlay); */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
  pointer-events: none; /* Overlay doesn't need interaction */
}

.hero-content {
  max-width: 900px;
  color: white;
  animation: fadeInUp 1s ease-out;
  pointer-events: auto; /* But content DOES need interaction for buttons */
  position: relative;
  z-index: 10; /* Ensure content is above everything */
}

/* Make sure buttons are always clickable */
.hero-content .btn {
  pointer-events: auto;
  position: relative;
  z-index: 20; /* Buttons get highest z-index */
  cursor: pointer !important; /* Force pointer cursor on buttons */
}

.hero-content .btn:hover {
  cursor: pointer !important;
}

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

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(212, 175, 55, 0.25);
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: 72px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 40px;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer !important; /* Force pointer */
  transition: all 0.3s ease;
  border: none;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  position: relative;
  z-index: 100; /* Very high z-index */
}

.btn-primary {
  background: var(--gradient-royal);
  color: white;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: white;
}

.hero-nav-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
  pointer-events: auto; /* Dots need to be clickable */
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
}

.hero-dot.active {
  width: 36px;
  border-radius: 6px;
  background: white;
}

@media (max-width: 768px) {
  .hero-section {
    height: 85vh;
    min-height: 500px;
  }
  
  .hero-title {
    font-size: 42px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .btn {
    padding: 14px 28px;
    font-size: 14px;
  }
}