    /* ============================
       Design Tokens (Theme)
       ============================ */
    :root {
      --bg: #F3EDE4;           /* soft beige */
      --bg-2: #EFE7DB;         /* slightly deeper beige */
      --text: #111111;         /* near-black text */
      --muted: #6B6B6B;        /* muted text */
      --line: rgba(17,17,17,.08); /* subtle hairline */
      --accent: #C2A66B;       /* gentle gold accent (use sparingly) */

      --container: 1200px;
      --radius: 12px;
      --shadow-soft: 0 8px 24px rgba(0,0,0,.06);
      --transition: 220ms cubic-bezier(.2,.8,.2,1);
    }




    /* Loader container */
#loader {
  position: fixed;
  inset: 0;
  background: #f9f6f1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity .6s ease, visibility .6s ease;
}

/* Ring */
.loader-ring {
  position: relative;
  width: 90px;
  height: 90px;
  border: 6px solid transparent;
  border-top: 6px solid #c6a76f;
  border-right: 6px solid #e4cda1;
  border-radius: 50%;
  animation: spin 1.6s linear infinite;
  box-shadow: 0 0 15px rgba(198,167,111,0.5), 0 0 25px rgba(228,205,161,0.3);
  margin-bottom: 20px;
}

/* Sparkle/glint effect */
.loader-ring .sparkle {
  position: absolute;
  width: 12px;
  height: 12px;
  background: radial-gradient(circle, #fff 0%, #c6a76f 80%);
  border-radius: 50%;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  animation: sparkleMove 1.6s linear infinite;
}

/* Brand text */
.loader-text {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #2a2a2a;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #c6a76f, #e4cda1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShimmer 2.5s ease-in-out infinite;
}

/* Animations */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes sparkleMove {
  0% { transform: translateX(-50%) rotate(0deg); }
  100% { transform: translateX(-50%) rotate(360deg); }
}

@keyframes textShimmer {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* Hide loader */
#loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}













.fab-container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
}

.fab {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: none;
  background: #cab078; /* premium beige */
  color: white;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .4s ease, background .3s;
}
.fab:hover { transform: scale(1.12); }

/* Main Button Animation */
.main-fab {
  position: relative;
  z-index: 2;
  transition: transform .4s ease;
}
.fab-container.active .main-fab {
  transform: rotate(45deg); /* + becomes × */
  background: #b89a5c;
}

/* Options hidden */
.fab-options {
  position: absolute;
  bottom: 0;
  right: 0;
  pointer-events: none;
}
.fab-options .fab {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 45px;
  height: 45px;
  font-size: 0;
  background: #fff;
  color: #333;
  box-shadow: 0 5px 12px rgba(0,0,0,0.15);
  opacity: 0;
  transform: scale(0.5) translate(0,0);
  transition: all 0.4s cubic-bezier(.68,-0.55,.27,1.55);
}
.fab-options img, .fab-options svg {
  width: 20px;
  height: 20px;
}

/* Animation when active */
.fab-container.active .fab-options {
  pointer-events: auto;
}
.fab-container.active .fab-options .whatsapp {
  transform: scale(1) translate(-70px,-20px);
  opacity: 1;
  transition-delay: 0.05s;
}
.fab-container.active .fab-options .email {
  transform: scale(1) translate(-50px,-80px);
  opacity: 1;
  transition-delay: 0.15s;
}
.fab-container.active .fab-options .phone {
  transform: scale(1) translate(0,-110px);
  opacity: 1;
  transition-delay: 0.25s;
}





    /* ============================
       Base / Reset
       ============================ */
    * { box-sizing: border-box; }
    html:focus-within { scroll-behavior: smooth; }
    html, body { height: 100%; }
    body {
      margin: 0;
      font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
      font-size: 16px;
      line-height: 1.5;
      color: var(--text);
      background: linear-gradient(180deg, var(--bg), var(--bg-2));
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    img, picture, svg, video { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

    .container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
    .visually-hidden { position: absolute; width: 1px; height: 1px; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0; }

    /* Topbar */
    .topbar { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; font-size: .95rem; color: var(--muted); border-bottom: 1px solid var(--line); background: rgba(243,237,228,.6); }
    .topbar .left, .topbar .right { display: flex; gap: 14px; align-items: center; }
    .topbar .item { display:flex; gap:8px; align-items:center; }
    .icon-sm { width:18px; height:18px; opacity:.85; }

 /* Header / Navbar */
.site-header { 
  position: sticky; 
  top: 0; 
  z-index: 60; 
  backdrop-filter: saturate(140%) blur(6px); 
  background: rgba(243, 237, 228, .85); 
}

.nav { 
  display: grid; 
  grid-template-columns: auto 1fr auto; 
  align-items: center; 
  gap: 12px; 
  height: 72px; 
  border-bottom: 1px solid var(--line); 
}

.nav__brand { 
  display: flex; 
  align-items: center; 
  gap: .6rem; 
  font-weight: 600; 
  letter-spacing: .04em; 
}

.brand-mark { 
  width: 32px; 
  height: 32px; 
  border: 1px solid var(--line); 
  border-radius: 50%; 
  display: grid; 
  place-items: center; 
}

/* Center nav: dropdowns */
.nav-center { 
  display: flex; 
  justify-content: center; 
  gap: 18px; 
  align-items: center; 
}

.nav-center .nav-item { 
  position: relative; 
}

.nav-center button { 
  background: none; 
  border: 0; 
  padding: 8px 6px; 
  font-weight: 500; 
}

/* Dropdown container */
.dropdown {
  position: relative;
}

/* Dropdown button */
.dropbtn {
  text-decoration: none;
  padding: 10px 16px;
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  color: #111;
  cursor: pointer;
  transition: color 0.3s ease;
}
.dropbtn:hover {
  color: #c9a76b; /* gold hover */
}

/* Dropdown menu */
.nav-center .dropdown-content {
  position: absolute;
  top: calc(100% + 8px);              /* just below the link */
  left: 50%;                          /* center horizontally */
  transform: translateX(-50%) scale(.98);
  min-width: 200px;
  background: #fff;
  border-radius: 8px;
  padding: 10px 0;
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
  border: 1px solid #eee;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform-origin: top;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1000;
}

/* Dropdown links */
.nav-center .dropdown-content a {
  display: block;
  padding: 12px 16px;
  text-decoration: none;
  font-size: 14px;
  color: #111;
  transition: background 0.3s ease, color 0.3s ease;
}
.nav-center .dropdown-content a:hover {
  background: #f7f7f7;
  color: #c9a76b;
}

/* Show on hover */
.dropdown:hover .dropdown-content,
.nav-center .dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) scale(1);
  pointer-events: auto;
}





    /* Right actions */
    .nav-actions { display:flex; gap:10px; margin-left: 80px; align-items:center; }
    .icon-btn { width:40px; height:40px; display:grid; place-items:center; border:1px solid var(--line); border-radius:50%; transition: transform var(--transition); background: transparent; }
    .icon-btn:hover { transform: translateY(-3px); }

    /* Search bar that fades down beneath navbar */
    .search-bar { max-width:700px; margin: 12px auto; opacity:0; transform:translateY(-8px); transition: opacity 260ms ease, transform 260ms ease; }
    .search-bar.active { opacity:1; transform:translateY(0); margin-bottom: 7px; }
    .search-field { display:flex; gap:8px; align-items:center; border:1px solid var(--line); padding:10px 12px; border-radius:999px; background:white; }
    .search-field input { border:0; outline:0; font-size:1rem; flex:1; }

    /* Drawer / Mobile menu */
    /* Drawer (fullscreen) */
  /* ===========================
   Drawer (fullscreen from top)
   =========================== */
.drawer {
  position: fixed;
  inset: 0;
  background: var(--bg, #f3ede4);
  z-index: 1200;
  transform: translateY(-100%);
  transition: transform .36s cubic-bezier(.2,.9,.2,1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.drawer[data-open="true"] { transform: translateY(0); }

/* ===========================
   Panels
   =========================== */
.drawer-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  background: var(--bg, #f3ede4);
  will-change: transform;
}

/* Main panel visible by default */
.drawer-panel.main {
  transform: translateX(0);
  transition: transform .32s ease;
}

/* Submenu panel (slides from right) */
.drawer-panel.submenu {
  transform: translateX(100%);
  transition: transform .32s ease;
  width: 100%;       /* default full width (mobile) */
  max-width: 100%;
}
.drawer-panel.submenu.show {
  transform: translateX(0);
}

/* Submenu header */
.drawer-panel.submenu .drawer-head {
  padding: 14px 16px;
  font-size: 0.95rem;
}

/* Submenu links */
#submenuLinks {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* ===========================
   Header inside drawer
   =========================== */
.drawer-head {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px;
  border-bottom:1px solid rgba(0,0,0,0.06);
  background: transparent;
}
.drawer-head .title { font-weight:700; font-size:1rem; }
.close-btn, .back-btn {
  background:none; border:0; font-size:1.05rem; cursor:pointer; padding:6px;
}

/* ===========================
   Nav links list
   =========================== */
.drawer-links {
  overflow:auto;
  -webkit-overflow-scrolling: touch;
  display:flex;
  flex-direction:column;
}
.link-row {
  padding:14px 16px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-bottom:1px solid rgba(0,0,0,0.04);
  font-weight:600;
  cursor:pointer;
  background:transparent;
}
.link-row:hover { background: rgba(0,0,0,0.03); }

/* ===========================
   Utilities (profile, wishlist, store, contact)
   =========================== */
.drawer-utilities {
  padding:14px 16px;
  border-top:1px solid rgba(0,0,0,0.06);
  display:flex;
  flex-direction:row;
  /* margin-left: 120px; */
  gap:10px;
}
.util-btn {
  display:flex;
  gap:12px;
  align-items:center;
  padding:10px 12px;
  border-radius:8px;
  cursor:pointer;
  font-weight:600;
  background: rgba(255,255,255,0.3);
}
.util-icon { width:20px; height:20px; display:inline-block; }

/* ===========================
   Submenu list items
   =========================== */
.submenu-list {
  display:flex;
  flex-direction:column;
}
.submenu-list a {
  padding:12px 16px;
  border-bottom:1px solid rgba(0,0,0,0.04);
  color:inherit;
  text-decoration:none;
}

/* ===========================
   Responsive adjustments
   =========================== */

/* Phones (<480px): full width */
@media (max-width: 480px) {
  .drawer-panel.submenu { width: 100%; }
}

/* Tablets (481px–900px): take 80% width from right */
@media (max-width: 900px) and (min-width: 481px) {
  .drawer-panel.submenu {
    width: 80%;
    left: auto;
    right: 0;
    border-left: 1px solid rgba(0,0,0,0.06);
  }
}

/* Larger screens: hide drawer completely */
@media (min-width: 901px) {
  .drawer { display:none; }
  .drawer-panel.submenu { display:none; }
}

    /* Country modal */
    .modal-backdrop { position:fixed; inset:0; background: rgba(0,0,0,.28); display:grid; place-items:center; opacity:0; pointer-events:none; transition: opacity 240ms ease; z-index:100; }
    .modal-backdrop.show { opacity:1; pointer-events:auto; }
    .modal { width: min(420px, 92%); background: white; border-radius:12px; padding:18px; transform: translateY(12px) scale(.99); opacity:0; transition: opacity 260ms ease, transform 260ms ease; box-shadow: var(--shadow-soft); }
    .modal-backdrop.show .modal { transform: translateY(0) scale(1); opacity:1; }
    .modal h3 { margin:0 0 10px; }
    .modal .row { display:flex; gap:10px; margin-bottom:12px; }
    .modal select { flex:1; padding:10px; border:1px solid var(--line); border-radius:8px; }
    .modal .actions { display:flex; justify-content:flex-end; gap:8px; }
    .btn-ghost { padding:8px 12px; border-radius:8px; border:1px solid var(--line); }
    .btn-primary { background:var(--accent); color:white; padding:8px 14px; border-radius:8px; }

    /* Responsive rules */
    @media (max-width: 900px) {
      .topbar { display:none; }
      .nav { grid-template-columns: auto 1fr auto; }
      .nav-center { display:none; }
      /* right icons: hide profile & wishlist on mobile, show cart */
      .icon-profile, .icon-wish { display:none; }
      .icon-cart { display:inline-grid; }
      /* mobile header minimal: logo left, search + cart right */
    }

    @media (min-width: 901px) {
      .drawer { display:none; }
      .mobile-only { display:none; }
    }

 




    /*/////////////// hero section ////////////*/


 .hero {
  position: relative;
  min-height: 90vh;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
  background: #f3ede4;
}

/* Slideshow container */
.hero-slideshow {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}

.hero-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: fadeSlideshow 12s infinite;
}

/* Staggered delays for each image */
.hero-slideshow img:nth-child(1) { animation-delay: 0s; }
.hero-slideshow img:nth-child(2) { animation-delay: 3s; }
.hero-slideshow img:nth-child(3) { animation-delay: 6s; }
.hero-slideshow img:nth-child(4) { animation-delay: 9s; }

/* Fade animation */
@keyframes fadeSlideshow {
  0%   { opacity: 0; }
  8%   { opacity: 1; }
  25%  { opacity: 1; }
  33%  { opacity: 0; }
  100% { opacity: 0; }
}

/* Overlay content */
.hero-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 90vh;
  padding: clamp(40px, 6vw, 100px);
  color: #111;
}

.hero-overlay h1 {
  font-size: clamp(1.8rem, 4vw + 1rem, 4rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-overlay p {
  font-size: clamp(0.9rem, 1vw + 0.6rem, 1.3rem);
  margin-bottom: 1.5rem;
  max-width: 600px;
}

/* Button */
.btn {
  display: inline-block;
  background: #111;
  color: #fff;
  padding: clamp(10px, 1.5vw, 14px) clamp(20px, 3vw, 32px);
  border-radius: 30px;
  font-weight: 500;
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.1rem);
  transition: background 0.3s, transform 0.2s;
}
.btn:hover { 
  background: #333; 
  transform: translateY(-2px); 
}

/* Responsiveness */
@media(max-width: 900px) {
  .hero-overlay {
    align-items: center;
    text-align: center;
    padding: 50px 6%;
  }
  .hero-overlay p { max-width: 90%; }
}

@media(max-width: 480px) {
  .hero {
    min-height: 75vh; /* reduce height for small phones */
  }
  .hero-overlay {
    padding: 40px 5%;
  }
  .btn {
    width: 100%;
    text-align: center;
  }
}
















      /* Section wrapper */
    .products-section {
      padding: 60px 6%;
      background: linear-gradient(180deg, var(--bg), #efe7db);
    }

    /* Section heading */
    .section-header {
      text-align: center;
      margin-bottom: 48px;
      position: relative;
    }

    .section-title {
      font-size: 2rem;
      font-weight: 700;
      color: var(--text);
      letter-spacing: 0.5px;
      position: relative;
      display: inline-block;
      padding: 0 14px;
    }

    .section-title::before,
    .section-title::after {
      content: "";
      position: absolute;
      top: 50%;
      width: 40px;
      height: 2px;
      background: var(--accent);
    }

    .section-title::before { left: -50px; }
    .section-title::after { right: -50px; }

    .section-subtitle {
      font-size: 1rem;
      color: var(--muted);
      margin-top: 8px;
    }

    .section-line {
      display: block;
      width: 80px;
      height: 3px;
      background: var(--accent);
      margin: 16px auto 0;
      border-radius: 2px;
    }

    /* Grid layout */
    .products {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 20px;
    }

    .product-card {
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-soft);
      border-radius: 0;
      background: #000;
      min-height: 320px;
      display: block;
    }

    .card-img { position: relative; height: 100%; width: 100%; cursor: pointer; }
    .card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .65s var(--transition), filter .45s var(--transition);
      will-change: transform;
    }

    /* Zoom on hover */
    .product-card:hover img,
    .product-card:focus-within img {
      transform: scale(1.06);
    }

    /* Info on image bottom */
    .card-info {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 18px 16px;
      background: linear-gradient(0deg, rgba(243,237,228,0.95) 0%, rgba(243,237,228,0.35) 40%, rgba(243,237,228,0.02) 100%);
      color: var(--text);
      backdrop-filter: blur(2px);
      transition: transform .45s var(--transition), opacity .45s var(--transition);
    }

    .card-info .title { font-weight: 600; font-size: 1rem; line-height: 1.1; }
    .card-info .meta { font-size: 0.85rem; color: var(--muted); margin-top: 6px; }
    .card-info .price { margin-top: 10px; }
    .card-info .price span {
      display: inline-block;
      background: var(--accent);
      color: #fff;
      font-weight: 700;
      padding: 6px 14px;
      border-radius: 999px;
      font-size: 0.95rem;
      box-shadow: 0 2px 6px rgba(0,0,0,0.12);
      transition: all 0.3s ease;
    }
    .card-info .price span:hover {
      box-shadow: 0 4px 14px rgba(202, 176, 120, 0.6);
      transform: scale(1.05);
    }

    /* Overlay */
    .overlay {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      background: rgba(202, 176, 120, 0.55);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      opacity: 0;
      transform: translateY(10px);
      transition: opacity .36s var(--transition), transform .36s var(--transition);
      pointer-events: none;
    }

    .product-card:hover .overlay,
    .product-card:focus-within .overlay {
      opacity: 1;
      transform: none;
      pointer-events: auto;
    }

    .overlay-action {
      display: inline-flex;
      gap: 8px;
      align-items: center;
      padding: 10px 14px;
      border-radius: 999px;
      background: var(--text);
      color: #fff;
      border: none;
      font-weight: 600;
      font-size: 0.95rem;
      cursor: pointer;
      box-shadow: 0 6px 16px rgba(0,0,0,0.12);
      transition: transform .22s var(--transition), box-shadow .22s var(--transition);
    }
    .overlay-action:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 24px rgba(0,0,0,0.18);
    }

    .overlay-action svg { display: block; stroke: #fff; }

    /* Responsive grid */
    @media (max-width: 1200px) {
      .products { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 900px) {
      .products { grid-template-columns: repeat(2, 1fr); gap: 18px; }
      .product-card { min-height: 300px; }
    }
    @media (max-width: 520px) {
      .products { grid-template-columns: 1fr; gap: 14px; }
      .product-card { min-height: 260px; }
      .card-info { padding: 12px; }
      .overlay-action { padding: 8px 12px; font-size: 0.9rem; }
    }















              /* Section */
    .top-sellers {
      background: var(--beige);
      padding: 4rem 2rem;
    }

    .top-sellers h2 {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 2rem;
      color: var(--dark);
    }

    /* Wrapper for arrows + carousel */
    .carousel-wrapper {
      display: flex;
      align-items: center;
      gap: 1rem;
      position: relative;
    }

    /* Carousel Container */
    .carousel {
      display: flex;
      gap: 1.5rem;
      overflow-x: auto;
      scroll-behavior: smooth;
      scrollbar-width: none; /* Firefox */
      flex: 1;
    }
    .carousel::-webkit-scrollbar { display: none; }

    /* Product Card */
    .card {
      flex: 0 0 250px;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 6px 15px rgba(0,0,0,0.08);
      overflow: hidden;
      position: relative;
      animation: fadeInUp 0.8s ease forwards;
      opacity: 0;
    }

    /* Animate cards one by one */
    .card:nth-child(1){animation-delay:0.2s}
    .card:nth-child(2){animation-delay:0.4s}
    .card:nth-child(3){animation-delay:0.6s}
    .card:nth-child(4){animation-delay:0.8s}
    .card:nth-child(5){animation-delay:1s}
    .card:nth-child(6){animation-delay:1.2s}
    .card:nth-child(7){animation-delay:1.4s}

    @keyframes fadeInUp {
      from {opacity:0; transform:translateY(40px);}
      to {opacity:1; transform:translateY(0);}
    }

    .card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
    }

    /* Wishlist Icon */
    .wishlist {
      position: absolute;
      top: 12px;
      right: 12px;
      background: rgba(255,255,255,0.95);
      border-radius: 50%;
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transform: scale(0.8);
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .card:hover .wishlist {
      opacity: 1;
      transform: scale(1);
    }

    .wishlist svg {
      width: 20px;
      height: 20px;
      stroke: var(--dark);
      stroke-width: 2;
      fill: none;
      transition: all 0.3s ease;
    }

    .wishlist:hover svg {
      fill: var(--gold);
      stroke: var(--gold);
    }

    /* Card Content */
    .card-content {
      padding: 1rem;
      text-align: center;
    }
    .card-content h3 {
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
      color: var(--dark);
    }
    .card-content p {
      font-size: 0.9rem;
      color: var(--muted);
      margin-bottom: 0.8rem;
    }
    .card-content .price {
      font-size: 1rem;
      color: var(--gold);
      font-weight: 600;
    }

    /* Arrows */
    .arrow {
      flex: 0 0 auto;
      width: 45px;
      height: 45px;
      background: var(--dark);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: 0.3s;
    }
    .arrow svg {
      width: 22px;
      height: 22px;
      stroke: #fff;
      stroke-width: 2;
    }
    .arrow:hover { background: var(--gold); }

    /* Hide arrows on small devices */
    @media(max-width:768px){
      .arrow { display: none; }
      .card { flex: 0 0 60%; }
    }








        .collection {
      padding: 5rem 2rem;
      text-align: center;
    }

    .collection h2 {
      font-size: 2.7rem;
      font-family: "Playfair Display", serif;
      margin-bottom: 3rem;
      background: #000;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: inline-block;
      position: relative;
    }
    .collection h2::after {
      content: "";
      display: block;
      width: 90px;
      height: 3px;
      background: #e4cda1;
      margin: 0.5rem auto 0;
      border-radius: 2px;
    }

    /* Grid layout */
    .grid {
      display: grid;
      gap: 2rem;
      grid-template-columns: 1fr;
    }
    @media (min-width: 600px) {
      .grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (min-width: 992px) {
      .grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (min-width: 1200px) {
      .grid { grid-template-columns: repeat(4, 1fr); }
    }

    /* Card */
    .col-card {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      overflow: hidden;
      text-align: left;
      box-shadow: 0 0 20px rgba(212,175,55,0.15);
      transform: translateY(50px);
      opacity: 0;
      transition: all 0.8s ease;
    }
    .col-card.show {
      opacity: 1;
      transform: translateY(0);
    }

    .col-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
      transition: transform 0.6s ease;
    }
    .col-card:hover img { transform: scale(1.1); }

    .col-card-content {
      padding: 1rem;
    }
    .col-card-content h3 {
      font-size: 1.2rem;
      margin: 0.5rem 0;
    }
    .col-card-content p {
      font-size: 0.95rem;
      color: #ccc;
      margin-bottom: 1rem;
    }
    .col-card-content a {
      display: inline-block;
      text-decoration: none;
      color: #000;
      background: var(--gold);
      padding: 0.6rem 1.2rem;
      border-radius: 25px;
      font-size: 0.9rem;
      transition: 0.3s;
    }
    .col-card-content a:hover {
      opacity: 0.85;
    }









.categories {
  padding: 5rem 2rem;
  background: #fdfcfc;
  color: #fff;
  text-align: center;
}
.categories h2 {
  font-size: 2.5rem;
  font-family: "Playfair Display", serif;
  background: black;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: .8rem;
}
.categories .subheading {
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.category-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  max-width: 1200px;
  margin: 0 auto;
}
.category-card {
  background:#cab078;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(212,175,55,0.15);
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.8s ease;
  cursor: pointer;
}
.category-card.show {
  transform: translateY(0);
  opacity: 1;
}
.category-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(212,175,55,0.2);
}
.category-card:active {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212,175,55,0.15);
}
.category-card:hover img {
  transform: scale(1.05);
}
.category-card h3 {
  margin: 1rem 0;
  font-size: 1.3rem;
  color: gold;
}







/* ===============================
   Best Seller Section
=============================== */
.best-seller-banner {
  position: relative;
  overflow: hidden;
}

.banner-image {
  position: relative;
  width: 100%;
  min-height: 450px;
}

.banner-image img {
  width: 100%;
  height: 70%;
  object-fit: cover;
  display: block;
}

/* Overlay */
.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.55);
  z-index: 1;
}

/* Text content */
.banner-content {
  position: absolute;
  top: 30%;
  left: 5%;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 500px;
  color: #000;
  text-align: left;
  opacity: 0;
  transition: all 0.8s ease;
}

.banner-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  font-family: "Playfair Display", serif;
}

.banner-content p {
  font-size: 1rem;
  color: #222;
  margin-bottom: 2rem;
}

.banner-btn {
  display: inline-block;
  background: linear-gradient(135deg, #d4af37, #b8860b);
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
.banner-btn:hover {
  opacity: 0.85;
}

/* Reveal animation */
.banner-content.show {
  opacity: 1;
  transform: translateY(0); /* cleaner animation */
}

/* Responsive: small devices */
@media (max-width: 768px) {
  .banner-image {
    min-height: 320px;
  }
  .banner-content {
    top: 20px;
    left: 5%;
    transform: none; /* no vertical centering */
    max-width: 90%;
    padding: 0 1rem;
  }
  .banner-content h2 {
    font-size: 1.8rem;
  }
  .banner-content p {
    font-size: 0.95rem;
  }
  .banner-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
}

















    /* Section styling */
    .subscribe {
      background: #f9f6f1;
      padding: 80px 20px;
      text-align: center;
      overflow: hidden;
    }

    .subscribe .section-head {
      margin-bottom: 30px;
    }
    .subscribe .section-title {
      font-size: 2rem;
      font-weight: 700;
      opacity: 0;
      transform: translateX(-40px);
      transition: all 0.7s ease;
    }
    .subscribe .section-title.show {
      opacity: 1;
      transform: translateX(0);
    }

    .subscribe .section-subtitle {
      font-size: 1rem;
      color: #555;
      margin-top: 10px;
      opacity: 0;
      transform: translateX(40px);
      transition: all 0.7s ease 0.3s;
    }
    .subscribe .section-subtitle.show {
      opacity: 1;
      transform: translateX(0);
    }

    /* Form styling */
    .subscribe-form {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 12px;
      max-width: 500px;
      margin: 0 auto;
      margin-top: 20px;
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.7s ease 0.6s;
    }
    .subscribe-form.show {
      opacity: 1;
      transform: translateY(0);
    }

    .subscribe-form input {
      flex: 1;
      padding: 12px 16px;
      border: 1px solid #ccc;
      border-radius: 30px;
      font-size: 1rem;
      outline: none;
      transition: border 0.3s ease;
    }
    .subscribe-form input:focus {
      border-color: #b08d57;
    }

    .subscribe-form button {
      background: linear-gradient(90deg, #d4af37, #b08d57);
      color: #fff;
      border: none;
      padding: 12px 24px;
      border-radius: 30px;
      font-size: 1rem;
      cursor: pointer;
      font-weight: 600;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .subscribe-form button:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 14px rgba(0,0,0,0.15);
    }

    /* Responsive */
    @media(max-width: 600px) {
      .subscribe-form {
        flex-direction: column;
        gap: 14px;
      }
      .subscribe-form input, 
      .subscribe-form button {
        width: 100%;
        border-radius: 8px;
      }
    }







    footer {
      background: #111;
      color: #eee;
      padding: 60px 20px 20px;
      overflow: hidden;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 40px;
    }

    /* Footer Column */
    .footer-col {
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.6s ease;
    }
    .footer-col.show {
      opacity: 1;
      transform: translateY(0);
    }

    .footer-col h4 {
      font-size: 1rem;
      margin-bottom: 16px;
      font-weight: 700;
      color: #fff;
      position: relative;
    }
    .footer-col h4::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -6px;
      width: 40px;
      height: 2px;
      background: linear-gradient(90deg, #d4af37, #b08d57);
      border-radius: 2px;
    }

    .footer-col ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .footer-col ul li {
      margin-bottom: 10px;
    }
    .footer-col ul li a {
      color: #ccc;
      text-decoration: none;
      font-size: 0.95rem;
      transition: color 0.3s ease;
    }
    .footer-col ul li a:hover {
      color: #d4af37;
    }

    /* Brand */
    .nav__brand {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 20px;
    }
    .nav__brand svg {
      width: 24px;
      height: 24px;
      stroke: #d4af37;
    }
    .nav__brand strong {
      color: #fff;
      font-size: 1rem;
    }

    /* Social Icons */
    .social-links {
      display: flex;
      gap: 14px;
      margin-top: 12px;
    }
    .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255,255,255,0.05);
      transition: background 0.3s ease, transform 0.3s ease;
    }
    .social-links a:hover {
      background: #d4af37;
      transform: translateY(-3px);
    }
    .social-links svg {
      width: 18px;
      height: 18px;
      fill: #eee;
      transition: fill 0.3s ease;
    }
    .social-links a:hover svg {
      fill: #111;
    }

    /* Bottom Links */
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      margin-top: 40px;
      padding-top: 20px;
      text-align: center;
      font-size: 0.85rem;
      color: #aaa;
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.6s ease;
    }
    .footer-bottom.show {
      opacity: 1;
      transform: translateY(0);
    }

    .footer-bottom a {
      color: #aaa;
      margin: 0 8px;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-bottom a:hover {
      color: #d4af37;
    }

 @media(max-width: 600px) {
  .footer-container {
    text-align: center;
  }
  .footer-col {
    align-items: center;
    text-align: center;
  }
  .footer-col h4 { 
    font-size: 0.95rem; 
    display: inline-block; /* center as block */
    position: relative;
  }
  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%); /* move line under heading center */
  }
  .footer-col ul li a { 
    font-size: 0.9rem; 
  }
  .social-links {
    justify-content: center;
  }
}
































    
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: inherit;
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
  .nav-center {
    display: none;
  }
  .nav-actions {
    margin-left: auto;
  }
}