/* ============================
   CSS VARIABLES
============================ */
:root {
  --gold: #aa8617;
  --accent: #e34463;
  --dark-red: #6e0715;
  --line: #e6e6e2;
  --text: #2f2f2f;
}

/* ============================
   RESET & BASE
============================ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: var(--text); background: #f8f8f6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.container { width: min(1540px, calc(100% - 120px)); margin: 0 auto; }
.section { padding: 92px 0; }

/* ============================
   HEADER
============================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid #f0f0f0;
  box-shadow: 0 1px 8px rgba(0,0,0,.04);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 110px;
}
.logo img { width: 170px; }
.main-nav { display: flex; gap: 32px; font-size: 16.5px; align-items: center; }
.main-nav a { color: #5b5b5b; font-weight: 500; transition: color .2s; }
.main-nav a:hover { color: var(--gold); }
.main-nav a.active { color: var(--gold); font-weight: 600; }
.nav-icons { display: flex; gap: 18px; cursor: pointer; color: #555; }
.nav-icons span { transition: color .2s; display: flex; align-items: center; }
.nav-icons span:hover { color: var(--gold); }
.menu-toggle { display: none; }

/* ============================
   HERO / SLIDER
============================ */
.hero-wrapper { position: relative; overflow: visible; }

.slider {
  position: relative;
  height: 620px;
  overflow: hidden;
  background: #d2cfc8;
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity .8s ease;
  pointer-events: none;
}
.slide.active { opacity: 1; pointer-events: auto; }



.slide-content { position: relative; z-index: 2; padding-left: 180px; }

.slide-eyebrow {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #6b6355;
  margin-bottom: 14px;
}
.slide-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.025em;
  color: #1a1512;
  margin-bottom: 22px;
  max-width: 480px;
}
.slide-price {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  font-size: 22px;
  font-weight: 700;
}
.slide-price .old {
  text-decoration: line-through;
  color: #9a9080;
  font-weight: 500;
  font-size: 19px;
}
.slide-price .new { color: #1a1512; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  transition: all .2s;
}
.btn-dark {
  background: #111; color: #fff;
  padding: 17px 46px; font-size: 15px;
  letter-spacing: .1em; text-transform: uppercase;
  border-radius: 0;
}
.btn-dark:hover { background: #333; }
.btn-gold { background: var(--gold); color: #fff; border-radius: 14px; }
.btn-gold:hover { background: #8f6e0e; }
.btn.full { width: 100%; }

/* Slider arrows */
.slider-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(4px);
  color: rgba(255,255,255,.8);
  font-size: 36px;
  width: 54px; height: 54px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.slider-arrow:hover { background: rgba(255,255,255,.22); }
.slider-arrow.left { left: 28px; }
.slider-arrow.right { right: 28px; }

/* Slider dots */
.slider-dots {
  position: absolute;
  left: 50%; bottom: 70px;
  transform: translateX(-50%);
  display: flex; gap: 10px;
  z-index: 10;
}
.slider-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  cursor: pointer;
  transition: background .3s, transform .3s;
}
.slider-dots span.active { background: #fff; transform: scale(1.25); }

/* ============================
   CURVED WAVE TRANSITION
   Hero → Features geçiş efekti
============================ */
.wave-transition {
  position: relative;
  margin-top: -84px;
  z-index: 30;
  background: transparent;
  pointer-events: none;
  line-height: 0;
}
.wave-transition svg {
  display: block;
  width: 100%;
  height: 92px;
}

/* ============================
   FEATURES BAR
============================ */
.features {
  background: #fff;
  padding: 10px 0 36px;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 20;
}
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.feature-item {
  display: flex; align-items: center; gap: 18px;
  padding: 12px 28px;
  border-right: 1px solid var(--line);
}
.feature-item:last-child { border-right: 0; }
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid #333;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature-item h4 { font-size: 17px; font-weight: 700; margin-bottom: 3px; color: #222; }
.feature-item p { font-size: 15px; color: #777; line-height: 1.4; }

/* ============================
   GIFT BOXES
============================ */
.gifts-section { padding: 80px 0 90px; }
.title-accent {
  color: var(--accent);
  font-size: 36px; font-weight: 700;
  text-align: center;
  margin-bottom: 56px;
  letter-spacing: -.02em;
}
.product-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px; }
.product-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 44px; }

.simple-card { text-align: center; }
.simple-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.simple-card h3 { margin: 18px 0 8px; font-size: 16px; font-weight: 500; }

.price { font-size: 15px; font-weight: 700; }
.price .old { text-decoration: line-through; color: #999; font-weight: 500; margin-right: 6px; }
.price.gold { color: var(--gold); margin-bottom: 18px; }

/* ============================
   SHOP BY CATEGORY
============================ */
.categories-section { padding: 80px 0; }
.section-head { margin-bottom: 42px; }
.section-head h2 { font-size: 24px; font-weight: 700; margin-bottom: 6px; }
.section-head p { font-size: 14px; color: #a2a2a2; }

.category-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 28px; }
.category-card { text-align: center; cursor: pointer; }
.category-card img {
  width: 100%; aspect-ratio: 1 / 1;
  object-fit: contain; background: #f4f2f0;
  padding: 14px; transition: transform .3s;
}
.category-card:hover img { transform: scale(1.04); }
.category-card span {
  display: block; margin-top: 16px;
  font-size: 14px; font-weight: 500; color: #5f5f5f;
}

/* ============================
   CREATIVE COLLECTION
============================ */
.creative-section { padding: 80px 0; }
.buy-card { text-align: center; }
.buy-card img { margin: 0 auto; height: 400px; object-fit: contain; }
.buy-card h3 { margin: 16px 0 6px; font-size: 14px; font-weight: 500; }
.buy-card .btn { min-width: 170px; font-size: 14px; padding: 16px 28px; }

/* ============================
   CATALOGUE BANNER
============================ */
.catalogue-banner { padding: 0 0 92px; }
.catalog-wrap {
  background: var(--dark-red); color: #fff;
  display: grid; grid-template-columns: 1.15fr .85fr;
  align-items: center; padding: 50px 72px; gap: 30px;
}
.catalog-copy h2 { font-size: 24px; line-height: 1.2; margin-bottom: 14px; max-width: 560px; }
.catalog-copy p { font-size: 14px; color: rgba(255,255,255,.8); margin-bottom: 28px; max-width: 680px; }
.catalog-form { display: flex; gap: 20px; }
.catalog-form input {
  flex: 1; background: rgba(255,255,255,.12); border: 0;
  color: #fff; padding: 18px; font-size: 18px;
  font-family: 'Poppins', sans-serif; outline: none;
}
.catalog-form input::placeholder { color: rgba(255,255,255,.7); }
.catalog-form .btn { min-width: 180px; border-radius: 6px; font-size: 18px; padding: 18px 24px; }
.catalog-image img { width: 100%; }

/* ============================
   ORIGINAL LUXURY SCENTS
============================ */
.scents-section { padding: 80px 0 92px; }
.buy-card.left { text-align: left; }
.buy-card.left img { width: 100%; height: 360px; object-fit: contain; background: #fbfbf9; }
.buy-card.left .btn { min-width: 130px; font-size: 17px; padding: 13px 22px; border-radius: 12px; }

:root {
      --gold: #aa8617;
      --accent: #e34463;
      --dark-red: #6e0715;
      --line: #e6e6e2;
      --text: #2f2f2f;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Poppins', sans-serif; color: var(--text); background: #f8f8f6; }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    .container { width: min(1540px, calc(100% - 120px)); margin: 0 auto; }
    .section { padding: 92px 0; }

    /* ============================
       HEADER
    ============================ */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255,255,255,.97);
      border-bottom: 1px solid #f0f0f0;
      box-shadow: 0 1px 8px rgba(0,0,0,.04);
    }
    .nav-wrap {
      display: flex; align-items: center; justify-content: space-between;
      min-height: 110px;
    }
    .logo img { width: 170px; }
    .main-nav { display: flex; gap: 32px; font-size: 16.5px; align-items: center; }
    .main-nav a { color: #5b5b5b; font-weight: 500; transition: color .2s; }
    .main-nav a:hover { color: var(--gold); }
    .main-nav a.active { color: var(--gold); font-weight: 600; }
    .nav-icons { display: flex; gap: 18px; font-size: 22px; cursor: pointer; color: #555; }
    .nav-icons span { transition: color .2s; }
    .nav-icons span:hover { color: var(--gold); }

    /* ============================
       HERO / SLIDER
    ============================ */
    .hero-wrapper {
      position: relative;
      overflow: visible;
    }

    .slider {
      position: relative;
      height: 620px;
      overflow: hidden;
      background: #d2cfc8;
    }

    .slide {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      opacity: 0;
      transition: opacity .8s ease;
      pointer-events: none;
    }
    .slide.active {
      opacity: 1;
      pointer-events: auto;
    }

    /* Slide 1 - Perfume Collection */
    .slide-1 {
      background: linear-gradient(100deg,
        #d8c9b2 0%, #d8c9b2 52%, transparent 65%),
        url('../assets/collection-1.png') right 10% center / auto 82% no-repeat,
        #d8c9b2;
    }
    /* Slide 2 - Love Box */
    .slide-2 {
      background: linear-gradient(100deg,
        #e8d8d8 0%, #e8d8d8 52%, transparent 65%),
        url('../assets/gift-box-2.png') right 6% center / auto 82% no-repeat,
        #e8d8d8;
    }
    /* Slide 3 - Mixed Box */
    .slide-3 {
      background: linear-gradient(100deg,
        #ccd5d2 0%, #ccd5d2 52%, transparent 65%),
        url('../assets/gift-box-3.png') right 6% center / auto 82% no-repeat,
        #ccd5d2;
    }
    /* Slide 4 - Men's 201 */
    .slide-4 {
      background: linear-gradient(100deg,
        #d6ccbe 0%, #d6ccbe 52%, transparent 65%),
        url('../assets/unisex-1.png') right 11% center / auto 84% no-repeat,
        #d6ccbe;
    }

    .slide-content {
      position: relative;
      z-index: 2;
      padding-left: 180px;
    }

    .slide-eyebrow {
      font-size: 15px;
      font-weight: 500;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: #6b6355;
      margin-bottom: 14px;
    }

    .slide-title {
      font-size: 56px;
      font-weight: 700;
      line-height: 1.05;
      letter-spacing: -.025em;
      color: #1a1512;
      margin-bottom: 22px;
      max-width: 480px;
    }

    .slide-price {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 32px;
      font-size: 22px;
      font-weight: 700;
    }
    .slide-price .old {
      text-decoration: line-through;
      color: #9a9080;
      font-weight: 500;
      font-size: 19px;
    }
    .slide-price .new { color: #1a1512; }

    .btn {
      display: inline-flex; align-items: center; justify-content: center;
      border: 0; cursor: pointer; font-family: 'Poppins', sans-serif;
      font-weight: 600; transition: all .2s;
      font-size: 18px;
    }
    .btn-dark {
      background: #111; color: #fff;
      padding: 17px 46px; font-size: 15px;
      letter-spacing: .1em; text-transform: uppercase;
      border-radius: 0;
    }
    .btn-dark:hover { background: #333; }
    .btn-gold { background: var(--gold); color: #fff; border-radius: 14px; }
    .btn-gold:hover { background: #8f6e0e; }
    .btn.full { width: 100%; }

    /* Slider Controls */
    .slider-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      border: 1px solid rgba(255,255,255,.3);
      background: rgba(255,255,255,.08);
      backdrop-filter: blur(4px);
      color: rgba(255,255,255,.8);
      font-size: 36px;
      width: 54px;
      height: 54px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .2s;
    }
    .slider-arrow:hover { background: rgba(255,255,255,.22); }
    .slider-arrow.left { left: 28px; }
    .slider-arrow.right { right: 28px; }

    .slider-dots {
      position: absolute;
      left: 50%;
      bottom: 70px;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
      z-index: 10;
    }
    .slider-dots span {
      width: 10px; height: 10px;
      border-radius: 50%;
      background: rgba(255,255,255,.45);
      cursor: pointer;
      transition: background .3s, transform .3s;
    }
    .slider-dots span.active {
      background: #fff;
      transform: scale(1.25);
    }

    /* ============================
       CURVED TRANSITION
       — The key element!
    ============================ */
    .features-wave-wrap {
      position: relative;
      margin-top: -56px; /* pulls up over the slider */
      z-index: 20;
    }

    /* The curved SVG wave sits on top, matching the white bg below */
    .features-wave-wrap::before {
      content: '';
      display: block;
      height: 60px;
      background: #fff;
      border-radius: 50% 50% 0 0 / 60px 60px 0 0;
      /* Full-width ellipse top curve */
      clip-path: ellipse(55% 100% at 50% 100%);
    }

    .features {
      background: #fff;
      padding: 14px 0 40px;
      border-bottom: 1px solid var(--line);
      position: relative;
      z-index: 20;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }

    .feature-item {
      display: flex;
      align-items: center;
      gap: 18px;
      padding: 12px 28px;
      border-right: 1px solid var(--line);
    }
    .feature-item:last-child { border-right: 0; }

    .feature-icon {
      width: 52px; height: 52px;
      border-radius: 50%;
      border: 2px solid #333;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 20px;
    }

    .feature-item h4 { font-size: 17px; font-weight: 700; margin-bottom: 3px; color: #222; }
    .feature-item p { font-size: 15px; color: #777; line-height: 1.4; }

    /* ============================
       GIFT BOXES
    ============================ */
    .gifts-section { padding: 80px 0 90px; }
    .title-accent {
      color: var(--accent);
      font-size: 52px;
      font-weight: 700;
      text-align: center;
      margin-bottom: 56px;
      letter-spacing: -.02em;
    }

    .product-grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 44px;
    }
    .product-grid-4 {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 44px;
    }

    .simple-card { text-align: center; }
    .simple-card img {
      width: 100%;
      aspect-ratio: 1 / 1;
      object-fit: cover;
    }
    .simple-card h3 {
      margin: 18px 0 8px;
      font-size: 20px;
      font-weight: 500;
    }
    .price { font-size: 19px; font-weight: 700; }
    .price .old { text-decoration: line-through; color: #999; font-weight: 500; margin-right: 6px; }

    /* ============================
       CATEGORIES
    ============================ */
    .categories-section { padding: 80px 0; }
    .section-head { margin-bottom: 42px; }
    .section-head h2 { font-size: 32px; font-weight: 700; margin-bottom: 6px; }
    .section-head p { font-size: 18px; color: #a2a2a2; }

    .category-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 28px;
    }
    .category-card { text-align: center; cursor: pointer; }
    .category-card img {
      width: 100%;
      aspect-ratio: 1 / 1;
      object-fit: contain;
      background: #f4f2f0;
      padding: 14px;
      transition: transform .3s;
    }
    .category-card:hover img { transform: scale(1.04); }
    .category-card span {
      display: block;
      margin-top: 16px;
      font-size: 17px;
      font-weight: 500;
      color: #5f5f5f;
    }

    /* ============================
       CREATIVE COLLECTION
    ============================ */
    .creative-section { padding: 80px 0; }
    .buy-card { text-align: center; }
    .buy-card img {
      margin: 0 auto;
      height: 400px;
      object-fit: contain;
    }
    .buy-card h3 { margin: 16px 0 6px; font-size: 16px; font-weight: 500; text-align: center; }
    .price.gold { color: var(--gold); margin-bottom: 18px; text-align: center;}
    .buy-card .btn { min-width: 170px; font-size: 20px; padding: 16px 28px; text-align: center;}

    /* ============================
       CATALOGUE BANNER
    ============================ */
    .catalogue-banner { padding: 0 0 92px; }
    .catalog-wrap {
      background: #50181b;
      color: #fff;
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      align-items: center;
      padding: 50px 72px;
      gap: 30px;
    }
    .catalog-copy h2 { font-size: 30px; line-height: 1.2; margin-bottom: 14px; max-width: 560px; }
    .catalog-copy p { font-size: 17px; color: rgba(255,255,255,.8); margin-bottom: 28px; max-width: 680px; }
    .catalog-form { display: flex; gap: 20px; }
    .catalog-form input {
      flex: 1;
      background: rgba(255,255,255,.12);
      border: 0;
      color: #fff;
      padding: 18px 18px;
      font-size: 18px;
      font-family: 'Poppins', sans-serif;
      outline: none;
    }
    .catalog-form input::placeholder { color: rgba(255,255,255,.7); }
    .catalog-form .btn { min-width: 180px; border-radius: 6px; font-size: 18px; padding: 18px 24px; }
    .catalog-image img { width: 100%; }

    /* ============================
       SCENTS
    ============================ */
    .scents-section { padding: 80px 0 92px; }
    .buy-card.left { text-align: center; }
    .buy-card.left img { width: 100%; height: 360px; object-fit: contain; background: #fbfbf9; }
    .buy-card.left .btn { min-width: 130px; font-size: 17px; padding: 13px 22px; border-radius: 12px; text-align: center; }

    /* ============================
       FOOTER
    ============================ */
    .site-footer {
      position: relative;
      color: #fff;
      padding: 72px 0 24px;
      background:
        linear-gradient(135deg, #1f1510 0%, #3b2119 58%, #1c1110 100%);
      border-top: 1px solid rgba(170,134,23,.28);
    }
    .site-footer::before {
      content: '';
      position: absolute;
      inset: 0 0 auto;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(170,134,23,.75), transparent);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 460px;
      gap: 96px;
      align-items: start;
    }
    .footer-logo {
      width: 180px;
      margin-bottom: 24px;
    }
    .footer-about p {
      font-size: 15px;
      line-height: 1.8;
      max-width: 560px;
      margin-bottom: 30px;
      color: rgba(255,255,255,.72);
    }
    .footer-links {
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      gap: 12px 28px;
    }
    .footer-links a {
      color: rgba(255,255,255,.78);
      font-size: 13px;
      letter-spacing: .08em;
      text-transform: uppercase;
      font-weight: 600;
      transition: color .2s;
    }
    .footer-links a:hover { color: var(--gold); }
    .footer-news h3 {
      color: #fff;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    .footer-form {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 10px;
      padding-bottom: 32px;
      border-bottom: 1px solid rgba(255,255,255,.14);
    }
    .footer-news input {
      width: 100%;
      min-height: 48px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.16);
      color: #fff;
      padding: 0 16px;
      font-size: 14px;
      font-family: 'Poppins', sans-serif;
      outline: none;
      border-radius: 999px;
      transition: border-color .2s, background .2s;
    }
    .footer-news input:focus {
      background: rgba(255,255,255,.12);
      border-color: rgba(170,134,23,.72);
    }
    .footer-news input::placeholder {
      color: rgba(255,255,255,.52);
      font-weight: 500;
    }
    .footer-form .btn {
      min-height: 48px;
      padding: 0 24px;
      border-radius: 999px;
      font-size: 13px;
      letter-spacing: .08em;
      text-transform: uppercase;
    }
    .contact-block { margin-top: 28px; }
    .contact-block h3 { margin-bottom: 14px; }
    .contact-block p {
      font-size: 14px;
      font-weight: 500;
      margin-bottom: 8px;
      color: rgba(255,255,255,.68);
    }
    .socials {
      display: flex;
      gap: 10px;
      margin-top: 24px;
    }
    .socials a {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,.18);
      color: rgba(255,255,255,.74);
      display: flex; align-items: center; justify-content: center;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      transition: border-color .2s, color .2s, background .2s;
    }
    .socials a:hover {
      background: rgba(170,134,23,.16);
      border-color: rgba(170,134,23,.7);
      color: #fff;
    }
    .footer-bottom {
      margin-top: 52px;
      padding-top: 22px;
      border-top: 1px solid rgba(255,255,255,.1);
      font-size: 13px;
      font-weight: 500;
      color: rgba(255,255,255,.52);
    }

    /* ============================
       RESPONSIVE
    ============================ */
    @media (max-width: 1200px) {
      .container { width: min(100% - 40px, 1200px); }
      .slide-content { padding-left: 60px; }
      .slide-title { font-size: 44px; }
      .product-grid-4, .category-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
      .catalog-wrap { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
      .container { width: calc(100% - 28px); }
      .nav-wrap { flex-wrap: wrap; justify-content: center; gap: 14px; padding: 14px 0; }
      .main-nav { flex-wrap: wrap; justify-content: center; gap: 14px; }
      .slider { height: 480px; }
      .slide-content { padding-left: 24px; }
      .slide-title { font-size: 34px; }
      .product-grid-3, .product-grid-4, .category-grid, .footer-grid { grid-template-columns: 1fr; }
      .footer-grid { gap: 38px; }
      .footer-form { grid-template-columns: 1fr; }
      .feature-grid { grid-template-columns: 1fr 1fr; }
      .feature-item { border-right: 0; border-bottom: 1px solid var(--line); }
      .catalog-form { flex-direction: column; }
      .title-accent { font-size: 36px; }
    }

/* ============================
   PAGE HERO (Category Pages)
============================ */
.page-hero {
  background: linear-gradient(135deg, #2d1802 0%, #6e3a1a 50%, #2d1802 100%);
  color: #fff;
  padding: 72px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(170,134,23,.25) 0%, transparent 70%);
}
.page-hero h1 {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 14px;
  position: relative;
}
.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,.7);
  position: relative;
}
.page-hero .breadcrumb {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
  position: relative;
}
.page-hero .breadcrumb a { color: var(--gold); }
.page-hero .breadcrumb span { margin: 0 8px; }

/* ============================
   PRODUCT DETAIL PAGE
============================ */
.product-detail {
  padding: 80px 0 100px;
}
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.product-gallery {
  position: sticky;
  top: 130px;
}
.product-main-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #f4f2f0;
  padding: 40px;
  border-radius: 4px;
  cursor: zoom-in;
}
.product-info { padding-top: 12px; }
.product-badge {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 22px;
}
.product-info h1 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: #1a1512;
  margin-bottom: 18px;
}
.product-price-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.product-price-now {
  font-size: 34px;
  font-weight: 800;
  color: var(--gold);
}
.product-price-old {
  font-size: 20px;
  color: #aaa;
  text-decoration: line-through;
  font-weight: 500;
}
.product-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 36px;
  border-bottom: 1px solid #eee;
  padding-bottom: 36px;
}
.product-meta {
  margin-bottom: 36px;
}
.product-meta-item {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 15px;
}
.product-meta-label {
  font-weight: 700;
  color: #333;
  min-width: 110px;
}
.product-meta-value { color: #666; }
.product-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 36px;
}
.btn-buy {
  flex: 1;
  background: #1a1512;
  color: #fff;
  padding: 18px 32px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 0;
  border: 2px solid #1a1512;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: all .2s;
  text-align: center;
}
.btn-buy:hover { background: #333; border-color: #333; }
.btn-wishlist {
  width: 58px; height: 58px;
  border: 2px solid #ddd;
  background: #fff;
  border-radius: 0;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all .2s;
  flex-shrink: 0;
}
.btn-wishlist:hover { border-color: var(--gold); color: var(--gold); }
.product-notes {
  background: #f9f7f4;
  padding: 28px 32px;
  border-left: 3px solid var(--gold);
}
.product-notes h4 { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: #999; margin-bottom: 14px; }
.note-group { margin-top: 18px; }
.note-group:first-of-type { margin-top: 0; }
.note-group strong {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  color: #333;
}
.note-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.note-tag {
  background: #fff;
  border: 1px solid #e8e5e0;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  color: #555;
  border-radius: 20px;
}

.buy-card img,
.simple-card img {
  cursor: zoom-in;
}

.image-zoom-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(16, 12, 9, .82);
  backdrop-filter: blur(8px);
}
.image-zoom-modal.active { display: flex; }
.image-zoom-modal img {
  max-width: min(92vw, 1100px);
  max-height: 86vh;
  object-fit: contain;
  background: #f8f8f6;
  border-radius: 6px;
  box-shadow: 0 24px 80px rgba(0,0,0,.34);
}
.image-zoom-close {
  position: fixed;
  top: 24px;
  right: 28px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}
.zoom-modal-open { overflow: hidden; }

/* Related products on detail page */
.related-section { padding: 80px 0; background: #f8f8f6; }

/* Back link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 40px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.back-link:hover { color: #8f6e0e; }

@media (max-width: 1024px) {
  .product-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .product-gallery { position: static; }
  .page-hero h1 { font-size: 38px; }
}

/* ============================
   MOBILE MENU
============================ */
.menu-toggle {
  border: 0;
  background: transparent;
  color: #2f2f2f;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .2s, opacity .2s;
}
.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}
.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
  .site-header {
    position: sticky;
  }
  .nav-wrap {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    justify-content: initial;
    gap: 10px;
    min-height: 74px;
    padding: 10px 0;
  }
  .logo {
    grid-column: 1;
    grid-row: 1;
  }
  .logo img { width: 124px; }
  .menu-toggle {
    display: inline-flex;
    grid-column: 3;
    grid-row: 1;
  }
  .nav-icons {
    grid-column: 4;
    grid-row: 1;
    gap: 10px;
    font-size: 0;
  }
  .nav-icons span {
    display: flex;
  }
  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: initial;
    gap: 0;
    padding: 12px 0 4px;
    border-top: 1px solid #efede8;
    background: #fff;
  }
  .site-header.menu-open .main-nav {
    display: flex;
  }
  .main-nav a {
    padding: 13px 4px;
    font-size: 15px;
    border-bottom: 1px solid #f3f1ec;
  }
  .main-nav a:last-child {
    border-bottom: 0;
  }
  .slide {
    align-items: flex-start;
    padding-top: 56px;
  }
  .slide-content {
    padding-left: 22px;
    padding-right: 22px;
    max-width: 78%;
  }
  .slide-title {
    font-size: 32px;
    max-width: 320px;
  }
  .slide-eyebrow {
    font-size: 12px;
  }
  .slide-1,
  .slide-2,
  .slide-3,
  .slide-4 {
    background-position: center, right -36px bottom 28px;
    background-size: auto, auto 58%;
  }
  .slider-arrow {
    width: 42px;
    height: 42px;
  }
  .slider-arrow.left { left: 14px; }
  .slider-arrow.right { right: 14px; }
}

/* ============================
   FINAL HOME TUNING
============================ */
.slider {
  height: 600px;
}
.slide-content {
  padding-left: clamp(92px, 21vw, 430px);
}
.slide-title {
  font-size: clamp(42px, 3.5vw, 64px);
}
.slide-1 {
  background: linear-gradient(100deg,
    #d8c9b2 0%, #d8c9b2 50%, transparent 63%),
    url('../assets/collection-1.png') right 25% center / auto 74% no-repeat,
    #d8c9b2;
}
.slide-2 {
  background: linear-gradient(100deg,
    #e8d8d8 0%, #e8d8d8 49%, transparent 62%),
    url('../assets/gift-box-2.png') right 3% center / auto 98% no-repeat,
    #e8d8d8;
}
.slide-3 {
  background: linear-gradient(100deg,
    #ccd5d2 0%, #ccd5d2 49%, transparent 62%),
    url('../assets/gift-box-3.png') right 4% center / auto 94% no-repeat,
    #ccd5d2;
}
.slide-4 {
  background: linear-gradient(100deg,
    #d6ccbe 0%, #d6ccbe 50%, transparent 63%),
    url('../assets/unisex-1.png') right 25% center / auto 76% no-repeat,
    #d6ccbe;
}
.gifts-section,
.categories-section,
.creative-section,
.scents-section {
  padding-top: 72px;
  padding-bottom: 72px;
}
.gifts-section .product-grid-3,
.categories-section .category-grid,
.creative-section .product-grid-3,
.scents-section .product-grid-3 {
  margin-left: auto;
  margin-right: auto;
}
.gifts-section .product-grid-3 {
  max-width: 1380px;
  gap: 48px;
}
.categories-section .category-grid {
  max-width: 1540px;
}
.creative-section .product-grid-3,
.scents-section .product-grid-3 {
  max-width: 1080px;
  gap: 48px 72px;
}
.simple-card img {
  height: 300px;
  aspect-ratio: auto;
}
.category-card img {
  max-height: 220px;
}
.product-image-link {
  display: block;
}
.buy-card img,
.buy-card.left img {
  width: 100%;
  height: 280px;
  background: #fbfbf9;
  object-fit: contain;
  transition: transform .25s ease;
}
.product-image-link:hover img {
  transform: translateY(-4px);
}
.buy-card h3,
.buy-card.left h3 {
  margin-top: 14px;
  font-size: 15px;
}
.buy-card .btn,
.buy-card.left .btn {
  min-width: 142px;
  padding: 12px 22px;
  font-size: 15px;
  border-radius: 10px;
}
.whatsapp-float {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 120;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #24d366;
  color: #fff;
  box-shadow: 0 14px 34px rgba(36, 211, 102, .34);
  transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(36, 211, 102, .4);
}
.whatsapp-float svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}
.language-switcher {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 130;
  transform: translateX(-50%);
  text-align: center;
  font-family: inherit;
  direction: ltr;
}
.language-switcher-toggle {
  border: 0;
  min-width: 118px;
  padding: 9px 16px;
  border-radius: 999px;
  background: #f59a12;
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(245, 154, 18, .26);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.language-switcher-toggle:hover {
  background: #e78c05;
  box-shadow: 0 14px 30px rgba(245, 154, 18, .34);
  transform: translateY(-2px);
}
.language-switcher-menu {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  display: grid;
  min-width: 138px;
  overflow: hidden;
  transform: translateX(-50%) translateY(8px);
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .14);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.language-switcher.open .language-switcher-menu {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.language-switcher-menu a {
  padding: 10px 14px;
  color: #2b2521;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.language-switcher-menu a:hover,
.language-switcher-menu a.active {
  background: #f6eadb;
  color: #b85d0f;
}
html[dir="rtl"] body {
  direction: rtl;
}
html[dir="rtl"] .slide-content {
  padding-right: clamp(92px, 21vw, 430px);
  padding-left: 0;
  text-align: right;
}
html[dir="rtl"] .slide-1 {
  background: linear-gradient(260deg,
    #d8c9b2 0%, #d8c9b2 50%, transparent 63%),
    url('../assets/collection-1.png') left 25% center / auto 74% no-repeat,
    #d8c9b2;
}
html[dir="rtl"] .slide-2 {
  background: linear-gradient(260deg,
    #e8d8d8 0%, #e8d8d8 49%, transparent 62%),
    url('../assets/gift-box-2.png') left 3% center / auto 98% no-repeat,
    #e8d8d8;
}
html[dir="rtl"] .slide-3 {
  background: linear-gradient(260deg,
    #ccd5d2 0%, #ccd5d2 49%, transparent 62%),
    url('../assets/gift-box-3.png') left 4% center / auto 94% no-repeat,
    #ccd5d2;
}
html[dir="rtl"] .slide-4 {
  background: linear-gradient(260deg,
    #d6ccbe 0%, #d6ccbe 50%, transparent 63%),
    url('../assets/unisex-1.png') left 25% center / auto 76% no-repeat,
    #d6ccbe;
}
html[dir="rtl"] .footer-about,
html[dir="rtl"] .footer-news,
html[dir="rtl"] .product-info,
html[dir="rtl"] .product-detail-info,
html[dir="rtl"] .page-hero,
html[dir="rtl"] .section-head,
html[dir="rtl"] .catalog-content {
  text-align: right;
}
html[dir="rtl"] .footer-links,
html[dir="rtl"] .product-actions,
html[dir="rtl"] .footer-form {
  direction: rtl;
}

@media (max-width: 900px) {
  .slider {
    height: 520px;
  }
  .slide {
    align-items: flex-start;
    padding-top: 56px;
  }
  .slide-content {
    padding-left: 22px;
    padding-right: 22px;
    max-width: 78%;
  }
  .slide-title {
    font-size: 32px;
    max-width: 320px;
  }
  .slide-1,
  .slide-2,
  .slide-3,
  .slide-4 {
    background-position: center, right -24px bottom 28px;
    background-size: auto, auto 56%;
  }
  .gifts-section .product-grid-3,
  .categories-section .category-grid,
  .creative-section .product-grid-3,
  .scents-section .product-grid-3 {
    grid-template-columns: 1fr;
    max-width: 420px;
    gap: 30px;
  }
  .simple-card img,
  .buy-card img,
  .buy-card.left img {
    height: 260px;
  }
  .category-card img {
    max-height: none;
  }
  .whatsapp-float {
    left: 16px;
    bottom: 16px;
    width: 50px;
    height: 50px;
  }
  .language-switcher {
    bottom: 14px;
  }
  .language-switcher-toggle {
    min-width: 104px;
    padding: 8px 13px;
    font-size: 13px;
  }
  .language-switcher-menu {
    min-width: 126px;
  }
  html[dir="rtl"] .slide-content {
    padding-right: 22px;
  }
  html[dir="rtl"] .slide-1,
  html[dir="rtl"] .slide-2,
  html[dir="rtl"] .slide-3,
  html[dir="rtl"] .slide-4 {
    background-position: center, left -24px bottom 28px;
    background-size: auto, auto 56%;
  }
}
