:root {
  --obsidian: #080807;
  --ink: #171717;
  --burnt-graphite: #191714;
  --burnt-graphite-2: #25211c;
  --burnt-graphite-3: #312b24;
  --graphite: #514f4b;
  --muted: #b8ada0;
  --line: rgba(232, 220, 204, 0.18);
  --paper: #ffffff;
  --sand: #f0e7d9;
  --sand-deep: #d9c9b5;
  --gold: #b88d4d;
  --gold-dark: #8d6934;
  --shadow: 0 24px 70px rgba(23, 23, 23, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(184, 141, 77, 0.14), transparent 30vw),
    radial-gradient(circle at 88% 30%, rgba(255, 255, 255, 0.045), transparent 28vw),
    linear-gradient(135deg, #11100e 0%, var(--burnt-graphite) 42%, var(--burnt-graphite-2) 100%);
  color: #f7f1e8;
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
}

body:has(dialog[open]) {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.topbar {
  min-height: 34px;
  display: grid;
  place-items: center;
  padding: 0 16px;
  background: linear-gradient(180deg, #c89a52, #a87936);
  color: #15100a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(80, 58, 35, 0.14);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 86px;
  display: grid;
  grid-template-columns: minmax(250px, 0.78fr) minmax(460px, 1.45fr) minmax(150px, 0.55fr);
  align-items: center;
  gap: 28px;
  padding: 0 clamp(18px, 4vw, 68px);
}

.brand {
  width: fit-content;
  min-height: 70px;
  display: inline-flex;
  align-items: center;
  padding: 10px 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.brand img {
  width: clamp(230px, 20vw, 340px);
  max-height: 54px;
  object-fit: contain;
  filter: none;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.4vw, 38px);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #15100a;
}

.main-nav a,
.nav-trigger,
.text-link {
  position: relative;
}

.main-nav a::after,
.nav-trigger::after,
.text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: #15100a;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.nav-trigger:hover::after,
.nav-item.is-open .nav-trigger::after,
.text-link:hover::after {
  transform: scaleX(1);
}

.nav-item {
  position: relative;
}

.nav-trigger {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
  padding: 0;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 26px);
  left: 50%;
  z-index: 50;
  width: min(680px, calc(100vw - 48px));
  max-height: min(72vh, 620px);
  overflow: hidden;
  transform: translate(-50%, 10px);
  opacity: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 238, 228, 0.97)),
    #fff;
  border: 1px solid rgba(196, 145, 72, 0.28);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.22);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu,
.nav-item.is-open .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.mega-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 26px 18px;
  border-bottom: 1px solid rgba(80, 58, 35, 0.12);
}

.mega-intro span {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.mega-intro a,
.mega-all-link {
  color: #9f7134;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mega-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.mega-group {
  padding: 22px 24px 26px;
}

.mega-group + .mega-group {
  border-left: 1px solid rgba(80, 58, 35, 0.12);
}

.mega-group summary {
  cursor: pointer;
  list-style: none;
  color: #15100a;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mega-group summary::-webkit-details-marker {
  display: none;
}

.mega-all-link {
  display: inline-flex;
  margin: 16px 0 14px;
}

.mega-brand-list {
  max-height: 280px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
  overflow: auto;
  padding-right: 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(159, 113, 52, 0.65) rgba(80, 58, 35, 0.08);
}

.mega-brand-list::-webkit-scrollbar {
  width: 6px;
}

.mega-brand-list::-webkit-scrollbar-track {
  background: rgba(80, 58, 35, 0.08);
}

.mega-brand-list::-webkit-scrollbar-thumb {
  background: rgba(159, 113, 52, 0.65);
}

.mega-brand-list a {
  color: #342a1d;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-transform: uppercase;
}

.header-icons {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  color: #15100a;
}

.header-icons a {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
}

.header-icons svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.hero {
  position: relative;
  min-height: calc(100vh - 120px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 65% 46%, rgba(184, 141, 77, 0.16), transparent 25%),
    linear-gradient(120deg, #050505, #16130f 54%, #080807);
}

.hero-video-stage,
.hero-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video-stage {
  z-index: 2;
  overflow: hidden;
  background: #050505;
}

.hero-video {
  position: absolute;
  inset: -5%;
  width: 110%;
  height: 110%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1100ms ease;
}

.hero-video.is-active {
  opacity: 1;
}

.hero-video-stage::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(320px, 34vw);
  height: min(150px, 18vh);
  background:
    radial-gradient(circle at 100% 100%, rgba(5, 5, 5, 0.82), rgba(5, 5, 5, 0.4) 38%, transparent 72%);
  pointer-events: none;
}

.hero-placeholder {
  z-index: 1;
  display: grid;
  place-items: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(8, 8, 7, 0.72), rgba(8, 8, 7, 0.16) 52%, rgba(8, 8, 7, 0.48)),
    linear-gradient(0deg, rgba(8, 8, 7, 0.34), rgba(8, 8, 7, 0.02));
}

.hero-content {
  position: relative;
  z-index: 4;
  width: min(720px, calc(100% - 36px));
  color: var(--paper);
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  line-height: 1.02;
  font-weight: 600;
}

h1 {
  font-size: clamp(3rem, 5.4vw, 5.6rem);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2.15rem, 4vw, 4.1rem);
  letter-spacing: 0;
}

h3 {
  font-size: clamp(1.55rem, 2.4vw, 2.55rem);
}

.hero-content p:not(.eyebrow) {
  max-width: 560px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--obsidian);
  padding: 12px 22px;
  background: transparent;
  color: var(--obsidian);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.light {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--obsidian);
}

.button.ghost-light {
  border-color: rgba(255, 255, 255, 0.62);
  color: var(--paper);
}

.button.dark {
  background: var(--obsidian);
  color: var(--paper);
}

.button.outline {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
  color: #f7f1e8;
}

.button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
  transform: none;
}

.text-link {
  color: #f7f1e8;
}

.category-section,
.product-section,
.sensation-section,
.newsletter-section,
.footer {
  padding: clamp(70px, 9vw, 128px) clamp(18px, 4vw, 68px);
}

.category-section,
.product-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 8% 0%, rgba(184, 141, 77, 0.08), transparent 34vw);
}

.catalog-hero {
  padding: clamp(74px, 9vw, 132px) clamp(18px, 4vw, 68px) clamp(44px, 6vw, 76px);
  background:
    radial-gradient(circle at 16% 20%, rgba(184, 141, 77, 0.18), transparent 30vw),
    linear-gradient(135deg, #171410, #0b0a09);
  color: var(--paper);
}

.catalog-hero h1 {
  max-width: 940px;
  margin-bottom: 16px;
  font-size: clamp(3rem, 7vw, 6.8rem);
}

.catalog-hero p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(247, 241, 232, 0.72);
}

.catalog-page .niche-catalog-section {
  padding-top: clamp(42px, 5vw, 70px);
}

.product-page-main {
  padding: clamp(28px, 4vw, 54px) clamp(18px, 5vw, 76px) clamp(48px, 6vw, 86px);
}

.product-page-main .product-detail-layout {
  max-width: 1320px;
  margin: 0 auto;
}

.product-page-main .product-detail-layout h1 {
  max-width: 760px;
  margin: 0 0 12px;
  font-size: clamp(2.35rem, 4.5vw, 4.85rem);
  line-height: 0.96;
  text-wrap: balance;
}

.product-page-main .product-detail-layout .button {
  margin-top: 8px;
}

.section-heading,
.shop-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-heading.centered {
  display: block;
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 30px);
}

.category-card,
.product-image,
.quiz-visual,
.campaign-visual {
  position: relative;
  overflow: hidden;
}

.category-card {
  min-height: clamp(380px, 36vw, 560px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  background:
    linear-gradient(145deg, rgba(184, 141, 77, 0.36), rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.24)),
    #14110e;
  border: 0;
  clip-path: polygon(18px 0, calc(100% - 18px) 0, 100% 18px, 100% calc(100% - 18px), calc(100% - 18px) 100%, 18px 100%, 0 calc(100% - 18px), 0 18px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.category-card img {
  position: absolute;
  inset: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  object-fit: cover;
  clip-path: polygon(17px 0, calc(100% - 17px) 0, 100% 17px, 100% calc(100% - 17px), calc(100% - 17px) 100%, 17px 100%, 0 calc(100% - 17px), 0 17px);
  transition: transform 260ms ease;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  clip-path: polygon(17px 0, calc(100% - 17px) 0, 100% 17px, 100% calc(100% - 17px), calc(100% - 17px) 100%, 17px 100%, 0 calc(100% - 17px), 0 17px);
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.82), transparent 42%),
    radial-gradient(circle at 50% 100%, rgba(184, 141, 77, 0.22), transparent 36%);
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.34);
  pointer-events: none;
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 1;
  border: 1px solid rgba(231, 222, 210, 0.22);
  clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
  pointer-events: none;
}

.category-card:hover img {
  transform: scale(1.035);
}

.category-card strong {
  position: relative;
  z-index: 2;
  min-width: min(220px, calc(100% - 58px));
  margin-bottom: 26px;
  padding: 10px 18px;
  background: rgba(8, 8, 7, 0.52);
  border: 1px solid rgba(231, 222, 210, 0.22);
  backdrop-filter: blur(8px);
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.bottle-shape {
  width: clamp(78px, 8vw, 130px);
  aspect-ratio: 0.68;
  border: 2px solid currentColor;
  border-radius: 24px 24px 28px 28px;
  color: var(--obsidian);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(184, 141, 77, 0.11)),
    rgba(255, 255, 255, 0.32);
  box-shadow:
    inset 0 0 0 7px rgba(255, 255, 255, 0.42),
    0 22px 58px rgba(0, 0, 0, 0.12);
  position: relative;
}

.tone-dark .bottle-shape,
.hero-bottle {
  color: rgba(255, 255, 255, 0.82);
}

.bottle-shape::before {
  content: "";
  position: absolute;
  top: -34px;
  left: 50%;
  width: 56%;
  height: 26px;
  border: 2px solid currentColor;
  background: currentColor;
  transform: translateX(-50%);
  clip-path: polygon(14% 0, 86% 0, 100% 50%, 86% 100%, 14% 100%, 0 50%);
}

.bottle-shape::after {
  content: "JC";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  font-weight: 600;
}

.hero-bottle {
  width: clamp(160px, 18vw, 280px);
  transform: translate(26vw, 3vh);
  opacity: 0.74;
}

.hero-reflection {
  position: absolute;
  width: min(420px, 42vw);
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(184, 141, 77, 0.22), transparent 68%);
  transform: translate(26vw, 28vh);
}

.mist {
  position: absolute;
  width: 36vw;
  height: 36vw;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 66%);
  filter: blur(18px);
  pointer-events: none;
}

.mist-a {
  left: 10%;
  top: 18%;
}

.mist-b {
  right: 6%;
  bottom: 12%;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px 22px;
  align-items: start;
}

.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: -20px 0 34px;
}

.catalog-filters label {
  min-width: min(260px, 100%);
  display: grid;
  gap: 8px;
  margin: 0;
  color: rgba(247, 241, 232, 0.66);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-filters select {
  min-height: 46px;
  border: 1px solid rgba(232, 220, 204, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #f7f1e8;
  padding: 0 14px;
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
}

.catalog-filters option {
  color: #171717;
}

.best-sellers-section {
  padding-top: 0;
}

.product-card {
  position: relative;
  display: grid;
  gap: 13px;
  content-visibility: auto;
  contain-intrinsic-size: 560px;
}

.product-image {
  aspect-ratio: 3 / 4;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #27221d, #151310);
  border: 1px solid var(--line);
  contain: layout paint;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: none;
  backface-visibility: hidden;
}

.product-image-arabe {
  background:
    radial-gradient(circle at 50% 42%, rgba(184, 141, 77, 0.18), transparent 34%),
    linear-gradient(145deg, #2b251e, #100f0d 68%, #070706);
}

.product-image-arabe img,
.product-image.image-fit-editorial img {
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}

.offer-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 6px 10px;
  background: var(--gold);
  color: #0b0a09;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-image.dark {
  background:
    radial-gradient(circle at 50% 42%, rgba(184, 141, 77, 0.18), transparent 30%),
    var(--obsidian);
  color: var(--paper);
}

.product-image.light {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.18), transparent 30%),
    #2a251f;
  color: rgba(255, 255, 255, 0.86);
}

.product-image.sand {
  background:
    radial-gradient(circle at 50% 42%, rgba(184, 141, 77, 0.18), transparent 31%),
    linear-gradient(145deg, #302920, #191611);
  color: rgba(255, 255, 255, 0.84);
}

.product-card h3 {
  font-family: Inter, Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-card p {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.88rem;
}

.product-meta > span:first-child {
  display: grid;
  gap: 2px;
}

.product-meta del {
  color: rgba(247, 241, 232, 0.42);
}

.price {
  color: #fff8ec;
  font-weight: 800;
}

.pix-price {
  display: block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.compare-toggle {
  width: 46px;
  height: 46px;
  border: 1px solid var(--obsidian);
  background: rgba(255, 255, 255, 0.06);
  color: #f7f1e8;
  cursor: pointer;
  font-size: 1.05rem;
}

.compare-toggle.active {
  background: var(--gold);
  color: var(--paper);
}

.compare-section {
  margin: 0 clamp(18px, 4vw, 68px) clamp(70px, 9vw, 128px);
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 88% 18%, rgba(184, 141, 77, 0.1), transparent 28vw),
    rgba(255, 255, 255, 0.045);
}

.compare-tab {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.compare-section > p {
  margin: 14px 0 0;
  color: var(--muted);
}

.compare-search {
  display: grid;
  gap: 8px;
  margin-top: 20px;
  max-width: 720px;
}

.compare-search label {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.compare-search input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(232, 220, 204, 0.22);
  background: rgba(8, 7, 5, 0.72);
  color: #f7f1e8;
  padding: 0 18px;
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.compare-search input:focus {
  border-color: rgba(184, 141, 77, 0.86);
  box-shadow: 0 0 0 3px rgba(184, 141, 77, 0.14);
  background: rgba(8, 7, 5, 0.9);
}

.compare-picks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.compare-pick {
  display: grid;
  gap: 9px;
  align-content: start;
  min-height: 190px;
  border: 1px solid rgba(232, 220, 204, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #f7f1e8;
  padding: 12px;
  cursor: pointer;
  text-align: left;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.compare-pick:hover,
.compare-pick.active {
  border-color: rgba(184, 141, 77, 0.82);
  background: rgba(184, 141, 77, 0.12);
  transform: translateY(-2px);
}

.compare-pick img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #f6f3ef;
}

.compare-pick span {
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compare-pick strong {
  font-size: 0.78rem;
  line-height: 1.25;
}

.compact-button {
  min-height: 38px;
  padding: 8px 14px;
}

.quiz-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(70px, 9vw, 128px) clamp(18px, 4vw, 68px);
  background:
    radial-gradient(circle at 18% 26%, rgba(184, 141, 77, 0.11), transparent 28vw),
    linear-gradient(135deg, #211d18, #14120f);
}

.quiz-visual {
  min-height: 560px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(184, 141, 77, 0.18), transparent 28%),
    linear-gradient(145deg, #302920, #16130f);
}

.quiz-content {
  max-width: 620px;
}

.quiz-content > p:not(.eyebrow),
.newsletter-section p,
.sensation-panel p {
  color: var(--muted);
}

.quiz-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
  margin-top: 26px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(184, 141, 77, 0.28);
}

.quiz-card button {
  grid-column: 1 / -1;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

legend {
  margin-bottom: 10px;
  font-weight: 800;
}

label {
  display: block;
  margin: 8px 0;
  color: #d8cec0;
}

input[type="radio"] {
  accent-color: var(--gold);
}

.quiz-result {
  margin-top: 18px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
}

.quiz-result h3 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.quiz-podium {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.quiz-recommendation {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
  min-height: 0;
  padding: 18px;
  border: 1px solid rgba(232, 220, 204, 0.14);
  background:
    radial-gradient(circle at 20% 0%, rgba(184, 141, 77, 0.13), transparent 58%),
    rgba(255, 255, 255, 0.045);
}

.quiz-recommendation > div {
  min-width: 0;
}

.quiz-recommendation.rank-1 {
  grid-column: span 3;
  grid-template-columns: minmax(190px, 0.42fr) minmax(0, 1fr);
  min-height: 0;
  border-color: rgba(184, 141, 77, 0.72);
  background:
    radial-gradient(circle at 18% 0%, rgba(184, 141, 77, 0.24), transparent 58%),
    rgba(255, 255, 255, 0.065);
}

.quiz-rec-image {
  display: block;
  overflow: hidden;
  background: #f6f3ef;
}

.quiz-rec-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

.quiz-recommendation.rank-1 .quiz-rec-image img {
  aspect-ratio: 1 / 1.08;
}

.rank-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  background: rgba(8, 8, 7, 0.78);
  border: 1px solid rgba(184, 141, 77, 0.52);
  color: var(--gold);
  padding: 6px 9px;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quiz-recommendation small {
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quiz-recommendation strong {
  display: block;
  margin: 5px 0 8px;
  color: #fff;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.12;
}

.quiz-recommendation p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.quiz-rec-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sensation-section {
  background:
    radial-gradient(circle at 80% 10%, rgba(184, 141, 77, 0.08), transparent 28vw),
    linear-gradient(180deg, var(--burnt-graphite), #14120f);
}

.sensation-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.sensation-tab {
  min-height: 44px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  color: #f7f1e8;
  padding: 10px 16px;
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sensation-tab.active {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.sensation-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(320px, 1fr);
  gap: 18px;
  max-width: 1160px;
  margin: 0 auto;
}

.sensation-panel > div:first-child,
.mini-product {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
}

.sensation-panel > div:first-child {
  display: grid;
  align-content: center;
  padding: clamp(26px, 4vw, 52px);
}

.mood-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.mini-product {
  min-height: 220px;
  display: grid;
  align-content: end;
  padding: 22px;
}

.mini-product strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 600;
}

.mini-product small {
  color: var(--gold-dark);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.occasion-section {
  padding: clamp(76px, 9vw, 132px) clamp(18px, 4vw, 76px);
  background:
    radial-gradient(circle at 18% 16%, rgba(184, 141, 77, 0.16), transparent 30vw),
    radial-gradient(circle at 92% 18%, rgba(255, 255, 255, 0.05), transparent 28vw),
    linear-gradient(180deg, #14120f 0%, var(--burnt-graphite) 54%, #0b0a09 100%);
  color: var(--paper);
}

.occasion-section > .section-heading,
.occasion-section > .sensation-tabs,
.occasion-section > .sensation-panel {
  display: none;
}

.occasion-intro {
  max-width: 920px;
  margin: 0 auto clamp(34px, 5vw, 58px);
  text-align: center;
}

.occasion-intro h2 {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
}

.occasion-intro p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(247, 241, 232, 0.72);
}

.occasion-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
  max-width: 1320px;
  margin: 0 auto;
}

.occasion-card {
  position: relative;
  min-height: 178px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  padding: 22px 14px;
  border: 1px solid rgba(232, 220, 204, 0.13);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(8, 8, 7, 0.42);
  color: rgba(247, 241, 232, 0.78);
  cursor: pointer;
  overflow: hidden;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease, background 240ms ease, color 240ms ease;
}

.occasion-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(184, 141, 77, 0.3), transparent 38%, rgba(255, 255, 255, 0.09)) border-box;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.occasion-card::after {
  content: "";
  position: absolute;
  inset: auto 18% -38% 18%;
  height: 78px;
  background: radial-gradient(circle, rgba(184, 141, 77, 0.34), transparent 68%);
  opacity: 0;
  transition: opacity 240ms ease, transform 240ms ease;
}

.occasion-card:hover,
.occasion-card:focus-visible,
.occasion-card.active {
  transform: translateY(-4px);
  border-color: rgba(184, 141, 77, 0.58);
  background:
    radial-gradient(circle at 50% 12%, rgba(184, 141, 77, 0.15), transparent 46%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(8, 8, 7, 0.62);
  color: var(--paper);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24), 0 0 0 1px rgba(184, 141, 77, 0.08);
}

.occasion-card:hover::before,
.occasion-card:focus-visible::before,
.occasion-card.active::before,
.occasion-card:hover::after,
.occasion-card:focus-visible::after,
.occasion-card.active::after {
  opacity: 1;
}

.occasion-card:hover::after,
.occasion-card:focus-visible::after,
.occasion-card.active::after {
  transform: translateY(-10px);
}

.occasion-card:focus-visible {
  outline: 2px solid rgba(184, 141, 77, 0.8);
  outline-offset: 4px;
}

.occasion-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: rgba(184, 141, 77, 0.7);
  transition: transform 240ms ease, color 240ms ease, filter 240ms ease;
}

.occasion-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.occasion-card:hover .occasion-icon,
.occasion-card:focus-visible .occasion-icon,
.occasion-card.active .occasion-icon {
  transform: scale(1.08);
  color: var(--gold);
  filter: drop-shadow(0 0 14px rgba(184, 141, 77, 0.28));
}

.occasion-card > span:not(.occasion-icon) {
  position: relative;
  z-index: 1;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.occasion-card small {
  position: relative;
  z-index: 1;
  max-width: 130px;
  color: rgba(247, 241, 232, 0.56);
  font-size: 0.78rem;
  line-height: 1.35;
  text-align: center;
}

.occasion-card:hover small,
.occasion-card:focus-visible small,
.occasion-card.active small {
  color: rgba(247, 241, 232, 0.78);
}

.occasion-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  gap: 18px;
  max-width: 1180px;
  margin: clamp(26px, 4vw, 46px) auto 0;
}

.occasion-panel-copy,
.occasion-product {
  border: 1px solid rgba(232, 220, 204, 0.14);
  background: rgba(255, 255, 255, 0.052);
}

.occasion-panel-copy {
  display: grid;
  align-content: center;
  padding: clamp(28px, 4vw, 48px);
}

.occasion-panel-copy h3 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 0.98;
  font-weight: 600;
}

.occasion-panel-copy p:not(.eyebrow) {
  color: rgba(247, 241, 232, 0.7);
}

.occasion-picks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.occasion-product {
  min-height: 360px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 22px;
  background:
    radial-gradient(circle at 50% 28%, rgba(184, 141, 77, 0.11), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
}

.occasion-product-image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.05;
  margin-bottom: 10px;
  overflow: hidden;
  background: #f6f3ef;
}

.occasion-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.occasion-product span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.occasion-product strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.85rem;
  line-height: 1;
  font-weight: 600;
}

.occasion-product p {
  margin: 0 0 12px;
  color: rgba(247, 241, 232, 0.68);
}

.campaign-banner {
  position: relative;
  min-height: 540px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: 36px;
  padding: clamp(70px, 9vw, 128px) clamp(18px, 4vw, 68px);
  background:
    radial-gradient(circle at 26% 50%, rgba(184, 141, 77, 0.15), transparent 28vw),
    linear-gradient(120deg, #090807, #201b16 62%, #0b0a09);
  color: var(--paper);
}

.campaign-image {
  width: 100%;
  min-height: 420px;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(231, 222, 210, 0.16);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
}

.selection-jc-image {
  object-position: center;
  background: #0d0b09;
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
  box-shadow:
    0 34px 80px rgba(0, 0, 0, 0.32),
    inset 0 0 0 1px rgba(184, 141, 77, 0.18);
}

.campaign-cutout-frame {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  padding: clamp(32px, 5vw, 70px);
  overflow: hidden;
  border: 1px solid rgba(231, 222, 210, 0.13);
  background:
    radial-gradient(circle at 50% 52%, rgba(184, 141, 77, 0.2), transparent 32%),
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(135deg, #282119 0%, #0f0d0b 58%, #050505 100%);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.26);
}

.campaign-cutout-frame::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(184, 141, 77, 0.22);
  clip-path: polygon(22px 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%, 0 22px);
  pointer-events: none;
}

.campaign-cutout-frame::after {
  content: "";
  position: absolute;
  right: 16%;
  bottom: 16%;
  left: 16%;
  height: 22px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.48), transparent 70%);
  filter: blur(8px);
}

.campaign-cutout-image {
  position: relative;
  z-index: 1;
  width: min(88%, 620px);
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, 0.48));
}

.campaign-visual {
  min-height: 420px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(184, 141, 77, 0.18), transparent 30%),
    linear-gradient(135deg, #282119, #050505);
}

.campaign-content {
  max-width: 620px;
}

.campaign-content p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.campaign-content h2 {
  margin-bottom: 16px;
}

.newsletter-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.8fr);
  gap: 28px;
  align-items: center;
  background:
    radial-gradient(circle at 80% 40%, rgba(184, 141, 77, 0.1), transparent 26vw),
    linear-gradient(135deg, #24201a, #151310);
}

.newsletter {
  display: grid;
  gap: 10px;
}

.newsletter label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.newsletter div {
  display: flex;
  gap: 10px;
}

.newsletter input {
  min-width: 0;
  flex: 1;
  min-height: 48px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  color: #f7f1e8;
  padding: 0 14px;
}

.newsletter button {
  min-height: 48px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--paper);
  padding: 0 18px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer {
  display: grid;
  grid-template-columns: minmax(220px, 1.35fr) repeat(4, minmax(140px, 0.7fr));
  gap: 28px;
  background:
    linear-gradient(180deg, #151310, #080807);
  color: var(--paper);
}

.footer > div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-logo {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.2rem;
  color: var(--paper);
}

.footer a,
.footer p {
  color: rgba(255, 255, 255, 0.62);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.pill {
  border: 1px solid var(--line);
  padding: 6px 9px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.compare-modal {
  width: min(1180px, calc(100vw - 28px));
  border: 1px solid var(--obsidian);
  background: #171410;
  color: #f7f1e8;
  padding: 28px;
}

.compare-modal::backdrop {
  background: rgba(0, 0, 0, 0.58);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: #211d18;
  color: #f7f1e8;
  cursor: pointer;
  font-size: 1.4rem;
}

.compare-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.compare-column {
  display: grid;
  gap: 10px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
}

.compare-column img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #f6f3ef;
}

.compare-column h3 {
  margin: 4px 0;
  font-size: 1.15rem;
}

.compare-column p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.compare-column strong {
  color: #fff;
}

.compare-notes {
  display: grid;
  gap: 8px;
  margin: 4px 0;
}

.compare-notes span {
  display: grid;
  gap: 2px;
  padding: 9px;
  border: 1px solid rgba(232, 220, 204, 0.12);
  color: var(--muted);
  font-size: 0.78rem;
}

.cart-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(184, 141, 77, 0.62);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 20%, rgba(211, 174, 111, 0.2), transparent 52%),
    #080706;
  color: #f7f1e8;
  cursor: pointer;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.32);
}

.cart-float svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-float span {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #0b0a09;
  font-size: 0.7rem;
  font-weight: 900;
}

.cart-drawer {
  width: min(460px, calc(100vw - 24px));
  max-height: min(760px, calc(100vh - 24px));
  margin: auto 12px auto auto;
  border: 1px solid rgba(184, 141, 77, 0.34);
  background:
    radial-gradient(circle at 86% 10%, rgba(184, 141, 77, 0.15), transparent 28vw),
    linear-gradient(135deg, #211d18, #0d0c0a);
  color: #f7f1e8;
  padding: 24px;
}

.cart-drawer::backdrop {
  background: rgba(0, 0, 0, 0.62);
}

.cart-drawer-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.cart-drawer h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
}

.cart-list {
  display: grid;
  gap: 12px;
  max-height: min(46vh, 430px);
  overflow-y: auto;
  padding-right: 6px;
}

.cart-item {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(232, 220, 204, 0.14);
  background: rgba(255, 255, 255, 0.045);
}

.cart-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #f6f3ef;
}

.cart-item strong,
.cart-item span,
.cart-item small {
  display: block;
}

.cart-item strong {
  line-height: 1.2;
}

.cart-item span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.84rem;
}

.cart-item small {
  margin-top: 5px;
  color: var(--gold);
  font-weight: 850;
}

.cart-qty {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin-top: 10px;
}

.cart-qty button {
  min-width: 30px;
  height: 30px;
  border: 1px solid rgba(232, 220, 204, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: #f7f1e8;
  cursor: pointer;
  font-weight: 850;
}

.cart-qty button:last-child {
  width: auto;
  padding: 0 10px;
  color: var(--muted);
}

.cart-empty {
  margin: 0;
  color: var(--muted);
}

.cart-summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 18px 0;
  padding-top: 16px;
  border-top: 1px solid rgba(232, 220, 204, 0.16);
}

.cart-summary span {
  color: var(--muted);
}

.cart-summary strong {
  color: #fff;
  font-size: 1.2rem;
}

.cart-checkout {
  width: 100%;
}

.cart-checkout:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.product-modal {
  width: min(1040px, calc(100vw - 28px));
  border: 1px solid rgba(184, 141, 77, 0.24);
  padding: 32px;
  background:
    radial-gradient(circle at 18% 16%, rgba(184, 141, 77, 0.16), transparent 28vw),
    linear-gradient(135deg, #191714, #0b0a09);
  color: #f7f1e8;
}

.product-modal::backdrop {
  background: rgba(0, 0, 0, 0.72);
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1fr);
  gap: clamp(28px, 4.5vw, 60px);
  align-items: center;
}

.product-detail-layout .product-image {
  min-height: 520px;
}

.product-detail-layout h2 {
  margin: 0 0 14px;
}

.product-detail-layout p {
  color: var(--muted);
}

.detail-price {
  display: grid;
  gap: 2px;
  margin: 16px 0;
}

.detail-price strong {
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.detail-price span {
  color: var(--gold);
  font-weight: 850;
}

.detail-price del,
.detail-price small {
  color: rgba(247, 241, 232, 0.58);
}

.notes-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.notes-list div {
  padding: 16px;
  border: 1px solid rgba(232, 220, 204, 0.14);
  background: rgba(255, 255, 255, 0.045);
}

.notes-list dt {
  margin-bottom: 4px;
  color: var(--gold);
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.notes-list dd {
  margin: 0;
  color: var(--muted);
}

.pdp-shell {
  display: grid;
  gap: clamp(24px, 3.4vw, 46px);
}

.pdp-hero {
  align-items: start;
}

.pdp-gallery {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.pdp-main-image {
  grid-column: 2;
  grid-row: 1;
  min-height: 390px;
  height: min(62vh, 560px);
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(232, 220, 204, 0.16);
  background:
    radial-gradient(circle at 50% 44%, rgba(184, 141, 77, 0.08), transparent 34%),
    linear-gradient(145deg, #fffdfa, #f1ece4);
  clip-path: polygon(18px 0, calc(100% - 18px) 0, 100% 18px, 100% calc(100% - 18px), calc(100% - 18px) 100%, 18px 100%, 0 calc(100% - 18px), 0 18px);
}

.pdp-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  padding: 0;
  mix-blend-mode: normal;
}

.pdp-main-image-arabe {
  background:
    radial-gradient(circle at 50% 44%, rgba(184, 141, 77, 0.1), transparent 34%),
    linear-gradient(145deg, #fffdfa, #f1ece4);
}

.pdp-main-image-arabe img,
.pdp-main-image.image-fit-editorial img {
  object-fit: cover;
  transform: scale(1.01);
}

.pdp-thumbs {
  grid-column: 1;
  grid-row: 1;
  display: grid;
  grid-auto-flow: row;
  grid-auto-rows: 74px;
  gap: 8px;
  max-height: min(62vh, 560px);
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(184, 141, 77, 0.62) rgba(255, 255, 255, 0.055);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
}

.pdp-thumbs::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.pdp-thumbs::-webkit-scrollbar-track {
  background:
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.07), transparent);
  border-radius: 999px;
}

.pdp-thumbs::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(211, 174, 111, 0.85), rgba(122, 88, 42, 0.7));
  box-shadow: 0 0 10px rgba(184, 141, 77, 0.22);
}

.pdp-thumbs::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}

.pdp-thumbs button {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(232, 220, 204, 0.18);
  background: rgba(255, 255, 255, 0.045);
  color: #f7f1e8;
  cursor: pointer;
  padding: 5px;
  text-align: center;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.pdp-thumbs button.active,
.pdp-thumbs button:hover {
  border-color: rgba(184, 141, 77, 0.9);
  background: rgba(184, 141, 77, 0.13);
  transform: translateY(-1px);
}

.pdp-thumbs img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transform: scale(1.01);
  background: #fffdfa;
}

.pdp-thumbs span {
  display: none;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pdp-info {
  display: grid;
  gap: 10px;
  align-content: start;
}

.pdp-info > p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
}

.variant-picker {
  display: grid;
  gap: 8px;
  max-width: 420px;
  margin: 4px 0 10px;
}

.variant-picker span {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.variant-picker select {
  min-height: 46px;
  border: 1px solid rgba(232, 220, 204, 0.2);
  background: rgba(255, 255, 255, 0.065);
  color: #f7f1e8;
  padding: 0 14px;
  font: inherit;
  font-weight: 700;
}

.variant-picker option {
  color: #171717;
}

.pdp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pdp-panel {
  max-width: 1220px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(232, 220, 204, 0.14);
  background:
    radial-gradient(circle at 88% 18%, rgba(184, 141, 77, 0.1), transparent 28vw),
    rgba(255, 255, 255, 0.045);
}

.pdp-section-heading {
  margin-bottom: 24px;
}

.pdp-section-heading h2 {
  font-size: clamp(2rem, 3.8vw, 4rem);
}

.muted-copy {
  color: var(--muted);
}

.note-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.note-layer {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(232, 220, 204, 0.14);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
}

.note-orbit {
  position: absolute;
  top: -42px;
  right: -28px;
  width: 128px;
  height: 128px;
  border: 1px solid rgba(184, 141, 77, 0.24);
  border-radius: 999px;
}

.note-layer strong {
  position: relative;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.note-chips {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.note-chips span {
  border: 1px solid rgba(232, 220, 204, 0.15);
  background: rgba(8, 8, 7, 0.28);
  color: #f7f1e8;
  padding: 8px 10px;
  font-size: 0.82rem;
}

.pdp-usage > p {
  max-width: 780px;
  color: var(--muted);
}

.usage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.usage-grid span {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(232, 220, 204, 0.14);
  background: rgba(255, 255, 255, 0.045);
  padding: 16px;
}

.usage-grid strong {
  color: #fff8ec;
}

.usage-grid small {
  color: var(--gold);
  font-weight: 800;
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .brand {
    order: 1;
  }

  .header-icons {
    order: 2;
  }

  .main-nav {
    grid-column: 1 / -1;
    order: 3;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0 0 16px;
  }

  .nav-item {
    position: static;
  }

  .mega-menu {
    top: calc(100% - 2px);
    left: 16px;
    right: 16px;
    width: auto;
    transform: translateY(8px);
  }

  .nav-item:hover .mega-menu,
  .nav-item:focus-within .mega-menu,
  .nav-item.is-open .mega-menu {
    transform: translateY(0);
  }

  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .quiz-podium {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quiz-recommendation.rank-1 {
    grid-column: span 2;
  }

  .occasion-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .quiz-section,
  .sensation-panel,
  .campaign-banner,
  .newsletter-section,
  .footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .topbar {
    font-size: 0.64rem;
  }

  .header-inner {
    min-height: 74px;
    gap: 14px;
    padding: 0 16px;
  }

  .brand img {
    width: 190px;
  }

  .header-icons {
    gap: 12px;
  }

  .quiz-podium,
  .quiz-recommendation.rank-1 {
    grid-template-columns: 1fr;
  }

  .quiz-recommendation.rank-1 {
    grid-column: auto;
  }

  .quiz-rec-image img,
  .quiz-recommendation.rank-1 .quiz-rec-image img {
    aspect-ratio: 1 / 1;
  }

  .cart-drawer {
    width: calc(100vw - 18px);
    margin: auto auto 9px;
    padding: 20px;
  }

  .header-icons a:nth-child(2),
  .header-icons a:nth-child(3) {
    display: none;
  }

  .main-nav {
    gap: 18px;
    font-size: 0.7rem;
  }

  .mega-menu {
    max-height: 70vh;
    overflow: auto;
  }

  .mega-intro {
    padding: 18px;
  }

  .mega-intro span {
    font-size: 1.65rem;
  }

  .mega-columns {
    grid-template-columns: 1fr;
  }

  .mega-group + .mega-group {
    border-left: 0;
    border-top: 1px solid rgba(80, 58, 35, 0.12);
  }

  .mega-brand-list {
    grid-template-columns: 1fr;
    max-height: 220px;
  }

  .hero {
    min-height: 76vh;
  }

  .hero-bottle {
    transform: translate(14vw, 4vh);
  }

  .hero-content {
    align-self: end;
    padding-bottom: 54px;
  }

  h1 {
    font-size: 2.9rem;
  }

  .section-heading,
  .shop-heading {
    display: block;
  }

  .category-grid,
  .product-grid,
  .mood-products,
  .occasion-picks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .occasion-grid {
    display: flex;
    gap: 12px;
    margin-right: -18px;
    margin-left: -18px;
    padding: 0 18px 12px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }

  .occasion-card {
    min-width: 190px;
    scroll-snap-align: start;
  }

  .occasion-panel {
    grid-template-columns: 1fr;
  }

  .product-detail-layout {
    grid-template-columns: 1fr;
  }

  .product-page-main .product-detail-layout h1 {
    font-size: clamp(2.15rem, 8vw, 3.9rem);
  }

  .product-detail-layout .product-image {
    min-height: 360px;
  }

  .pdp-gallery {
    grid-template-columns: 1fr;
  }

  .pdp-main-image {
    grid-column: 1;
    grid-row: 1;
    min-height: 360px;
    height: min(56vh, 460px);
  }

  .pdp-thumbs {
    grid-column: 1;
    grid-row: 2;
    grid-auto-flow: column;
    grid-auto-columns: minmax(72px, 92px);
    grid-auto-rows: auto;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0 8px;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
  }

  .note-grid,
  .usage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-card {
    min-height: auto;
    aspect-ratio: 4 / 5;
  }

  .category-card img {
    inset: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    object-fit: contain;
    object-position: center;
    background:
      radial-gradient(circle at 50% 48%, rgba(184, 141, 77, 0.16), transparent 42%),
      linear-gradient(145deg, rgba(38, 32, 26, 0.92), rgba(8, 8, 7, 0.98));
    clip-path: polygon(14px 0, calc(100% - 14px) 0, 100% 14px, 100% calc(100% - 14px), calc(100% - 14px) 100%, 14px 100%, 0 calc(100% - 14px), 0 14px);
  }

  .category-card::after {
    inset: 10px;
    clip-path: polygon(14px 0, calc(100% - 14px) 0, 100% 14px, 100% calc(100% - 14px), calc(100% - 14px) 100%, 14px 100%, 0 calc(100% - 14px), 0 14px);
    background:
      linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 32%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.1), transparent 20%);
  }

  .quiz-visual,
  .campaign-visual {
    min-height: 390px;
  }

  .product-card p,
  .product-actions .button {
    display: none;
  }

  .product-actions {
    grid-template-columns: auto;
  }

  .newsletter div {
    display: grid;
  }
}

@media (max-width: 480px) {
  .category-grid,
  .product-grid,
  .mood-products,
  .occasion-picks {
    grid-template-columns: 1fr;
  }

  .category-card {
    aspect-ratio: 3 / 4;
  }

  .hero-actions {
    display: grid;
  }

  .note-grid,
  .usage-grid {
    grid-template-columns: 1fr;
  }

  .pdp-main-image {
    min-height: 310px;
    height: min(52vh, 380px);
  }

  .pdp-main-image img {
    padding: 0;
  }
}
