@import url('https://fonts.googleapis.com/css2?family=Amiri:wght@400;700&family=Aref+Ruqaa:wght@400;700&family=Cairo:wght@400;500;600;700;800;900&family=El+Messiri:wght@400;600;700&family=IBM+Plex+Sans+Arabic:wght@600;700&family=Lateef:wght@400;700&family=Noto+Kufi+Arabic:wght@500;700&family=Noto+Naskh+Arabic:wght@500;700&family=Reem+Kufi:wght@400;600;700&family=Scheherazade+New:wght@400;700&display=swap');

:root {
  --brand-accent: #b99152;
  --brand-dark: #211914;
  --ivory: #f6f2ea;
  --ivory-deep: #ede5d8;
  --paper: #fbf9f4;
  --ink: #211914;
  --ink-soft: #574c43;
  --muted: #8b8178;
  --bronze: var(--brand-accent);
  --line: rgba(46, 35, 27, .14);
  --line-light: rgba(255, 255, 255, .18);
  --white: #fffdf9;
  --green: #20352c;
  --success: #38624e;
  --danger: #924e45;
  --header-cream: #f7efe4;
  --header-gold: #c5a059;
  --header-ink: #3a2c1f;
  --ease: cubic-bezier(.22, .72, .28, 1);
  --radius: 14px;
  --radius-sm: 10px;
  --serif-ar: "Cairo", sans-serif;
  --display-ar: "El Messiri", "Cairo", sans-serif;
  --serif-en: "Cairo", system-ui, sans-serif;
  --sans: "Cairo", system-ui, sans-serif;
  --fs-caption: 16px;
  --fs-body: 20px;
  --fs-ui: 19px;
  --fs-btn: 18px;
  --fs-nav: 16px;
  --hero-bg-top: #2c2218;
  --hero-bg-mid: #1e1611;
  --hero-bg-end: #14100c;
  --hero-veil: rgba(16, 11, 8, .4);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

body.menu-is-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

bdi {
  unicode-bidi: isolate;
}

::selection {
  background: #d5bd95;
  color: #211914;
}

:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 4px;
}

.icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.raheeq-site {
  min-height: 100vh;
  overflow: clip;
  background: var(--ivory);
}

.eyebrow {
  display: inline-block;
  color: var(--bronze);
  font: 700 var(--fs-caption)/1.5 var(--sans);
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.eyebrow.is-light {
  color: #e6c995;
}

.is-light-hero .hero-product-note,
.is-light-hero .hero-descend,
.is-light-hero .spray-hint {
  color: var(--ink-soft);
}

.is-light-hero .hero-product-note {
  border-color: rgba(46, 35, 27, .14);
}

.is-light-hero .hero-whatsapp {
  border-color: rgba(197, 160, 89, .7);
  color: #8a6a32;
}

.royal-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 13px 26px;
  font-size: var(--fs-btn);
  font-weight: 700;
  line-height: 1.6;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}

.royal-button .icon,
.text-link .icon,
.image-cue .icon {
  width: 17px;
  transform: rotate(180deg);
  transition: transform .25s var(--ease);
}

.royal-button .icon-mark,
.product-action .icon-mark,
.bestseller-wa .icon-mark,
.hero-whatsapp .icon-mark {
  transform: none;
}

.royal-button:hover:not(.is-disabled) {
  border-color: var(--bronze);
  background: var(--bronze);
  box-shadow: 0 12px 28px rgba(201, 164, 92, .28);
  transform: translateY(-2px);
}

.royal-button:hover .icon {
  transform: rotate(180deg) translateX(5px);
}

.royal-button.is-light {
  border-color: #fff8e8;
  background: #fff8e8;
  color: #1b110b;
}

.royal-button.is-light:hover {
  border-color: #c9a45c;
  background: #c9a45c;
  box-shadow: 0 14px 32px rgba(201, 164, 92, .38);
  color: #1b110b;
}

.royal-button.is-outline {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.royal-button.is-disabled {
  border-color: #bdb5aa;
  background: #bdb5aa;
  color: #f7f3ed;
  cursor: default;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 6px;
  font-size: var(--fs-ui);
  font-weight: 700;
}

.text-link:hover .icon {
  transform: rotate(180deg) translateX(4px);
}

/* Header */
.site-ribbon {
  position: relative;
  z-index: 80;
  display: flex;
  height: 42px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #d4b36a 0%, var(--header-gold) 100%);
  color: var(--header-ink);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
}

.site-ribbon span {
  max-width: min(92vw, 720px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-header {
  position: relative;
  z-index: 70;
  height: 82px;
  border-bottom: 1px solid rgba(197, 160, 89, .28);
  background: var(--header-cream);
  color: var(--header-ink);
  transition: height .35s var(--ease), background .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease), transform .35s var(--ease);
  backdrop-filter: blur(16px);
}

@media (min-width: 1021px) {
  .site-header {
    height: 76px;
  }

  .site-header.is-transparent.is-scrolled {
    height: 70px;
  }

  .logo-crown,
  .logo-mark {
    width: 52px;
    height: 52px;
  }

  .logo-copy strong {
    font-size: 24px;
  }

  .raheeq-logo {
    gap: 10px;
  }
}

.site-header.is-transparent {
  position: absolute;
  top: 42px;
  right: 0;
  left: 0;
  border-color: rgba(197, 160, 89, .22);
  background: linear-gradient(180deg, rgba(247, 239, 228, .82), rgba(247, 239, 228, .18));
  color: var(--header-ink);
  backdrop-filter: blur(10px);
}

.site-header.is-transparent.is-scrolled {
  position: fixed;
  top: 0;
  height: 76px;
  border-color: rgba(197, 160, 89, .32);
  background: rgba(247, 239, 228, .96);
  color: var(--header-ink);
  box-shadow: 0 10px 28px rgba(58, 44, 31, .1);
  backdrop-filter: blur(16px);
  animation: headerIn .35s var(--ease);
}

@keyframes headerIn {
  from { transform: translateY(-100%); }
  to { transform: none; }
}

.header-inner {
  display: grid;
  width: min(100%, 1600px);
  height: 100%;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  margin: auto;
  padding: 0 clamp(20px, 4vw, 64px);
}

.raheeq-logo {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  min-width: 0;
  align-items: center;
  gap: 14px;
  justify-self: start;
}

.logo-crown,
.logo-mark {
  display: block;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  overflow: visible;
  border: 0;
  background: none;
  object-fit: contain;
  object-position: center;
}

.logo-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1;
}

html[data-display-font="aref"] { --display-ar: "Aref Ruqaa", "Cairo", serif; }
html[data-display-font="amiri"] { --display-ar: "Amiri", "Cairo", serif; }
html[data-display-font="reem"] { --display-ar: "Reem Kufi", "Cairo", sans-serif; }
html[data-display-font="messiri"] { --display-ar: "El Messiri", "Cairo", sans-serif; }
html[data-display-font="naskh"] { --display-ar: "Noto Naskh Arabic", "Cairo", serif; }
html[data-display-font="kufi"] { --display-ar: "Noto Kufi Arabic", "Cairo", sans-serif; }
html[data-display-font="lateef"] { --display-ar: "Lateef", "Cairo", serif; }
html[data-display-font="scheherazade"] { --display-ar: "Scheherazade New", "Cairo", serif; }
html[data-display-font="plex"] { --display-ar: "IBM Plex Sans Arabic", "Cairo", sans-serif; }

.logo-copy strong {
  color: var(--ink-soft);
  font-family: var(--display-ar);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
  word-spacing: 0;
  white-space: nowrap;
}

.logo-copy small {
  margin-top: 6px;
  color: var(--muted);
  font-size: var(--fs-caption);
  font-weight: 600;
  letter-spacing: .2px;
}

.is-transparent:not(.is-scrolled) .logo-copy strong {
  color: var(--header-ink);
}

.raheeq-logo.is-light .logo-copy small {
  color: rgba(255, 255, 255, .62);
}

.is-transparent:not(.is-scrolled) .logo-copy small {
  color: rgba(58, 44, 31, .62);
}

.desktop-nav {
  display: flex;
  height: 100%;
  align-items: stretch;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 36px);
}

.desktop-nav a {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--ink-soft);
  font-size: var(--fs-nav);
  font-weight: 700;
  white-space: nowrap;
}

.is-transparent:not(.is-scrolled) .desktop-nav a {
  color: #4a3a28;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--bronze);
  transition: width .25s var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  justify-self: end;
}

.lang-toggle {
  display: inline-flex;
  min-width: 44px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: transparent;
  color: currentColor;
  padding: 0 11px;
  font-family: var(--serif-en);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1;
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
}

.is-transparent:not(.is-scrolled) .lang-toggle {
  border-color: rgba(197, 160, 89, .45);
  color: var(--header-ink);
}

.lang-toggle:hover {
  border-color: var(--bronze);
  color: var(--bronze);
}

.header-icon {
  position: relative;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  background: transparent;
  color: currentColor;
  transition: border-color .2s, color .2s, background .2s;
}

.is-transparent:not(.is-scrolled) .header-icon {
  border-color: rgba(197, 160, 89, .45);
}

.header-icon:hover {
  border-color: var(--bronze);
  color: var(--bronze);
}

.header-contact {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 8px;
  border: 1px solid currentColor;
  border-radius: var(--radius-sm);
  padding: 5px 13px;
  font-size: 14px;
  font-weight: 700;
  transition: background .2s, color .2s, border-color .2s;
}

.header-contact .icon {
  width: 17px;
}

.header-contact:hover {
  border-color: var(--bronze);
  background: var(--bronze);
  color: #fff;
}

.bag-action b {
  position: absolute;
  top: 4px;
  right: 4px;
  display: grid;
  width: 15px;
  height: 15px;
  place-items: center;
  border-radius: 50%;
  background: var(--bronze);
  color: #fff;
  font-size: var(--fs-caption);
}

.mobile-menu-trigger {
  display: none;
}

/* Mobile drawer */
.mobile-menu-backdrop {
  position: fixed;
  z-index: 110;
  inset: 0;
  visibility: hidden;
  background: rgba(15, 11, 8, .62);
  opacity: 0;
  transition: opacity .28s var(--ease), visibility .28s;
  backdrop-filter: blur(4px);
}

.mobile-menu {
  position: fixed;
  z-index: 120;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  width: min(88vw, 390px);
  flex-direction: column;
  overflow-y: auto;
  background: var(--brand-dark);
  color: #fff;
  padding: 24px;
  visibility: hidden;
  transform: translateX(105%);
  transition: transform .32s var(--ease), visibility .32s;
}

.menu-is-open .mobile-menu-backdrop {
  visibility: visible;
  opacity: 1;
}

.menu-is-open .mobile-menu {
  visibility: visible;
  transform: none;
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-light);
  padding-bottom: 22px;
}

.mobile-menu-head .raheeq-logo {
  gap: 12px;
}

.mobile-menu-head .logo-mark {
  width: 56px;
  height: 56px;
}

.mobile-menu-head .logo-copy strong {
  color: rgba(255, 248, 232, .88);
  font-size: 26px;
}

.mobile-menu-head .header-icon {
  border-color: var(--line-light);
  color: #fff;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  padding: 18px 0;
}

.mobile-menu nav a {
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  padding: 13px 2px;
  font-family: var(--sans);
  font-size: var(--fs-nav);
  font-weight: 600;
}

.mobile-menu nav span {
  color: var(--bronze);
  font: 600 11px/1 var(--sans);
  letter-spacing: .04em;
}

.mobile-menu-contact {
  margin-top: auto;
  padding-top: 22px;
}

.mobile-menu-contact .royal-button {
  width: 100%;
}

/* Editorial hero */
.atelier-hero {
  --px: 0;
  --py: 0;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  align-items: center;
  min-height: calc(100svh - 124px);
  overflow: hidden;
  isolation: isolate;
  padding: 72px clamp(28px, 6vw, 110px) 80px;
  color: var(--ink);
  background:
    radial-gradient(ellipse 42% 52% at 18% 62%, rgba(201, 164, 92, .14), transparent 68%),
    linear-gradient(180deg, #fbf6ee 0%, #f3eadc 52%, #eadcc6 100%);
}

.atelier-hero.has-video .atelier-stage,
.atelier-hero.has-video .atelier-spray {
  opacity: 0;
  pointer-events: none;
}

.atelier-hero.has-video .hero-media-layer {
  opacity: 1;
}

.atelier-spray,
.hero-media-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.atelier-spray {
  z-index: 2;
  width: 100%;
  height: 100%;
}

.atelier-copy {
  position: relative;
  z-index: 3;
  width: min(680px, 100%);
}

.atelier-copy h1 {
  max-width: 16ch;
  margin: 18px 0 20px;
  font: 800 clamp(48px, 6.4vw, 96px)/1.18 var(--serif-ar);
  letter-spacing: -0.2px;
  text-wrap: balance;
}

.atelier-copy > p {
  max-width: 34em;
  margin: 0 0 32px;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.9;
}

.atelier-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(46, 35, 27, .35);
  padding-bottom: 6px;
  color: var(--ink);
  font-size: var(--fs-ui);
  font-weight: 700;
}

.atelier-pick {
  display: grid;
  width: min(380px, 100%);
  grid-template-columns: 72px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 28px;
  padding: 14px 0;
  color: var(--ink);
}

.atelier-pick-thumb {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 20px rgba(33, 25, 20, .08);
}

.atelier-pick-thumb img {
  height: 100%;
  object-fit: contain;
}

.atelier-pick small {
  color: var(--muted);
  font-size: var(--fs-caption);
}

.atelier-pick strong {
  display: block;
  overflow: hidden;
  font-size: var(--fs-ui);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.atelier-pick > .icon {
  width: 16px;
  transform: rotate(180deg);
}

.atelier-stage {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 560px;
  place-items: center;
}

.atelier-scene {
  position: relative;
  display: grid;
  width: min(100%, 460px);
  justify-items: center;
}

.atelier-bottle {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(380px, 86%);
  min-height: 440px;
  place-items: center;
  margin: 0;
  padding: 28px 20px 20px;
  background:
    radial-gradient(circle at 50% 40%, #fffdf8 0%, #f4ead8 72%, #e8d7b8 100%);
  box-shadow: 0 28px 60px rgba(33, 25, 20, .12);
}

.atelier-bottle img {
  width: auto;
  max-width: 100%;
  height: min(500px, 58vh);
  object-fit: contain;
}

.atelier-caption {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: var(--fs-ui);
  font-weight: 700;
  text-align: center;
}

.atelier-thumbs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.atelier-thumb {
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 22px rgba(33, 25, 20, .08);
}

.atelier-thumb img {
  height: 100%;
  object-fit: contain;
}

.spray-nozzle-anchor {
  position: absolute;
  top: 10%;
  left: 52%;
  width: 12px;
  height: 12px;
}

/* Legacy hero (unused on home) */
.royal-hero {
  --px: 0;
  --py: 0;
  --hero-gold: #c9a45c;
  --hero-champagne: #e8c982;
  --hero-ivory: #fff8e8;
  position: relative;
  display: grid;
  grid-template-areas: "copy stage";
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  align-items: center;
  height: min(980px, calc(100svh - 42px));
  min-height: 760px;
  overflow: hidden;
  isolation: isolate;
  padding: 156px clamp(28px, 6vw, 110px) 140px;
  color: var(--hero-ivory);
  background:
    radial-gradient(ellipse 46% 48% at 16% 58%, rgba(201, 164, 92, .2), transparent 68%),
    radial-gradient(ellipse 36% 40% at 88% 22%, rgba(143, 112, 68, .12), transparent 70%),
    linear-gradient(180deg, var(--hero-bg-top) 0%, var(--hero-bg-mid) 46%, var(--hero-bg-end) 100%);
}

.royal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(128deg, rgba(255, 248, 232, .018) 0 1px, transparent 1px 13px);
  pointer-events: none;
}

.royal-hero.is-light-hero {
  grid-template-areas: "copy" "down";
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
  align-items: stretch;
  justify-items: center;
  height: calc(100svh - 42px);
  min-height: 0;
  padding: 104px clamp(24px, 5vw, 72px) 12px;
  color: var(--header-ink);
  background: #f4ebe2;
}

.royal-hero.is-light-hero::before {
  background: none;
}

.hero-cream-bg {
  display: none;
}

.royal-hero.is-light-hero .hero-cream-bg {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(247, 239, 228, .22) 0%, rgba(247, 239, 228, .04) 38%, rgba(244, 235, 226, .16) 100%),
    url("/sites/raheeq-al-mamlakah/assets/raheeq-hero-cream-bg.jpg") center / cover no-repeat;
}

.royal-hero.is-light-hero .hero-content {
  grid-area: copy;
  align-self: center;
  align-items: center;
  width: min(760px, 100%);
  text-align: center;
}

.royal-hero.is-light-hero .hero-brand-lockup {
  gap: 4px;
  margin: 0 0 10px;
}

.royal-hero.is-light-hero .hero-crest {
  width: clamp(88px, 8.5vw, 118px);
  height: clamp(88px, 8.5vw, 118px);
  filter: drop-shadow(0 10px 22px rgba(90, 64, 32, .14));
}

.royal-hero.is-light-hero .hero-brand-name {
  color: #2f241a;
  font-family: var(--display-ar);
  font-size: clamp(20px, 1.9vw, 28px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
}

.royal-hero.is-light-hero .hero-brand-en {
  color: var(--header-gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1.3;
}

.royal-hero.is-light-hero .hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.royal-hero.is-light-hero .hero-content h1 {
  margin: 6px auto 0;
  color: #2f241a;
  font-size: clamp(24px, 2.8vw, 38px);
  text-shadow: 0 1px 0 rgba(255, 255, 255, .35);
}

.royal-hero.is-light-hero .hero-copy > p {
  margin: 6px auto 16px;
  color: #5c4a38;
  font-size: clamp(14px, 1.15vw, 16px);
}

.royal-hero.is-light-hero .hero-gold-line {
  width: 96px;
  height: 2px;
  margin: 0 auto 4px;
  background: linear-gradient(90deg, transparent, var(--header-gold), var(--header-gold), transparent);
  transform-origin: center;
}

.royal-hero.is-light-hero .hero-actions {
  justify-content: center;
}

.royal-hero.is-light-hero .hero-whatsapp:hover {
  border-color: var(--header-gold);
  background: rgba(197, 160, 89, .12);
}

.royal-hero.is-light-hero .hero-descend {
  grid-area: down;
  position: relative;
  left: auto;
  bottom: auto;
  z-index: 8;
  margin: 10px auto 4px;
  transform: none;
  color: #8a6a32;
}

.royal-hero.is-light-hero .hero-descend-orb {
  width: 26px;
  height: 42px;
  border-color: rgba(197, 160, 89, .55);
  background: rgba(247, 239, 228, .55);
  box-shadow: 0 0 16px rgba(201, 164, 92, .14);
}

.royal-hero.is-light-hero .hero-descend-orb i {
  width: 4px;
  height: 8px;
  margin-top: 7px;
  background: var(--header-gold);
  animation-name: descendPulseShort;
}

@keyframes descendPulseShort {
  0%, 100% { opacity: .25; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(10px); }
}

.royal-hero.is-light-hero .hero-descend small {
  font-size: 12px;
}

.raheeq-site :is(section, footer)[id] {
  scroll-margin-top: 120px;
}

.hero-poster {
  width: 100%;
  background: #f4ebe0;
}

.hero-poster-art {
  width: 100%;
  overflow: hidden;
  margin: 0;
  background: #f4ebe0;
}

.hero-poster-art img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center;
}

.hero-intro {
  padding: clamp(42px, 6vw, 76px) clamp(24px, 6vw, 96px);
  background: #f4ebe0;
}

.hero-intro-layout {
  display: grid;
  width: min(1160px, 100%);
  grid-template-areas: "traits copy";
  grid-template-columns: minmax(250px, .78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: clamp(34px, 7vw, 100px);
  margin: 0 auto;
  direction: ltr;
}

.hero-intro-inner {
  width: min(720px, 100%);
  grid-area: copy;
  margin: 0;
  direction: rtl;
  text-align: right;
}

.hero-intro h1 {
  margin: 0 auto 12px;
  color: #2f241a;
  font: 800 clamp(26px, 3.2vw, 42px)/1.35 var(--serif-ar);
  letter-spacing: -0.3px;
  text-wrap: balance;
}

.hero-intro p {
  margin: 0 auto 26px;
  max-width: 36em;
  color: #5c4a38;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.8;
}

.hero-intro .hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-intro .hero-whatsapp {
  border-color: rgba(197, 160, 89, .7);
  color: #8a6a32;
}

.hero-intro .hero-whatsapp:hover {
  border-color: var(--header-gold);
  background: rgba(197, 160, 89, .12);
}

.hero-media-layer,
.hero-atmosphere,
.hero-spray-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-media-layer {
  z-index: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity .6s var(--ease);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-video-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 11, 8, .18) 0%, var(--hero-veil) 58%, rgba(16, 11, 8, .72) 100%),
    linear-gradient(0deg, rgba(16, 11, 8, .35), transparent 46%);
}

.royal-hero.has-video .hero-media-layer {
  opacity: 1;
}

.royal-hero.has-video .hero-atmosphere,
.royal-hero.has-video .hero-spray-canvas,
.royal-hero.has-video .hero-stage {
  opacity: 0;
  pointer-events: none;
}

.hero-atmosphere {
  z-index: 0;
}

.hero-spotlight {
  position: absolute;
  top: 18%;
  left: 4%;
  width: 46%;
  height: 70%;
  background: radial-gradient(circle at 42% 48%, rgba(201, 164, 92, .26), transparent 62%);
  filter: blur(10px);
}

.hero-spray-canvas {
  z-index: 2;
  width: 100%;
  height: 100%;
}

.hero-motion {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(28px);
  opacity: .55;
  animation: orbDrift 16s ease-in-out infinite;
}

.hero-orb.o1 {
  top: 8%;
  right: 12%;
  width: 220px;
  height: 220px;
  background: rgba(201, 164, 92, .22);
}

.hero-orb.o2 {
  top: 48%;
  left: 6%;
  width: 280px;
  height: 180px;
  background: rgba(232, 201, 130, .12);
  animation-duration: 22s;
  animation-delay: -4s;
}

.hero-orb.o3 {
  right: 38%;
  bottom: 8%;
  width: 160px;
  height: 160px;
  background: rgba(255, 248, 232, .08);
  animation-duration: 18s;
  animation-delay: -8s;
}

.hero-orb.o4 {
  top: 18%;
  left: 40%;
  width: 90px;
  height: 90px;
  background: rgba(201, 164, 92, .16);
  animation-duration: 12s;
  animation-delay: -2s;
}

.hero-drift {
  position: absolute;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 201, 130, .28), transparent);
  animation: driftLine 11s ease-in-out infinite;
}

.hero-drift.d1 { top: 24%; right: -8%; }
.hero-drift.d2 { bottom: 32%; left: -10%; animation-delay: -5s; animation-duration: 15s; }

@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-18px, 22px) scale(1.08); }
}

@keyframes driftLine {
  0%, 100% { opacity: .15; transform: translateX(0); }
  50% { opacity: .55; transform: translateX(-40px); }
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  grid-area: copy;
  width: min(720px, 100%);
  flex-direction: column;
  align-items: flex-start;
}

.hero-copy {
  min-width: 0;
  width: 100%;
}

.hero-brand-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  animation: heroIn .8s .06s var(--ease) both;
}

.hero-brand-name {
  display: block;
  font-family: var(--display-ar);
  font-weight: 700;
  line-height: 1.12;
}

.hero-brand-en {
  color: var(--hero-champagne);
  font-family: var(--serif-en);
  font-size: 25px;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1.12;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

@keyframes heroCrestIn {
  from { opacity: 0; transform: translateY(12px) scale(.94); }
  to { opacity: 1; transform: none; }
}

@keyframes heroLineIn {
  from { opacity: 0; transform: scaleX(.18); }
  to { opacity: .9; transform: scaleX(1); }
}

.hero-crest {
  width: clamp(168px, 18vw, 220px);
  height: clamp(168px, 18vw, 220px);
  margin: 0;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 36px rgba(0, 0, 0, .34));
  animation: heroCrestIn .85s .04s var(--ease) both;
}

.hero-content h1 {
  max-width: 12ch;
  margin: 0 0 10px;
  font: 800 clamp(34px, 4.6vw, 64px)/1.18 var(--serif-ar);
  letter-spacing: -0.4px;
  text-wrap: balance;
  animation: heroIn .8s .14s var(--ease) both;
}

.hero-content .hero-copy > p {
  max-width: 32em;
  margin: 8px 0 22px;
  color: rgba(255, 248, 232, .78);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.75;
  animation: heroIn .75s .32s var(--ease) both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  animation: heroIn .7s .44s var(--ease) both;
}

.hero-whatsapp {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(232, 201, 130, .5);
  border-radius: var(--radius-sm);
  padding: 0 20px;
  color: var(--hero-champagne);
  font-size: var(--fs-btn);
  font-weight: 700;
  line-height: 1.3;
}

.hero-whatsapp:hover {
  border-color: var(--hero-champagne);
  background: rgba(232, 201, 130, .1);
}

.hero-gold-line {
  display: block;
  width: 72px;
  height: 1px;
  margin: 0;
  background: linear-gradient(90deg, var(--hero-gold), transparent);
  transform-origin: right center;
  animation: heroLineIn .7s .24s var(--ease) both, lineSheen 3.8s 1.1s ease-in-out infinite;
}

@keyframes lineSheen {
  0%, 100% { opacity: .45; }
  50% { opacity: 1; }
}

.hero-product-note {
  position: relative;
  display: flex;
  width: min(250px, 100%);
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(232, 201, 130, .28);
  border-radius: 34px 34px 42px 42px;
  margin-top: auto;
  padding: 38px 22px 22px;
  background:
    linear-gradient(180deg, rgba(232, 201, 130, .12), rgba(16, 11, 8, .28) 42%, rgba(16, 11, 8, .5));
  text-align: center;
}

.hero-product-note::before {
  content: "";
  position: absolute;
  top: -16px;
  width: 46px;
  height: 16px;
  border: 1px solid rgba(232, 201, 130, .35);
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(180deg, rgba(201, 164, 92, .35), rgba(16, 11, 8, .2));
}

.hero-product-note::after {
  content: "";
  position: absolute;
  top: -42px;
  width: 18px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 20%, rgba(255, 248, 232, .55), rgba(232, 201, 130, .12) 46%, transparent 72%);
  filter: blur(1px);
  pointer-events: none;
}

.hero-product-thumb {
  display: grid;
  width: 92px;
  height: 140px;
  place-items: center;
  overflow: hidden;
  background: none;
  color: var(--hero-champagne);
  font: 600 22px var(--serif-en);
}

.hero-product-thumb img {
  width: auto;
  height: 100%;
  object-fit: contain;
}

.hero-product-note > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.hero-product-note small {
  color: rgba(232, 201, 130, .62);
  font-size: var(--fs-caption);
}

.hero-product-note strong {
  overflow: hidden;
  font-size: var(--fs-ui);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-product-note > .icon {
  width: 16px;
  transform: rotate(180deg);
}

.hero-descend {
  position: absolute;
  z-index: 8;
  left: 50%;
  bottom: 22px;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #e8c982;
  transform: translateX(-50%);
}

.hero-descend-orb {
  display: grid;
  width: 44px;
  height: 68px;
  place-items: start center;
  border: 1px solid rgba(232, 201, 130, .45);
  border-radius: 999px;
  background: rgba(16, 11, 8, .28);
  box-shadow: 0 0 24px rgba(201, 164, 92, .16);
}

.hero-descend-orb i {
  display: block;
  width: 6px;
  height: 10px;
  margin-top: 10px;
  border-radius: 99px;
  background: #e8c982;
  animation: descendPulse 1.8s ease-in-out infinite;
}

.hero-descend small {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .4px;
}

@keyframes descendPulse {
  0%, 100% { opacity: .25; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(18px); }
}

.hero-stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-area: stage;
  min-height: 560px;
  place-items: center;
  transform: translate3d(calc(var(--px) * -12px), calc(var(--py) * -9px), 0);
}

.hero-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-spark {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #e8c982;
  box-shadow: 0 0 8px 1px rgba(232, 201, 130, .45);
  animation: sparkFloat 8s ease-in-out infinite;
}

.hero-spark.s1 { top: 16%; right: 22%; animation-delay: .2s; }
.hero-spark.s2 { top: 28%; right: 68%; animation-delay: 1.1s; }
.hero-spark.s3 { top: 42%; right: 12%; animation-delay: 2s; }
.hero-spark.s4 { top: 58%; right: 74%; animation-delay: .8s; }
.hero-spark.s5 { top: 70%; right: 30%; animation-delay: 1.6s; }
.hero-spark.s6 { top: 22%; right: 46%; animation-delay: 2.4s; }
.hero-spark.s7 { top: 78%; right: 58%; animation-delay: .4s; }
.hero-spark.s8 { top: 34%; right: 84%; animation-delay: 3s; }
.hero-spark.s9 { top: 12%; right: 38%; animation-delay: 1.8s; }
.hero-spark.s10 { top: 64%; right: 8%; animation-delay: 2.8s; }
.hero-spark.s11 { top: 48%; right: 52%; animation-delay: .6s; }
.hero-spark.s12 { top: 86%; right: 42%; animation-delay: 2.2s; }

@keyframes sparkFloat {
  0%, 100% { opacity: .12; transform: translateY(0); }
  50% { opacity: .75; transform: translateY(-12px); }
}

.perfume-scene {
  position: relative;
  display: grid;
  width: min(100%, 520px);
  overflow: visible;
  place-items: center;
}

.ring-wrap,
.perfume-ring,
.perfume-halo {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.ring-wrap {
  width: min(430px, 90%);
  aspect-ratio: 1;
  transform: translate3d(calc(var(--px) * 10px), calc(var(--py) * 8px), 0);
}

.perfume-ring {
  inset: 0;
  border: 1px solid rgba(201, 164, 92, .32);
  animation: ringPulse 7s ease-in-out infinite;
}

.perfume-ring.is-inner {
  inset: 22px;
  border-color: rgba(201, 164, 92, .14);
  animation-duration: 9s;
}

.perfume-halo {
  width: min(340px, 72%);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(232, 201, 130, .28), transparent 68%);
  filter: blur(10px);
}

@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: .62; }
  50% { transform: scale(1.035); opacity: 1; }
}

.scent-notes {
  position: absolute;
  inset: 4% 0 16%;
  z-index: 3;
  margin: 0;
  padding: 0;
  list-style: none;
  pointer-events: none;
}

.scent-notes li {
  position: absolute;
  color: #e8c982;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.6px;
  animation: noteFloat 7.5s ease-in-out infinite;
}

.scent-notes li:nth-child(1) { top: 6%; right: 8%; }
.scent-notes li:nth-child(2) { top: 22%; left: 4%; animation-delay: 1.2s; }
.scent-notes li:nth-child(3) { top: 48%; right: 0; animation-delay: 2.1s; }
.scent-notes li:nth-child(4) { bottom: 22%; left: 8%; animation-delay: .6s; }
.scent-notes li:nth-child(5) { bottom: 8%; right: 12%; animation-delay: 1.8s; }

@keyframes noteFloat {
  0%, 100% { opacity: .45; transform: translateY(0); }
  50% { opacity: .95; transform: translateY(-8px); }
}

.perfume-bottle {
  position: relative;
  z-index: 2;
  width: min(220px, 58%);
}

.perfume-bottle.is-real {
  width: min(520px, 92%);
}

.bottle-cluster {
  position: relative;
  display: grid;
  width: 100%;
  min-height: min(560px, 70vh);
  place-items: end center;
}

.hero-side-bottle {
  position: absolute;
  z-index: 1;
  width: auto;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 14px 16px rgba(0, 0, 0, .42));
}

.hero-side-bottle.is-rose {
  left: 2%;
  bottom: 6%;
  height: min(250px, 32vh);
  transform: rotate(-8deg);
}

.hero-side-bottle.is-oud {
  right: 2%;
  bottom: 8%;
  height: min(260px, 33vh);
  transform: rotate(7deg);
}

.hero-real-bottle {
  position: relative;
  z-index: 3;
  display: grid;
  width: 100%;
  place-items: center;
  margin: 0;
  background: none;
}

.hero-real-bottle img {
  width: auto;
  max-width: 210px;
  height: min(500px, 62vh);
  object-fit: contain;
  filter:
    drop-shadow(0 18px 18px rgba(0, 0, 0, .38))
    drop-shadow(0 0 28px rgba(201, 164, 92, .18));
}

.spray-nozzle-anchor {
  position: absolute;
  top: 3%;
  left: 52%;
  width: 14px;
  height: 14px;
}

.bottle-float {
  animation: bottleFloat 6s ease-in-out infinite;
}

@keyframes bottleFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-9px) rotate(.8deg); }
}

.flacon {
  position: relative;
  width: 100%;
  height: min(430px, 58vw);
  min-height: 340px;
  direction: ltr;
}

.flacon-atomizer {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 5;
  width: 58px;
  height: 86px;
  transform: translateX(-50%);
}

.flacon-crown {
  display: block;
  width: 28px;
  height: 16px;
  margin: 0 auto 2px;
  background:
    linear-gradient(180deg, #f6e6c0, #b99152);
  clip-path: polygon(50% 0, 72% 38%, 100% 22%, 82% 100%, 18% 100%, 0 22%, 28% 38%);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .35));
}

.flacon-cap {
  display: block;
  width: 46px;
  height: 40px;
  margin: 0 auto;
  border-radius: 8px 8px 5px 5px;
  background:
    linear-gradient(90deg, #7a5624 0%, #f3dfb0 24%, #d4af6a 48%, #8a642e 76%, #e8c98a 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 236, 196, .35),
    inset 0 -10px 12px rgba(80, 50, 16, .28),
    0 8px 16px rgba(0, 0, 0, .32);
}

.flacon-cap::after {
  content: "";
  display: block;
  height: 100%;
  background: repeating-linear-gradient(180deg, transparent 0 7px, rgba(80, 50, 16, .18) 7px 8px);
  border-radius: inherit;
}

.flacon-stem {
  display: block;
  width: 14px;
  height: 22px;
  margin: -2px auto 0;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, #8a642e, #f0d7a6 46%, #7d5826);
}

.flacon-nozzle {
  position: absolute;
  top: 28px;
  right: -11px;
  width: 20px;
  height: 11px;
  border-radius: 0 9px 9px 0;
  background: linear-gradient(180deg, #f7ecd0, #b99152);
  box-shadow: 0 0 0 1px rgba(255, 236, 196, .25);
}

.flacon-collar {
  position: absolute;
  top: 82px;
  left: 50%;
  z-index: 4;
  width: 72px;
  height: 16px;
  border-radius: 5px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #8a642e, #f3dfb0 30%, #b99152 58%, #7d5826);
  box-shadow: inset 0 0 0 1px rgba(255, 236, 196, .28);
}

.flacon-neck {
  position: absolute;
  top: 96px;
  left: 50%;
  z-index: 3;
  width: 38px;
  height: 28px;
  transform: translateX(-50%);
  background:
    linear-gradient(90deg, rgba(246, 230, 196, .3), rgba(20, 14, 10, .08) 40%, rgba(246, 230, 196, .18));
  border-inline: 1px solid rgba(212, 175, 106, .55);
}

.flacon-body {
  position: absolute;
  top: 118px;
  left: 50%;
  z-index: 2;
  width: 158px;
  height: 248px;
  overflow: hidden;
  border: 1.5px solid rgba(212, 175, 106, .72);
  border-radius: 46% 46% 18px 18px / 14% 14% 22px 22px;
  transform: translateX(-50%);
  background:
    linear-gradient(90deg, rgba(246, 230, 196, .22), rgba(18, 13, 9, .08) 22%, rgba(16, 11, 8, .04) 48%, rgba(20, 14, 10, .45) 82%, rgba(246, 230, 196, .16));
  box-shadow:
    inset 12px 0 18px rgba(246, 230, 196, .12),
    inset -18px 0 24px rgba(0, 0, 0, .38),
    0 28px 40px rgba(8, 5, 3, .42);
}

.flacon-liquid {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 68%;
  background: linear-gradient(180deg, #f0d9a2 0%, #c4a05a 28%, #8d6730 68%, #5c3a16 100%);
  animation: liquidIdle 4.8s ease-in-out infinite;
}

.flacon-meniscus {
  position: absolute;
  top: 31%;
  right: 6%;
  left: 6%;
  height: 14px;
  border-radius: 50%;
  background: rgba(247, 228, 176, .45);
  filter: blur(1px);
}

.flacon-shine {
  position: absolute;
  top: 18%;
  left: 14%;
  width: 16px;
  height: 58%;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 248, 230, .38), transparent);
  animation: glassSheen 5.8s ease-in-out infinite;
}

.flacon-glass {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255, 248, 232, .16), transparent 28%, transparent 62%, rgba(255, 248, 232, .08));
  pointer-events: none;
}

.bottle-rays {
  position: absolute;
  top: 8%;
  left: 50%;
  z-index: 0;
  width: 180px;
  height: 180px;
  background: conic-gradient(from 80deg, transparent 0 12%, rgba(232, 201, 130, .12) 14%, transparent 18%, transparent 40%, rgba(232, 201, 130, .08) 42%, transparent 48%);
  transform: translateX(-50%);
  pointer-events: none;
  animation: rayDrift 10s linear infinite;
}

@keyframes glassSheen {
  0%, 100% { opacity: .45; transform: translateX(0); }
  50% { opacity: .9; transform: translateX(6px); }
}

@keyframes rayDrift {
  to { transform: translateX(-50%) rotate(18deg); }
}

.flacon-crest {
  position: absolute;
  top: 46%;
  left: 50%;
  display: grid;
  width: 72px;
  min-height: 58px;
  place-items: center;
  border: 1px solid rgba(212, 175, 106, .7);
  background: rgba(20, 14, 10, .42);
  padding: 8px 6px 6px;
  transform: translateX(-50%);
}

.flacon-crest b {
  color: #e7c888;
  font: 700 18px/1 var(--serif-en);
  letter-spacing: 3px;
}

.flacon-crest small {
  color: #d4b36a;
  font: 700 10px/1 var(--sans);
}

.flacon-base {
  position: absolute;
  bottom: 18px;
  left: 50%;
  z-index: 3;
  width: 108px;
  height: 12px;
  border-radius: 4px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #8a642e, #f0d7a6 40%, #b99152 70%, #7d5826);
}

.flacon-shadow {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 150px;
  height: 22px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(12, 8, 5, .55), rgba(201, 164, 92, .18) 42%, transparent 72%);
}

@keyframes liquidIdle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.hero-spray-canvas {
  display: block;
}

.spray-trigger {
  position: absolute;
  inset: 0;
  z-index: 7;
  background: transparent;
  cursor: pointer;
}

.spray-hint {
  position: relative;
  z-index: 3;
  margin: 12px 0 0;
  color: rgba(232, 201, 130, .58);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .4px;
}

.spray-flash {
  position: absolute;
  top: 7%;
  left: 68%;
  z-index: 6;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff8df;
  opacity: 0;
  box-shadow: 0 0 26px 10px rgba(247, 228, 176, .8);
  pointer-events: none;
}

.perfume-scene.is-spraying .flacon-atomizer {
  animation: atomizerPress .5s var(--ease);
}

.perfume-scene.is-spraying .spray-flash {
  animation: sprayFlash .34s ease-out;
}

.perfume-scene.is-still .spray-flash {
  opacity: .2;
}

@keyframes atomizerPress {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  35% { transform: translateX(-50%) translateY(7px); }
}

@keyframes sprayFlash {
  0% { opacity: 0; transform: scale(.3); }
  35% { opacity: 1; transform: scale(1.2); }
  100% { opacity: 0; transform: scale(.4); }
}

.minimal-masthead {
  min-height: 620px;
  padding: 170px clamp(25px, 8vw, 135px) 90px;
  background: var(--brand-dark);
  color: #fff;
}

.minimal-masthead h1 {
  margin: 20px 0 35px;
  font: 600 clamp(64px, 8vw, 120px) var(--serif-ar);
}

.scent-traits {
  display: flex;
  width: min(330px, 100%);
  grid-area: traits;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  direction: rtl;
  scroll-margin-top: 100px;
}

.scent-traits > article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  min-width: 0;
  min-height: 78px;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(197, 160, 89, .28);
  border-radius: 18px;
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .74), rgba(246, 232, 208, .62));
  box-shadow: 0 12px 28px rgba(92, 67, 37, .08);
  text-align: right;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}

.scent-traits > article:hover {
  border-color: rgba(170, 128, 57, .58);
  box-shadow: 0 16px 32px rgba(92, 67, 37, .13);
  transform: translateY(-3px);
}

.scent-trait-icon {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(197, 160, 89, .56);
  border-radius: 14px;
  background: linear-gradient(145deg, #fffaf1, #ead4ab);
  color: #8a6a32;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .75);
}

.scent-trait-icon .icon {
  width: 16px;
  height: 16px;
}

.scent-traits strong {
  display: block;
  color: #2f241a;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}

.scent-traits small {
  display: block;
  margin-top: 2px;
  color: #78624a;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

/* Product cards and homepage sections */
.site-section {
  width: min(100%, 1600px);
  margin: auto;
  padding: clamp(56px, 6vw, 88px) clamp(25px, 5vw, 82px);
}

.royal-selection.site-section {
  padding-top: clamp(28px, 3.2vw, 44px);
  padding-bottom: clamp(16px, 2vw, 28px);
}

.editorial-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: clamp(24px, 3.5vw, 44px);
}

.editorial-heading h2 {
  margin: 10px 0 0;
  font: 800 32px/1.25 var(--serif-ar);
  letter-spacing: -0.4px;
  white-space: nowrap;
}

.editorial-heading p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: var(--fs-ui);
}

.bestseller-section {
  background: var(--ivory);
  padding: clamp(72px, 8vw, 130px) 0 clamp(80px, 9vw, 140px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.bestseller-section.is-products {
  background: var(--paper);
}

.kingdom-products {
  width: min(100%, 1600px);
  margin: 0 auto;
  padding: 4px clamp(25px, 5vw, 82px) 8px;
}

.kingdom-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px 22px;
}

.kingdom-grid .bestseller-slide {
  flex: none;
  width: 100%;
  min-width: 0;
  grid-template-rows: 280px auto;
  scroll-snap-align: unset;
}

.kingdom-grid .bestseller-media {
  min-height: 280px;
}

.kingdom-grid .bestseller-copy {
  gap: 8px;
  padding: 14px 16px 16px;
}

.kingdom-grid .bestseller-slide h3 {
  font-size: clamp(18px, 1.2vw, 22px);
}

.kingdom-grid .bestseller-copy p {
  font-size: 14px;
}

.kingdom-grid .bestseller-prices strong {
  font-size: 16px;
}

.kingdom-grid .bestseller-wa,
.kingdom-grid .bestseller-more {
  min-height: 42px;
  font-size: 14px;
}

.kingdom-grid .bestseller-wa {
  padding: 0 16px;
}

.load-more.is-home {
  padding-top: 48px;
}

@media (max-width: 1100px) {
  .kingdom-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
  }

  .kingdom-grid .bestseller-slide {
    grid-template-rows: 260px auto;
  }

  .kingdom-grid .bestseller-media {
    min-height: 260px;
  }
}

.bundle-section {
  width: min(100%, 1600px);
  margin: auto;
  background: var(--ivory);
  padding: clamp(10px, 1.4vw, 16px) clamp(25px, 5vw, 82px) clamp(40px, 4.5vw, 64px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.bundle-section .editorial-heading {
  width: 100%;
  margin: 0 0 clamp(18px, 2.4vw, 28px);
  padding-inline: 0;
}

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  width: 100%;
  margin: 0;
  padding-inline: 0;
}

.bundle-card {
  overflow: hidden;
  border: 1px solid rgba(201, 164, 92, .28);
  border-radius: var(--radius);
  background: #fbf6ee;
  box-shadow:
    0 10px 22px rgba(33, 25, 20, .08),
    0 26px 48px rgba(33, 25, 20, .1);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.bundle-card:hover {
  transform: translateY(-7px);
  box-shadow:
    0 16px 28px rgba(33, 25, 20, .1),
    0 40px 70px rgba(33, 25, 20, .12);
}

.bundle-card-media {
  display: grid;
  aspect-ratio: 1;
  height: auto;
  overflow: hidden;
  background: #1a1410;
}

.bundle-card-media > *,
.bundle-card-media img,
.bundle-collage img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.bundle-collage {
  display: grid;
  height: 100%;
  min-height: 100%;
}

.bundle-collage.is-2 {
  grid-template-columns: 1fr 1fr;
}

.bundle-collage.is-3 {
  grid-template-columns: 1.2fr .8fr;
  grid-template-rows: 1fr 1fr;
}

.bundle-collage.is-3 img:first-child {
  grid-row: 1 / span 2;
}

.bundle-card-copy {
  display: grid;
  gap: 8px;
  padding: 16px 16px 16px;
  background: #f8f2e8;
}

.bundle-card-copy h3 {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  font: 700 clamp(20px, 1.8vw, 26px)/1.35 var(--serif-ar);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.bundle-card-price {
  color: var(--ink);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 800;
  line-height: 1.2;
}

.bundle-card-note,
.bundle-card-copy p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.bundle-card-link {
  display: inline-flex;
  min-height: 42px;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  border: 1px solid var(--ink);
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: #fff;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 700;
}

.bundle-card-link:hover {
  border-color: var(--bronze);
  background: var(--bronze);
  color: #fff;
}

.bundle-page {
  background: var(--paper);
}

.bundle-masthead {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(280px, 1fr);
  gap: 48px;
  align-items: center;
  width: min(100%, 1600px);
  margin: 0 auto;
  padding: clamp(36px, 5vw, 70px) clamp(25px, 5vw, 82px) clamp(28px, 4vw, 48px);
}

.bundle-masthead-media {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  max-height: 380px;
  min-height: 0;
  border: 1px solid rgba(201, 164, 92, .24);
  background: #eadcc6;
  box-shadow:
    0 1px 0 rgba(255, 248, 232, .75) inset,
    0 16px 36px rgba(33, 25, 20, .1);
}

.bundle-masthead-media img,
.bundle-masthead-media .bundle-collage {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.bundle-masthead-copy {
  display: grid;
  gap: 14px;
  justify-items: start;
}

.bundle-masthead-copy h1 {
  margin: 0;
  font: 800 clamp(40px, 5vw, 68px)/1.2 var(--serif-ar);
}

.bundle-masthead-price {
  color: var(--ink);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 800;
  line-height: 1.2;
}

.bundle-masthead-copy p {
  margin: 0;
  max-width: 34ch;
  color: var(--ink-soft);
  font-size: var(--fs-ui);
  line-height: 1.8;
}

.bundle-products {
  padding: 20px 0 90px;
}

@media (max-width: 1100px) {
  .bundle-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bundle-masthead {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 680px) {
  .bundle-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 12px;
  }

  .bundle-masthead-media {
    aspect-ratio: 4 / 3;
    max-height: 280px;
  }

  .kingdom-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 12px;
  }

  .kingdom-grid .bestseller-slide {
    grid-template-rows: auto auto;
  }

  .kingdom-grid .bestseller-media {
    min-height: 0;
    aspect-ratio: 1;
  }

  .kingdom-grid .bestseller-copy {
    gap: 6px;
    padding: 10px 10px 12px;
  }

  .kingdom-grid .bestseller-slide h3 {
    font-size: 15px;
  }

  .kingdom-grid .bestseller-copy p {
    font-size: 12px;
    line-height: 1.45;
  }

  .kingdom-grid .bestseller-wa,
  .kingdom-grid .bestseller-more {
    min-height: 36px;
    font-size: 12px;
    padding: 0 10px;
  }

  .bundle-card-copy {
    gap: 6px;
    padding: 12px;
  }

  .bundle-card-copy h3 {
    font-size: 16px;
  }

  .bundle-card-price {
    font-size: 16px;
  }

  .bundle-card-note {
    font-size: 12px;
  }

  .bundle-card-link {
    min-height: 38px;
    font-size: 13px;
  }
}

.bestseller-section .editorial-heading {
  width: min(100%, 1600px);
  margin: 0 auto clamp(18px, 2.4vw, 28px);
  padding-inline: clamp(25px, 5vw, 82px);
}

.bestseller-nav {
  display: flex;
  gap: 10px;
}

.bestseller-arrow {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
}

.bestseller-arrow .icon {
  width: 18px;
}

.bestseller-arrow.is-next .icon {
  transform: none;
}

.bestseller-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 22px clamp(25px, 5vw, 82px) 36px;
}

.bestseller-track::-webkit-scrollbar {
  display: none;
}

.bestseller-slide {
  display: grid;
  flex: 0 0 300px;
  grid-template-rows: 280px auto;
  overflow: hidden;
  border: 1px solid rgba(201, 164, 92, .28);
  border-radius: var(--radius);
  background: #fbf6ee;
  box-shadow:
    0 10px 22px rgba(33, 25, 20, .08),
    0 26px 48px rgba(33, 25, 20, .1);
  scroll-snap-align: start;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.bestseller-slide:hover {
  transform: translateY(-7px);
  box-shadow:
    0 16px 28px rgba(33, 25, 20, .1),
    0 40px 70px rgba(33, 25, 20, .12);
}

.bestseller-media {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #1a1410;
}

.bestseller-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bestseller-copy {
  display: grid;
  gap: 8px;
  padding: 16px 16px 18px;
  background: #f8f2e8;
}

.bestseller-slide h3 {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  font: 700 19px/1.45 var(--sans);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.bestseller-copy p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: var(--ink-soft);
  font-size: var(--fs-caption);
  line-height: 1.7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.bestseller-prices {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
}

.card-offer-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border-radius: 999px;
  background: #c9a45c;
  color: #1b110b;
  padding: 6px 12px;
  font: 800 15px/1 var(--sans);
  font-style: normal;
  box-shadow: 0 8px 18px rgba(16, 10, 6, .32);
}

.card-offer {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  border-radius: 999px;
  background: rgba(201, 164, 92, .18);
  color: #8a6524;
  padding: 0 9px;
  font-size: 13px;
  font-weight: 800;
}

.bestseller-prices del {
  color: var(--muted);
  font-size: var(--fs-caption);
}

.bestseller-prices strong {
  font-size: var(--fs-ui);
}

.bestseller-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-top: 4px;
}

.bestseller-wa,
.bestseller-more {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-caption);
  font-weight: 700;
}

.bestseller-wa {
  border: 1px solid var(--ink);
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: #fff;
  padding: 0 12px;
}

.bestseller-wa.is-icon {
  width: 40px;
  min-height: 40px;
  justify-content: center;
  padding: 0;
  border-radius: 50%;
  background: #25d366;
  border-color: #25d366;
}

.bestseller-wa.is-icon:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  color: #fff;
}

.bestseller-wa .icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.bestseller-more {
  border-bottom: 1px solid rgba(46, 35, 27, .35);
  color: var(--ink);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

@media (max-width: 1020px) {
  .featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 12px;
  }
}

.product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(201, 164, 92, .28);
  border-radius: var(--radius);
  background: #fbf6ee;
  box-shadow:
    0 10px 22px rgba(33, 25, 20, .08),
    0 26px 48px rgba(33, 25, 20, .1);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.product-card:hover {
  transform: translateY(-7px);
  box-shadow:
    0 16px 28px rgba(33, 25, 20, .1),
    0 40px 70px rgba(33, 25, 20, .12);
}

.product-image-link {
  position: relative;
  display: block;
  overflow: hidden;
}

.product-visual {
  position: relative;
  display: flex;
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #1a1410;
}

.tone-dark {
  background:
    radial-gradient(circle at 52% 45%, rgba(255, 255, 255, .17), transparent 35%),
    #2b2927;
}

.tone-light {
  background:
    radial-gradient(circle at 52% 45%, #fff, transparent 35%),
    #ece9e3;
}

.tone-gold {
  background:
    radial-gradient(circle at 52% 45%, rgba(255, 253, 244, .8), transparent 37%),
    #e4d4bd;
}

.product-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  transition: transform .65s var(--ease), filter .65s var(--ease);
}

.product-image-link:hover .product-visual img {
  transform: scale(1.025);
}

.image-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: linear-gradient(145deg, #e8ded0, #f5efe6);
  color: var(--bronze);
}

.image-fallback i {
  font: 600 64px/1 var(--serif-en);
}

.image-fallback small {
  font: 600 8px var(--serif-en);
  letter-spacing: 4px;
}

.product-badges {
  position: absolute;
  z-index: 4;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  max-width: calc(100% - 24px);
}

.product-badge,
.sold-out-badge {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 253, 248, .96);
  color: var(--ink);
  padding: 4px 11px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  box-shadow: 0 6px 14px rgba(16, 10, 6, .2);
}

.discount-badge {
  min-height: 28px;
  border-radius: 8px;
  background: #c9a45c;
  color: #1b110b;
  padding: 4px 11px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 6px 14px rgba(16, 10, 6, .28);
}

.sold-out-badge {
  position: absolute;
  z-index: 4;
  right: 15px;
  bottom: 15px;
  background: var(--ink);
  color: #fff;
}

.image-cue {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-size: var(--fs-caption);
  font-weight: 700;
  opacity: 0;
  transform: translateY(7px);
  transition: opacity .25s, transform .25s var(--ease);
}

.product-image-link::after {
  position: absolute;
  z-index: 2;
  inset: 60% 0 0;
  background: linear-gradient(0deg, rgba(20, 13, 9, .42), transparent);
  content: '';
  opacity: 0;
  transition: opacity .3s var(--ease);
}

.product-image-link:hover::after,
.product-image-link:hover .image-cue {
  opacity: 1;
}

.product-image-link:hover .image-cue {
  transform: none;
}

.product-card.is-sold-out .product-visual img {
  filter: grayscale(.32) saturate(.65);
}

.product-card-copy {
  flex: 1;
  padding: 14px 16px 14px;
  background: #f8f2e8;
}

.product-card-text > small {
  display: block;
  margin-bottom: 4px;
  color: var(--bronze);
  font: 600 13px var(--sans);
  letter-spacing: .3px;
}

.product-card h3 {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  font: 700 clamp(16px, 1.25vw, 18px)/1.35 var(--serif-ar);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-card h3 a,
.bestseller-slide h3 a {
  display: block;
}

.product-card-text p {
  display: -webkit-box;
  overflow: hidden;
  min-height: 0;
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid var(--line);
  margin-top: 10px;
  padding-top: 10px;
}

.product-prices {
  display: flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
}

.product-prices strong {
  color: var(--ink);
  font-size: 16px;
}

.product-prices del {
  color: var(--muted);
  font-size: 13px;
}

.product-action {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  padding: 0 13px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.product-action .icon {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}

.product-action:hover {
  background: var(--success);
  color: #fff;
  border-color: transparent;
}

.product-action.is-disabled {
  border: 0;
  background: #d9d1c6;
  color: #7a7168;
}

.collection-showcase {
  display: grid;
  width: min(100%, 1700px);
  grid-template-columns: minmax(270px, .46fr) minmax(0, 1.54fr);
  align-items: start;
  gap: clamp(40px, 6vw, 95px);
  margin: auto;
  border-top: 1px solid var(--line);
  background: var(--paper);
  padding: clamp(95px, 10vw, 170px) clamp(25px, 5vw, 82px);
}

.collection-intro {
  position: sticky;
  top: 110px;
}

.collection-intro h2 {
  margin: 12px 0 24px;
  font: 800 32px/1.25 var(--serif-ar);
  letter-spacing: -0.4px;
  white-space: nowrap;
}

.collection-intro h2 em,
.shop-masthead h1 em,
.product-narrative h2 em {
  color: var(--bronze);
  font-style: normal;
}

.collection-intro p {
  margin-bottom: 25px;
  color: var(--muted);
  font-size: var(--fs-ui);
  line-height: 2;
}

.collection-grid,
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(35px, 4vw, 62px) clamp(18px, 2.4vw, 36px);
}

.collection-grid .product-card:nth-child(3n + 2) {
  transform: translateY(50px);
}

/* Story, campaign, contact */
.brand-story {
  display: grid;
  min-height: 0;
  grid-template-columns: minmax(220px, .72fr) minmax(260px, 1.05fr) minmax(200px, .78fr);
  align-items: center;
  gap: clamp(18px, 3.4vw, 48px);
  background:
    radial-gradient(ellipse 42% 58% at 12% 58%, rgba(201, 164, 92, .18), transparent 70%),
    radial-gradient(ellipse 42% 58% at 88% 42%, rgba(201, 164, 92, .2), transparent 70%),
    linear-gradient(180deg, #2a2118 0%, #17120e 100%);
  color: #fff;
  padding: clamp(32px, 4.5vw, 64px) clamp(22px, 5vw, 80px);
}

.story-media {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #33271f;
  box-shadow: 0 18px 40px rgba(8, 5, 3, .28);
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.story-media.is-crest {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  min-height: 0;
  padding: 36px 28px;
  background:
    radial-gradient(ellipse 70% 60% at 50% 38%, rgba(232, 201, 130, .16), transparent 68%),
    linear-gradient(180deg, #f4ead6 0%, #e8dcc4 100%);
}

.story-media.is-crest img.story-lockup {
  width: min(200px, 70%);
  height: auto;
  max-height: 210px;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(33, 25, 20, .16));
}

.story-media.is-crest p {
  margin: 0;
  color: #5a4d3d;
  font-size: 16px;
  font-weight: 700;
}

.story-media.is-crest a,
.story-phone {
  display: inline-flex;
  min-height: 0;
  align-items: center;
  border: 0;
  border-radius: 0;
  background: none;
  padding: 0;
  color: #4a3d30;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: .02em;
}

.story-phone:hover {
  color: #211914;
}

.story-copy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding-block: 8px;
  padding-inline-start: 4px;
}

.story-copy h2 {
  margin: 10px 0 16px;
  font: 600 clamp(32px, 3.6vw, 52px)/1.28 var(--serif-ar);
  letter-spacing: -1px;
}

.story-copy > p {
  max-width: 510px;
  color: rgba(255, 255, 255, .7);
  font-size: var(--fs-ui);
  line-height: 2;
}

.story-copy .royal-button {
  margin-top: 8px;
}

.story-signature {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid var(--line-light);
  margin-top: 22px;
  padding-top: 18px;
}

.story-signature > i,
.story-signature .logo-mark {
  display: block;
  width: 56px;
  height: 56px;
  overflow: visible;
  border: 0;
  background: none;
  object-fit: contain;
}

.story-signature .logo-mark {
  object-fit: contain;
  object-position: center;
}

.story-signature > span {
  display: flex;
  flex-direction: column;
}

.story-signature strong {
  font-size: var(--fs-caption);
}

.story-signature small {
  color: rgba(255, 255, 255, .43);
  font: 500 8px var(--serif-en);
  letter-spacing: .8px;
}

.story-stage {
  position: relative;
  display: grid;
  min-height: 340px;
  place-items: end center;
  isolation: isolate;
}

.story-glow {
  position: absolute;
  inset: 12% 6% 4%;
  background: radial-gradient(ellipse at 50% 70%, rgba(232, 201, 130, .32), transparent 68%);
  animation: storyGlow 5.5s ease-in-out infinite;
  pointer-events: none;
}

.story-mote {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(232, 201, 130, .7);
  box-shadow: 0 0 10px rgba(232, 201, 130, .55);
  pointer-events: none;
  animation: storyMote 7s ease-in-out infinite;
}

.story-mote.m1 { right: 22%; bottom: 42%; animation-duration: 6.2s; }
.story-mote.m2 { right: 48%; bottom: 58%; width: 4px; height: 4px; animation-duration: 8s; animation-delay: .8s; }
.story-mote.m3 { right: 64%; bottom: 28%; animation-duration: 7.4s; animation-delay: 1.4s; }

.story-flacon {
  height: auto;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 24px 36px rgba(8, 5, 3, .48));
}

.story-flacon.is-oud {
  position: relative;
  z-index: 2;
  width: min(220px, 78%);
  animation: storyBottle 6.4s ease-in-out infinite;
}

.story-flacon.is-rose {
  position: absolute;
  left: 4%;
  bottom: 8%;
  z-index: 1;
  width: min(132px, 46%);
  animation: storyBottle 7.6s ease-in-out infinite .5s;
}

@keyframes storyBottle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes storyGlow {
  0%, 100% { opacity: .42; transform: scale(1); }
  50% { opacity: .78; transform: scale(1.08); }
}

@keyframes storyMote {
  0%, 100% { opacity: .25; transform: translateY(0); }
  50% { opacity: .9; transform: translateY(-18px); }
}

.visual-campaign {
  position: relative;
  display: flex;
  height: min(850px, 88svh);
  min-height: 620px;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(50px, 8vw, 130px);
  color: #fff;
}

.visual-campaign.is-stage {
  display: grid;
  height: auto;
  min-height: 640px;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .7fr);
  align-items: center;
  gap: clamp(28px, 5vw, 80px);
  background:
    radial-gradient(ellipse 42% 58% at 88% 42%, rgba(201, 164, 92, .2), transparent 70%),
    linear-gradient(180deg, #2a2118 0%, #17120e 100%);
}

.campaign-stage {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: end center;
}

.campaign-flacon {
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 40px rgba(8, 5, 3, .45));
}

.campaign-flacon.is-oud {
  width: min(280px, 58%);
  z-index: 2;
}

.campaign-flacon.is-rose {
  position: absolute;
  right: 6%;
  bottom: 8%;
  width: min(170px, 36%);
  z-index: 1;
  opacity: .92;
}

.campaign-copy {
  width: min(620px, 100%);
}

.campaign-copy h2 {
  margin: 13px 0 19px;
  font: 600 clamp(61px, 7vw, 110px)/1.18 var(--serif-ar);
  letter-spacing: -3px;
}

.campaign-copy p {
  max-width: 490px;
  margin-bottom: 29px;
  color: rgba(255, 255, 255, .74);
  font-size: var(--fs-ui);
  line-height: 1.95;
}

.reviews-section {
  padding: clamp(56px, 6vw, 88px) 0 clamp(32px, 4vw, 56px);
  background: var(--ivory);
}

.reviews-section .editorial-heading {
  width: min(100%, 1600px);
  margin: 0 auto clamp(28px, 4vw, 48px);
  padding-inline: clamp(25px, 5vw, 82px);
}

.reviews-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .8fr);
  align-items: start;
  gap: clamp(28px, 4vw, 56px);
  width: min(100%, 1600px);
  margin: 0 auto;
  padding-inline: clamp(25px, 5vw, 82px);
}

.reviews-board {
  display: grid;
  gap: 0;
  width: 100%;
  margin: 0;
  padding: 0;
}

.reviews-empty {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.8;
}

.review-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  border: 0;
  border-bottom: 1px solid rgba(201, 164, 92, .22);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 20px 0;
}

.review-card:first-child {
  padding-top: 0;
}

.review-mark {
  color: #c9a45c;
  font: 700 42px/1 var(--serif-ar);
}

.review-card p {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.9;
}

.review-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.review-avatar {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #211914;
  color: #e8c982;
  font-size: 16px;
  font-weight: 800;
}

.review-person strong {
  display: block;
  font-size: 15px;
}

.review-person small {
  color: var(--muted);
  font-size: 13px;
}

.review-compose {
  position: sticky;
  top: 88px;
  display: grid;
  gap: 14px;
  width: 100%;
  margin: 0;
  border: 1px solid rgba(201, 164, 92, .28);
  border-radius: 16px;
  background: #fbf6ee;
  padding: 22px 20px 24px;
}

.review-compose h3 {
  margin: 0;
  font: 700 22px/1.35 var(--serif-ar);
}

.review-compose > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.review-compose-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.review-compose label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.review-compose label.is-full {
  grid-column: 1 / -1;
}

.review-compose input,
.review-compose textarea {
  width: 100%;
  border: 1px solid rgba(201, 164, 92, .35);
  border-radius: 10px;
  background: #fffdf8;
  padding: 10px 12px;
  color: var(--ink);
  font: 500 15px/1.5 var(--sans);
}

.review-compose textarea {
  min-height: 110px;
  resize: vertical;
}

.review-compose input:focus,
.review-compose textarea:focus {
  outline: 2px solid rgba(201, 164, 92, .45);
  outline-offset: 1px;
}

.review-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.review-compose-send {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-compose .royal-button {
  justify-self: start;
  min-height: 44px;
  padding: 0 22px;
  font-size: 16px;
}

.review-compose-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: 700;
}

.review-compose-status.is-ok {
  color: #3d6b3a;
}

.review-compose-status.is-err {
  color: #8a2f2f;
}

.contact-cta {
  display: grid;
  width: min(100%, 1420px);
  min-height: 310px;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
  margin: clamp(80px, 9vw, 150px) auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 45px clamp(20px, 4vw, 58px);
}

.contact-ornament {
  color: rgba(185, 145, 82, .28);
  font: 500 128px/1 var(--serif-en);
}

.contact-ornament.is-logo {
  width: 110px;
  height: 110px;
  object-fit: contain;
  object-position: center;
  border: 0;
  background: none;
}

.contact-cta h2 {
  margin: 7px 0 5px;
  font: 600 clamp(43px, 5vw, 70px)/1.35 var(--serif-ar);
}

.contact-cta p {
  margin: 0;
  color: var(--muted);
  font-size: var(--fs-ui);
}

/* Footer */
.site-footer {
  overflow: hidden;
  background: #17120f;
  color: #fff;
  padding: 28px clamp(18px, 4vw, 56px) 16px;
}

.footer-main {
  display: grid;
  width: min(100%, 1180px);
  grid-template-columns: minmax(220px, .42fr) minmax(0, 1fr);
  align-items: start;
  gap: 28px 48px;
  margin: auto;
}

.footer-lockup {
  display: block;
  width: 188px;
  max-width: 100%;
  border: 0;
  background: none;
}

.footer-signature {
  display: grid;
  gap: 14px;
  justify-items: start;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(213, 178, 118, .45);
  border-radius: 50%;
  background: rgba(255, 248, 232, .05);
  color: #e8c982;
}

.footer-social:hover {
  background: rgba(232, 201, 130, .16);
}

.footer-social .icon {
  width: 18px;
  height: 18px;
}

.footer-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}

.footer-column a,
.footer-column p {
  min-width: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.footer-contact {
  display: flex;
  min-width: 0;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 12px;
  padding-top: 8px;
}

.footer-contact a,
.footer-contact p {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(213, 178, 118, .45);
  border-radius: 10px;
  background: rgba(255, 248, 232, .05);
  color: #e8c982;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.footer-contact a:hover,
.footer-contact p:hover {
  background: rgba(232, 201, 130, .16);
}

.footer-contact a[dir="ltr"] {
  font-variant-numeric: tabular-nums;
  letter-spacing: .02em;
}

.footer-contact p {
  margin: 0;
}

.footer-map {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.footer-map iframe {
  display: block;
  width: 100%;
  height: 240px;
  border: 1px solid rgba(232, 201, 130, .22);
  border-radius: 14px;
  background: #211914;
}

.footer-map-link {
  color: #e8c982;
  font-size: 14px;
  font-weight: 700;
}

.footer-map-link:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  max-width: 1180px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, .09);
  margin: 22px auto 0;
  padding-top: 14px;
  color: rgba(255, 255, 255, .42);
  font: 500 13px var(--sans);
  letter-spacing: .3px;
}

.footer-bottom a {
  color: #d5b276;
}

/* Shop */
.shop-page {
  background: var(--paper);
}

.shop-masthead {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 24px 40px;
  border-bottom: 1px solid var(--line);
  background: var(--ivory);
  padding: 22px clamp(20px, 5vw, 80px) 18px;
}

.shop-masthead h1 {
  margin: 4px 0 0;
  font: 800 clamp(26px, 3vw, 36px)/1.25 var(--serif-ar);
  letter-spacing: 0;
}

.shop-masthead-copy {
  border-right: 1px solid var(--line);
  padding-right: 28px;
}

.shop-masthead-copy p {
  margin: 0 0 4px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.55;
}

.shop-masthead-copy span {
  color: var(--bronze);
  font-size: 14px;
}

.catalog-shell {
  width: min(100%, 1600px);
  margin: auto;
  padding: 0 clamp(20px, 5vw, 80px) clamp(100px, 10vw, 160px);
}

.catalog-toolbar {
  position: sticky;
  z-index: 35;
  top: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(540px, 1.55fr);
  align-items: end;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 249, 244, .95);
  padding: 16px 0;
  backdrop-filter: blur(16px);
}

.catalog-filters {
  display: flex;
  min-width: 0;
  width: 100%;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 14px;
}

.catalog-filters > .catalog-field {
  flex: 1 1 140px;
  min-width: 0;
  width: auto;
}

.catalog-field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 7px;
}

.catalog-field-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
}

.catalog-field-control {
  display: flex;
  height: 50px;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  padding: 0 14px;
  box-shadow: 0 1px 0 rgba(33, 25, 20, .03);
  transition: border-color .2s, box-shadow .2s;
}

.catalog-field-control:focus-within {
  border-color: var(--bronze);
  box-shadow: 0 0 0 3px rgba(185, 145, 82, .14);
}

.catalog-field-search .catalog-field-control {
  height: 52px;
  border-color: rgba(139, 105, 58, .5);
  background: #efe4d0;
  padding: 0 22px;
  box-shadow: inset 0 0 0 1px rgba(255, 248, 232, .35);
}

.catalog-field-search .catalog-field-control:focus-within {
  border-color: var(--bronze);
  background: #f6edd9;
  box-shadow: 0 0 0 3px rgba(185, 145, 82, .16);
}

.catalog-field-search .catalog-field-control .icon {
  color: #8a6524;
}

.catalog-field-control .icon {
  width: 18px;
  flex: 0 0 auto;
  color: var(--bronze);
}

.catalog-field-control input,
.catalog-field-control select {
  width: 100%;
  min-width: 0;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 16px;
}

.catalog-field-control select {
  cursor: pointer;
  appearance: none;
  overflow: hidden;
  text-overflow: ellipsis;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%238b8178' stroke-width='1.5' d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 2px center;
  padding-left: 18px;
}

.catalog-field-control input::placeholder {
  color: #a99f95;
}

.shop-results {
  min-height: 600px;
}

.catalog-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 34px 0 25px;
  color: var(--muted);
  font-size: var(--fs-caption);
}

.catalog-meta i {
  display: block;
  height: 1px;
  flex: 1;
  background: var(--line);
}

.catalog-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.load-more {
  display: grid;
  place-items: center;
  padding-top: 75px;
}

.load-more .royal-button {
  min-width: 220px;
}

.load-more small {
  color: var(--muted);
  font-size: var(--fs-caption);
}

.catalog-empty {
  display: grid;
  min-height: 500px;
  place-items: center;
  align-content: center;
  padding: 55px 20px;
  text-align: center;
}

.catalog-empty > span {
  display: grid;
  min-width: 72px;
  height: 72px;
  place-items: center;
  border: 1px solid var(--bronze);
  color: var(--bronze);
  font: 500 31px var(--serif-en);
  padding: 0 12px;
}

.catalog-empty h2,
.catalog-empty h1 {
  margin: 17px 0 5px;
  font: 600 clamp(30px, 4vw, 48px) var(--serif-ar);
}

.catalog-empty p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: var(--fs-ui);
}

.shop-assistance {
  position: relative;
  display: grid;
  min-height: 480px;
  overflow: hidden;
  grid-template-columns: minmax(90px, .8fr) minmax(0, 1.15fr) minmax(90px, .8fr);
  align-items: center;
  isolation: isolate;
  background:
    radial-gradient(ellipse 28% 55% at 8% 70%, rgba(201, 164, 92, .16), transparent 70%),
    radial-gradient(ellipse 28% 55% at 92% 30%, rgba(201, 164, 92, .12), transparent 70%),
    var(--hero-bg-end);
  padding: 56px clamp(16px, 3vw, 40px);
  color: #fff8e8;
  text-align: center;
}

.shop-assistance-copy {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
}

.shop-assistance .eyebrow {
  color: var(--hero-champagne, #e8c982);
  letter-spacing: .18em;
}

.shop-assistance h2 {
  max-width: 14ch;
  margin: 12px 0 12px;
  font: 800 clamp(34px, 4.6vw, 64px)/1.2 var(--serif-ar);
  letter-spacing: -0.4px;
  text-wrap: balance;
}

.shop-assistance p {
  max-width: 34em;
  margin: 0 0 26px;
  color: rgba(255, 248, 232, .72);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.75;
}

.assist-bottle {
  width: min(240px, 78%);
  max-height: 340px;
  justify-self: center;
  object-fit: contain;
  filter: drop-shadow(0 22px 32px rgba(8, 5, 3, .45));
  pointer-events: none;
  user-select: none;
}

.assist-bottle.is-left {
  animation: assistFloat 6.4s ease-in-out infinite;
}

.assist-bottle.is-right {
  animation: assistFloat 7.2s ease-in-out infinite .8s;
}

@keyframes assistFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Product detail */
.product-page {
  background:
    radial-gradient(circle at 12% 8%, rgba(201, 164, 92, .08), transparent 26%),
    linear-gradient(180deg, #fcfbf8 0%, var(--paper) 58%, #f4ecdf 100%);
}

.product-breadcrumb {
  display: flex;
  width: min(100%, 1120px);
  align-items: center;
  gap: 9px;
  overflow: hidden;
  margin: auto;
  padding: 18px clamp(20px, 3.5vw, 40px) 14px;
  color: var(--muted);
  font-size: var(--fs-caption);
  white-space: nowrap;
}

.page-back {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
  margin-inline-start: 8px;
  border: 1px solid rgba(46, 35, 27, .18);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .66);
  padding: 6px 12px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 5px 16px rgba(33, 25, 20, .05);
  transition: border-color .25s var(--ease), color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}

.page-back .icon {
  width: 16px;
  height: 16px;
}

.page-back:hover {
  border-color: var(--bronze);
  background: #fffaf1;
  color: var(--bronze);
  box-shadow: 0 9px 22px rgba(33, 25, 20, .1);
  transform: translateY(-2px);
}

.product-breadcrumb bdi {
  overflow: hidden;
  color: var(--ink-soft);
  text-overflow: ellipsis;
}

.product-detail {
  display: grid;
  width: min(100%, 1120px);
  grid-template-columns: minmax(260px, 400px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(18px, 2.2vw, 28px);
  margin: 0 auto;
  padding: 0 clamp(20px, 3.5vw, 40px) 56px;
}

.detail-gallery {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(201, 164, 92, .38);
  border-radius: 24px;
  background: #211914;
  box-shadow:
    0 18px 35px rgba(33, 25, 20, .12),
    0 42px 85px rgba(33, 25, 20, .14);
  isolation: isolate;
}

.detail-gallery::before {
  position: absolute;
  z-index: 3;
  inset: 14px;
  border: 1px solid rgba(255, 231, 184, .42);
  border-radius: 15px;
  content: '';
  pointer-events: none;
}

.product-visual.is-detail {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  border-radius: inherit;
}

.product-visual.is-detail img {
  object-fit: cover;
  object-position: center;
}

.detail-gallery:hover .product-visual.is-detail img {
  transform: scale(1.018);
}

.detail-reference {
  position: absolute;
  z-index: 5;
  bottom: 20px;
  left: 20px;
  color: rgba(35, 25, 18, .5);
  font: 500 8px var(--serif-en);
  letter-spacing: 1.6px;
}

.detail-gallery .product-badges {
  top: 16px;
  right: 16px;
  gap: 8px;
}

.detail-gallery .product-badge,
.detail-gallery .sold-out-badge {
  min-height: 30px;
  padding: 5px 13px;
  font-size: 13px;
}

.detail-content {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  min-width: 0;
  border: 1px solid rgba(201, 164, 92, .2);
  border-radius: 22px;
  background: rgba(255, 253, 249, .72);
  padding: 26px 28px 24px;
  box-shadow: 0 16px 34px rgba(33, 25, 20, .06);
}

.detail-content h1 {
  max-width: 18ch;
  margin: 8px 0 12px;
  font: 700 clamp(24px, 1.4vw + 12px, 34px)/1.28 var(--serif-ar);
  letter-spacing: -.6px;
  text-wrap: balance;
}

.detail-prices {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  border-block: 1px solid rgba(201, 164, 92, .22);
  padding-block: 10px;
}

.detail-prices strong {
  color: var(--ink);
  font-size: 18px;
}

.detail-prices del {
  color: var(--muted);
  font-size: 11px;
}

.detail-prices span {
  border: 1px solid rgba(201, 164, 92, .35);
  border-radius: 8px;
  background: #efe3d0;
  color: #8a6030;
  padding: 5px 11px;
  font-size: var(--fs-caption);
  font-weight: 700;
}

.detail-description {
  max-width: 52ch;
  margin: 16px 0 14px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.8;
}

.detail-status {
  display: flex;
  gap: 9px;
  margin-bottom: 20px;
}

.detail-status span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(46, 35, 27, .13);
  border-radius: 8px;
  background: rgba(255, 255, 255, .7);
  padding: 5px 11px;
  color: var(--ink-soft);
  font-size: var(--fs-caption);
  box-shadow: 0 5px 14px rgba(33, 25, 20, .04);
}

.detail-status span:first-child {
  color: var(--success);
}

.detail-status span.is-out {
  color: var(--danger);
}

.detail-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.detail-purchase {
  display: flex;
  width: 100%;
  align-items: stretch;
  gap: 11px;
}

.detail-purchase .royal-button {
  min-width: min(100%, 310px);
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(33, 25, 20, .16);
}

.whatsapp-button .icon {
  transform: none;
}

.quantity-control {
  display: inline-grid;
  min-width: 130px;
  grid-template-columns: 38px 1fr 38px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(46, 35, 27, .18);
  border-radius: 12px;
  background: rgba(255, 255, 255, .68);
  box-shadow: 0 8px 18px rgba(33, 25, 20, .06);
}

.quantity-control button {
  display: grid;
  height: 44px;
  place-items: center;
  background: transparent;
}

.quantity-control .icon {
  width: 14px;
}

.quantity-control strong,
.quantity-control b {
  text-align: center;
}

.purchase-notes {
  width: 100%;
  margin-top: 18px;
  border-top: 0;
}

.purchase-notes > div {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  border: 1px solid rgba(201, 164, 92, .18);
  border-radius: 12px;
  background: rgba(255, 255, 255, .58);
  margin-top: 9px;
  padding: 13px 15px;
  box-shadow: 0 7px 18px rgba(33, 25, 20, .04);
}

.purchase-notes > div > .icon {
  width: 17px;
  margin-top: 3px;
  color: var(--bronze);
}

.purchase-notes > div > span {
  display: flex;
  flex-direction: column;
}

.purchase-notes strong {
  font-size: var(--fs-caption);
}

.purchase-notes small {
  color: var(--muted);
  font-size: var(--fs-caption);
  line-height: 1.8;
}

.product-narrative {
  display: grid;
  min-height: 0;
  place-items: center;
  align-content: center;
  background: var(--brand-dark);
  padding: 48px 20px 52px;
  color: #fff;
  text-align: center;
}

.product-narrative h2 {
  margin: 10px 0 14px;
  font: 600 clamp(26px, 3.2vw, 40px)/1.25 var(--serif-ar);
  letter-spacing: -1px;
}

.product-narrative p {
  max-width: 590px;
  color: rgba(255, 255, 255, .52);
  font-size: var(--fs-ui);
  line-height: 2.1;
}

.related-section {
  background: var(--ivory);
}

.related-section.site-section {
  padding-block: 48px 56px;
}

.mobile-order-bar {
  display: none;
}

.wa-dock {
  position: fixed;
  z-index: 90;
  right: auto;
  bottom: max(18px, env(safe-area-inset-bottom));
  left: 20px;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  padding: 0 18px 0 16px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(18, 140, 126, .38);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .4s var(--ease), transform .4s var(--ease), visibility .4s var(--ease), background .2s;
}

.wa-dock.is-icon {
  width: 56px;
  height: 56px;
  min-height: 56px;
  justify-content: center;
  padding: 0;
  border-radius: 50%;
}

.wa-dock.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

html[dir="ltr"] .wa-dock {
  right: 20px;
  left: auto;
  padding: 0 16px 0 18px;
}

html[dir="ltr"] .wa-dock.is-icon {
  padding: 0;
}

.wa-dock .icon {
  width: 22px;
  height: 22px;
}

.wa-dock.is-visible:hover {
  background: #1ebe5d;
  color: #fff;
  transform: translateY(-2px);
}

.menu-is-open .wa-dock {
  visibility: hidden;
  pointer-events: none;
}

/* Cart and checkout */
.utility-page {
  min-height: 70vh;
  background: var(--paper);
  padding: clamp(65px, 8vw, 120px) clamp(22px, 7vw, 110px);
}

.utility-heading {
  max-width: 1400px;
  margin: 0 auto clamp(45px, 6vw, 80px);
}

.utility-heading h1 {
  margin: 10px 0 4px;
  font: 600 clamp(60px, 8vw, 110px) var(--serif-ar);
}

.utility-heading p {
  color: var(--muted);
  font-size: var(--fs-ui);
}

.cart-layout,
.checkout-layout {
  display: grid;
  max-width: 1400px;
  grid-template-columns: minmax(0, 1.4fr) minmax(310px, .6fr);
  align-items: start;
  gap: clamp(35px, 6vw, 90px);
  margin: auto;
}

.cart-items {
  border-top: 1px solid var(--ink);
}

.cart-item {
  position: relative;
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) 130px;
  align-items: center;
  gap: 25px;
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.cart-item-image {
  display: grid;
  width: 140px;
  height: 150px;
  place-items: center;
  overflow: hidden;
  background: var(--ivory-deep);
  color: var(--bronze);
  font: 500 35px var(--serif-en);
}

.cart-item-image img {
  height: 100%;
  object-fit: cover;
}

.cart-item h2 {
  margin: 0 0 5px;
  font: 600 24px var(--serif-ar);
}

.cart-item p {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: var(--fs-caption);
}

.cart-item > div > strong {
  font-size: var(--fs-ui);
}

.remove-cart-item {
  position: absolute;
  top: 20px;
  left: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--danger);
  font-size: var(--fs-caption);
}

.order-summary {
  position: sticky;
  top: 30px;
  border: 1px solid var(--line);
  background: var(--ivory);
  padding: 28px;
}

.order-summary h2 {
  margin: 7px 0 22px;
  font: 600 27px var(--serif-ar);
}

.order-summary > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 15px;
  border-top: 1px solid var(--line);
  padding: 12px 0;
  font-size: var(--fs-caption);
}

.order-summary > div strong {
  font-size: var(--fs-ui);
}

.order-summary .royal-button {
  width: 100%;
  margin-top: 20px;
}

.order-summary > small {
  display: block;
  margin-top: 11px;
  color: var(--muted);
  font-size: var(--fs-caption);
  text-align: center;
}

.checkout-form {
  border-top: 1px solid var(--ink);
  padding-top: 26px;
}

.checkout-form h2 {
  margin-bottom: 25px;
  font: 600 30px var(--serif-ar);
}

.checkout-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-size: var(--fs-caption);
}

.checkout-form input,
.checkout-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  outline: 0;
  background: transparent;
  padding: 11px 3px;
  font-size: var(--fs-ui);
  resize: vertical;
}

.checkout-form input:focus,
.checkout-form textarea:focus {
  border-color: var(--bronze);
}

.checkout-form .royal-button {
  margin-top: 15px;
}

.utility-empty {
  min-height: 420px;
}

.not-found {
  min-height: 68vh;
}

/* Feedback */
.site-toast {
  position: fixed;
  z-index: 220;
  bottom: 25px;
  left: 25px;
  display: flex;
  max-width: min(420px, calc(100vw - 36px));
  align-items: center;
  gap: 11px;
  border: 1px solid #d8c5a4;
  background: var(--paper);
  box-shadow: 0 20px 60px rgba(28, 18, 12, .15);
  padding: 13px 17px;
  color: var(--success);
  font-size: var(--fs-caption);
  animation: toastIn .3s var(--ease);
  transition: opacity .3s, transform .3s;
}

.site-toast.is-error {
  color: var(--danger);
}

.site-toast.is-leaving {
  opacity: 0;
  transform: translateY(10px);
}

@keyframes toastIn {
  from { opacity: 0; transform: translateY(12px); }
}

.site-loading,
.site-error {
  display: grid;
  min-height: 100vh;
  place-items: center;
  align-content: center;
  background: var(--brand-dark);
  padding: 30px;
  color: #fff;
  text-align: center;
}

.site-loading > span,
.site-error > span {
  display: grid;
  width: 67px;
  height: 67px;
  place-items: center;
  border: 1px solid var(--bronze);
  color: var(--bronze);
  font: 500 34px var(--serif-en);
}

.site-loading > i {
  width: 70px;
  height: 1px;
  overflow: hidden;
  margin-top: 20px;
  background: rgba(255, 255, 255, .16);
}

.site-loading > i::after {
  content: "";
  display: block;
  width: 35px;
  height: 100%;
  background: var(--bronze);
  animation: loadingLine 1.1s ease-in-out infinite alternate;
}

@keyframes loadingLine {
  to { transform: translateX(-35px); }
}

.site-loading p,
.site-error p {
  margin-top: 13px;
  color: rgba(255, 255, 255, .55);
  font-size: var(--fs-caption);
}

.site-error h1 {
  margin: 18px 0 0;
  font: 600 36px var(--serif-ar);
}

/* Responsive */
@media (max-width: 1240px) {
  .catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collection-grid .product-card:nth-child(3n + 2) {
    transform: none;
  }

  .collection-grid .product-card:nth-child(even) {
    transform: translateY(45px);
  }

  .featured-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
    gap: 30px;
  }

  .featured-product:not(:first-child) {
    grid-template-columns: 45% 55%;
    gap: 18px;
  }

  .hero-product-note {
    width: min(320px, 100%);
  }

  .perfume-bottle {
    width: min(240px, 58%);
  }

  .perfume-bottle.is-real {
    width: min(380px, 72%);
  }
}

@media (max-width: 1020px) {
  .desktop-nav,
  .header-contact {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto 1fr;
    padding-inline: 22px;
  }

  .mobile-menu-trigger {
    display: grid;
    justify-self: start;
  }

  .header-inner > .raheeq-logo {
    justify-self: center;
  }

  .header-inner > .raheeq-logo .logo-copy {
    display: none;
  }

  .atelier-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 36px 28px 64px;
  }

  .atelier-stage {
    min-height: 420px;
    order: -1;
  }

  .atelier-bottle {
    min-height: 320px;
  }

  .atelier-bottle img {
    height: min(360px, 48vh);
  }

  .royal-hero {
    grid-template-areas: "copy" "stage";
    grid-template-columns: 1fr;
    align-items: start;
    min-height: 100svh;
    height: auto;
    padding: 140px 22px 96px;
  }

  .royal-hero.is-light-hero {
    grid-template-areas: "copy" "down";
    grid-template-rows: 1fr auto;
    align-items: stretch;
    justify-items: center;
    height: auto;
    min-height: 100svh;
    padding: 108px 22px 16px;
  }

  .hero-content {
    width: 100%;
    padding-bottom: 8px;
  }

  .hero-brand-lockup {
    gap: 8px;
    margin-bottom: 16px;
  }

  .hero-crest {
    width: 148px;
    height: 148px;
  }

  .royal-hero.is-light-hero .hero-crest {
    width: 96px;
    height: 96px;
  }

  .hero-brand-en {
    font-size: 25px;
    letter-spacing: .03em;
  }

  .royal-hero.is-light-hero .hero-brand-name {
    font-size: 22px;
  }

  .royal-hero.is-light-hero .hero-brand-en {
    font-size: 11px;
    letter-spacing: .14em;
  }

  .scent-traits > article {
    padding-inline: 14px;
  }

  .hero-orb.o4,
  .hero-drift.d2 {
    display: none;
  }

  .hero-stage {
    min-height: 390px;
  }

  .perfume-bottle {
    width: min(210px, 52%);
  }

  .perfume-bottle.is-real {
    width: min(420px, 88%);
  }

  .hero-side-bottle.is-rose,
  .hero-side-bottle.is-oud {
    height: min(180px, 24vh);
  }

  .scent-notes {
    display: none;
  }

  .featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-product:first-child {
    grid-row: auto;
  }

  .featured-product:first-child .product-visual {
    aspect-ratio: .82;
  }

  .featured-product:not(:first-child) {
    display: block;
    border: 0;
    padding: 0;
  }

  .featured-product:not(:first-child) .product-visual {
    aspect-ratio: .82;
  }

  .featured-product:nth-child(3) {
    display: block;
  }

  .collection-showcase {
    grid-template-columns: 1fr;
  }

  .collection-intro {
    position: relative;
    top: auto;
    max-width: 620px;
  }

  .brand-story {
    min-height: auto;
    grid-template-columns: minmax(190px, .75fr) minmax(0, 1fr) minmax(150px, .7fr);
    gap: 22px;
    padding: 36px 32px;
  }

  .story-stage {
    min-height: 280px;
  }

  .story-media,
  .story-media.is-crest {
    min-height: 0;
  }

  .story-copy {
    padding: 0;
  }

  .contact-cta {
    width: calc(100% - 44px);
    grid-template-columns: 90px 1fr;
  }

  .contact-cta > .royal-button {
    grid-column: 2;
    justify-self: start;
  }

  .contact-ornament {
    font-size: 96px;
  }

  .footer-lockup {
    width: 160px;
  }

  .product-detail {
    grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
    gap: 20px;
  }

  .product-visual.is-detail {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .detail-content {
    padding: 22px 20px 20px;
  }

  .detail-content h1 {
    max-width: none;
    font-size: clamp(22px, 2.4vw + 10px, 28px);
  }

  .cart-layout,
  .checkout-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 35px;
  }
}

@media (max-width: 800px) {
  .raheeq-site {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .site-ribbon {
    justify-content: center;
    padding-inline: 18px;
  }

  .site-header.is-transparent {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: none;
    background: var(--header-cream);
    box-shadow: none;
  }

  .site-header,
  .site-header.is-transparent.is-scrolled {
    height: 82px;
    width: 100%;
    max-width: none;
  }

  .site-header.is-transparent.is-scrolled {
    position: fixed;
    inset: 0 0 auto;
    background: var(--header-cream);
  }

  .header-inner {
    padding-inline: 16px;
  }

  .logo-copy strong {
    font-size: 30px;
    letter-spacing: 0;
  }

  .logo-copy small {
    font-size: 12px;
  }

  .logo-crown,
  .logo-mark {
    width: 60px;
    height: 60px;
  }

  .header-icon {
    width: 34px;
    height: 34px;
  }

  .atelier-hero {
    padding: 28px 22px 56px;
  }

  .atelier-copy h1 {
    font-size: clamp(40px, 11vw, 68px);
  }

  .royal-hero {
    min-height: 100svh;
    padding: 132px 20px 92px;
  }

  .hero-content h1 {
    max-width: 12ch;
    font-size: clamp(36px, 10vw, 56px);
    letter-spacing: -0.3px;
  }

  .hero-content p {
    max-width: 540px;
  }

  .hero-intro-layout {
    grid-template-areas:
      "copy"
      "traits";
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-intro-inner {
    grid-area: copy;
    width: min(720px, 100%);
    margin: 0 auto;
    text-align: center;
  }

  .hero-intro .hero-actions {
    justify-content: center;
  }

  .scent-traits {
    width: min(520px, 100%);
    grid-area: traits;
    padding: 0;
  }

  .scent-traits > article {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    align-items: center;
    min-height: 70px;
    gap: 12px;
    border: 1px solid rgba(197, 160, 89, .28);
    border-radius: 16px;
    padding: 12px 14px;
    text-align: right;
  }

  .scent-trait-icon {
    width: 40px;
    height: 40px;
  }

  .scent-traits strong {
    font-size: 14px;
  }

  .scent-traits small {
    display: block;
    overflow: visible;
    font-size: 12px;
    line-height: 1.45;
  }

  .editorial-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-story {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 32px 22px 40px;
  }

  .story-stage {
    min-height: 250px;
    justify-self: center;
    width: min(360px, 100%);
  }

  .story-media,
  .story-media.is-crest {
    min-height: 0;
    padding: 28px 20px;
  }

  .story-copy {
    min-height: 0;
    padding: 4px 4px 8px;
  }

  .campaign-copy {
    width: min(100%, 600px);
  }

  .visual-campaign.is-stage {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 56px 28px 48px;
  }

  .campaign-stage {
    min-height: 380px;
  }

  .campaign-flacon.is-oud {
    width: min(220px, 56%);
  }

  .reviews-shell {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-inline: 22px;
  }

  .reviews-section .editorial-heading {
    padding-inline: 22px;
  }

  .review-compose {
    position: relative;
    top: auto;
  }

  .review-compose-fields {
    grid-template-columns: 1fr;
  }

  .contact-cta {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-cta > .royal-button {
    grid-column: auto;
  }

  .contact-ornament {
    display: none;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 18px;
    justify-items: center;
    text-align: center;
  }

  .footer-signature {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    grid-column: auto;
    margin-bottom: 0;
  }

  .footer-lockup {
    margin-inline: auto;
  }

  .footer-socials {
    width: 100%;
    justify-content: center;
  }

  .footer-map {
    width: 100%;
    justify-items: center;
  }

  .footer-contact {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-map-link {
    justify-self: center;
  }

  .footer-map iframe {
    height: 200px;
  }

  .shop-masthead {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px clamp(16px, 4vw, 40px) 14px;
  }

  .shop-masthead-copy {
    max-width: none;
  }

  .catalog-toolbar {
    grid-template-columns: 1fr 1fr;
  }

  .catalog-field-search,
  .catalog-filters {
    grid-column: 1 / -1;
  }

  .catalog-filters {
    gap: 10px;
  }

  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-detail {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-bottom: 48px;
  }

  .detail-gallery {
    max-width: 420px;
    justify-self: center;
    width: 100%;
  }

  .product-visual.is-detail {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .detail-content {
    padding: 22px 20px 20px;
  }

  .detail-content h1 {
    max-width: none;
    font-size: clamp(22px, 6.4vw, 28px);
  }

  .product-narrative {
    min-height: 0;
    padding: 40px 20px 44px;
  }

  .cart-layout,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .order-summary {
    position: relative;
    top: auto;
  }
}

@media (max-width: 580px) {
  .site-ribbon {
    gap: 10px;
    font-size: 12px;
  }

  .site-ribbon a {
    font-size: 13px;
    letter-spacing: .03em;
  }

  .header-inner {
    gap: 9px;
  }

  .header-actions {
    gap: 6px;
  }

  .lang-toggle {
    min-width: 40px;
    height: 34px;
    padding: 0 8px;
    font-size: 12px;
  }

  .header-inner > .raheeq-logo .logo-copy small {
    display: none;
  }

  .header-inner > .raheeq-logo {
    gap: 8px;
  }

  .logo-copy strong {
    font-size: 26px;
    letter-spacing: 0;
  }

  .logo-crown,
  .logo-mark {
    width: 54px;
    height: 54px;
  }

  .header-icon {
    width: 32px;
    height: 32px;
  }

  .header-icon .icon {
    width: 16px;
  }

  .royal-hero {
    min-height: 100svh;
    padding: 124px 18px 88px;
  }

  .hero-stage {
    min-height: 320px;
  }

  .perfume-bottle {
    width: min(188px, 56%);
  }

  .perfume-bottle.is-real {
    width: min(300px, 92%);
  }

  .spray-hint {
    display: none;
  }

  .hero-content h1 {
    margin: 0 0 8px;
    font-size: clamp(32px, 10vw, 48px);
    line-height: 1.22;
  }

  .royal-hero.is-light-hero .hero-content h1 {
    font-size: clamp(22px, 7vw, 30px);
  }

  .hero-content .hero-copy > p {
    font-size: 16px;
    line-height: 1.7;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .hero-actions .royal-button,
  .hero-whatsapp {
    width: 100%;
  }

  .hero-descend {
    bottom: 16px;
  }

  .royal-hero.is-light-hero .hero-descend {
    bottom: auto;
  }

  .hero-brand-lockup {
    width: auto;
    max-width: 100%;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
  }

  .hero-crest {
    width: 120px;
    height: 120px;
  }

  .royal-hero.is-light-hero .hero-crest {
    width: 88px;
    height: 88px;
  }

  .hero-brand-en {
    font-size: 20px;
    letter-spacing: .03em;
  }

  .royal-hero.is-light-hero .hero-brand-name {
    font-size: 20px;
  }

  .royal-hero.is-light-hero .hero-brand-en {
    max-width: 100%;
    font-size: 12px;
    letter-spacing: .12em;
    white-space: normal;
  }

  .site-section {
    padding: 48px 18px;
  }

  .royal-selection.site-section {
    padding-top: 24px;
    padding-bottom: 12px;
  }

  .bundle-section {
    padding: 10px 18px 32px;
  }

  .bestseller-section .editorial-heading,
  .kingdom-products {
    padding-inline: 18px;
  }

  .editorial-heading {
    gap: 14px;
    margin-bottom: 24px;
  }

  .editorial-heading h2 {
    font-size: 32px;
    letter-spacing: -0.4px;
    white-space: nowrap;
  }

  .featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 10px;
  }

  .featured-product:nth-child(3) {
    display: block;
  }

  .featured-product:first-child .product-visual,
  .featured-product:not(:first-child) .product-visual {
    aspect-ratio: 1;
  }

  .collection-showcase {
    gap: 46px;
    padding: 85px 18px 125px;
  }

  .collection-intro h2 {
    font-size: 32px;
    white-space: nowrap;
  }

  .collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 45px 12px;
  }

  .collection-grid .product-card:nth-child(even) {
    transform: translateY(35px);
  }

  .product-card h3 {
    font-size: 15px;
  }

  .product-card-copy {
    padding: 12px 12px 12px;
  }

  .product-card-bottom {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
    padding-top: 8px;
  }

  .product-prices {
    gap: 5px;
  }

  .product-prices strong {
    font-size: var(--fs-caption);
  }

  .product-action {
    min-height: 34px;
    font-size: 12px;
    padding: 0 12px;
  }

  .product-badges {
    top: 8px;
    right: 8px;
    max-width: calc(100% - 16px);
    gap: 5px;
  }

  .product-badge,
  .sold-out-badge {
    min-height: 24px;
    border-radius: 7px;
    padding: 3px 8px;
    font-size: 11px;
  }

  .sold-out-badge {
    right: 8px;
    bottom: 8px;
  }

  .image-cue {
    display: none;
  }

  .story-media,
  .story-media.is-crest {
    min-height: 0;
  }

  .story-copy {
    min-height: 0;
    padding: 0 2px 8px;
  }

  .story-copy h2 {
    font-size: 34px;
  }

  .visual-campaign,
  .visual-campaign.is-stage {
    height: auto;
    min-height: auto;
    padding: 48px 21px;
  }

  .campaign-copy h2 {
    font-size: 58px;
  }

  .contact-cta {
    width: calc(100% - 36px);
    min-height: 350px;
    margin-block: 70px;
    padding-inline: 2px;
  }

  .contact-cta h2 {
    font-size: 47px;
  }

  .site-footer {
    padding: 22px 16px 12px;
  }

  .footer-lockup {
    width: 148px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 16px;
    justify-items: center;
    text-align: center;
  }

  .footer-signature {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    grid-column: auto;
  }

  .footer-lockup {
    margin-inline: auto;
  }

  .footer-socials {
    width: 100%;
    justify-content: center;
  }

  .footer-map {
    width: 100%;
    justify-items: center;
  }

  .footer-contact {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 10px;
  }

  .footer-contact a,
  .footer-contact p {
    font-size: 12px;
  }

  .footer-map-link {
    justify-self: center;
  }

  .footer-bottom {
    align-items: center;
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .shop-masthead {
    padding: 14px 18px 12px;
  }

  .shop-masthead h1 {
    font-size: 24px;
    letter-spacing: 0;
  }

  .shop-masthead-copy {
    border-right: 0;
    padding-right: 0;
  }

  .catalog-shell {
    padding-inline: 12px;
  }

  .catalog-toolbar {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding-top: 12px;
  }

  .catalog-field-search,
  .catalog-filters {
    grid-column: 1 / -1;
  }

  .catalog-filters {
    gap: 8px;
  }

  .catalog-filters .catalog-field-label {
    font-size: 12px;
  }

  .catalog-filters .catalog-field-control {
    height: 42px;
    padding: 0 8px;
  }

  .catalog-filters .catalog-field-control select {
    font-size: 13px;
    padding-left: 16px;
  }

  .catalog-field-control {
    height: 46px;
  }

  .catalog-field-search .catalog-field-control {
    height: 48px;
    padding: 0 16px;
  }

  .catalog-grid {
    gap: 45px 11px;
  }

  .catalog-meta {
    padding-inline: 6px;
  }

  .shop-assistance {
    min-height: 360px;
    grid-template-columns: 72px minmax(0, 1fr) 72px;
    padding: 40px 10px;
  }

  .shop-assistance h2 {
    font-size: clamp(28px, 8vw, 40px);
    line-height: 1.28;
  }

  .assist-bottle {
    width: min(92px, 100%);
    max-height: 180px;
  }

  .product-breadcrumb {
    gap: 6px;
    padding: 16px 12px 14px;
    font-size: 13px;
  }

  .page-back {
    margin-inline-start: 2px;
    border-radius: 9px;
    padding: 5px 9px;
    font-size: 13px;
  }

  .product-detail {
    gap: 16px;
    padding: 0 12px 48px;
  }

  .detail-gallery {
    border-radius: 19px;
    box-shadow:
      0 14px 28px rgba(33, 25, 20, .12),
      0 30px 55px rgba(33, 25, 20, .1);
  }

  .detail-gallery::before {
    inset: 9px;
    border-radius: 12px;
  }

  .product-visual.is-detail {
    aspect-ratio: 4 / 5;
  }

  .detail-content {
    border-radius: 19px;
    padding: 22px 16px 20px;
    box-shadow: 0 14px 30px rgba(33, 25, 20, .06);
  }

  .detail-content h1 {
    max-width: none;
    margin: 8px 0 12px;
    font-size: clamp(22px, 6.8vw, 26px);
    letter-spacing: -.4px;
  }

  .detail-prices {
    gap: 10px;
    padding-block: 10px;
  }

  .detail-prices strong {
    font-size: 18px;
  }

  .detail-description {
    margin: 19px 0 17px;
    font-size: 16px;
    line-height: 1.9;
  }

  .detail-status {
    margin-bottom: 21px;
  }

  .purchase-notes {
    margin-top: 21px;
  }

  .purchase-notes > div {
    gap: 10px;
    padding: 11px 12px;
  }

  .detail-purchase {
    flex-direction: column;
  }

  .detail-purchase .royal-button {
    width: 100%;
  }

  .product-narrative {
    min-height: 0;
    padding: 36px 18px 40px;
  }

  .product-narrative h2 {
    font-size: clamp(24px, 7vw, 30px);
  }

  .related-section .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mobile-order-bar {
    position: fixed;
    z-index: 60;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #1d3429;
    box-shadow: 0 15px 45px rgba(18, 23, 19, .25);
    color: #fff;
    padding: 11px 18px;
    font-size: var(--fs-caption);
  }

  .mobile-order-bar .icon {
    width: 18px;
  }

  .mobile-order-bar strong {
    margin-right: auto;
    color: #dfc493;
  }

  .utility-page {
    padding: 65px 16px;
  }

  .utility-heading h1 {
    font-size: 62px;
  }

  .cart-item {
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 15px;
  }

  .cart-item-image {
    width: 90px;
    height: 105px;
  }

  .cart-item .quantity-control {
    grid-column: 2;
    min-width: 115px;
    justify-self: start;
  }

  .remove-cart-item {
    top: auto;
    bottom: 20px;
  }

  .site-toast {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

html[dir="ltr"] .logo-copy strong {
  font-family: var(--serif-en);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.025em;
}

@media (max-width: 800px) {
  html[dir="ltr"] .logo-copy strong {
    font-size: 16px;
  }
}

@media (max-width: 580px) {
  html[dir="ltr"] .logo-copy strong {
    font-size: 14px;
  }
}

html[dir="ltr"] .hero-content h1,
html[dir="ltr"] .shop-masthead h1,
html[dir="ltr"] .editorial-heading h2,
html[dir="ltr"] .detail-content h1,
html[dir="ltr"] .bundle-masthead-copy h1,
html[dir="ltr"] .utility-heading h1 {
  font-family: var(--serif-en);
}

html[dir="ltr"] .hero-gold-line {
  transform-origin: left center;
  background: linear-gradient(90deg, var(--hero-gold), transparent);
}

html[dir="ltr"] .desktop-nav a::after {
  right: auto;
  left: 0;
}

html[dir="ltr"] .mobile-menu {
  right: auto;
  left: 0;
  transform: translateX(-105%);
}

html[dir="ltr"] .menu-is-open .mobile-menu {
  transform: none;
}

html[dir="ltr"] .product-badges,
html[dir="ltr"] .detail-gallery .product-badges {
  right: auto;
  left: 12px;
  align-items: flex-start;
}

html[dir="ltr"] .detail-gallery .product-badges {
  left: 16px;
}

html[dir="ltr"] .sold-out-badge,
html[dir="ltr"] .image-cue {
  right: auto;
  left: 15px;
}

html[dir="ltr"] .image-cue {
  left: 16px;
}

html[dir="ltr"] .catalog-field-control select {
  background-position: right 2px center;
  padding-left: 0;
  padding-right: 18px;
}

html[dir="ltr"] .bag-action b {
  right: auto;
  left: 4px;
}

html[dir="ltr"] .page-back .icon,
html[dir="ltr"] .text-link .icon,
html[dir="ltr"] .bundle-card-link .icon {
  transform: scaleX(-1);
}

html[dir="ltr"] .detail-reference {
  left: auto;
  right: 20px;
}

@media (max-width: 580px) {
  html[dir="ltr"] .product-badges {
    left: 8px;
  }

  html[dir="ltr"] .sold-out-badge {
    left: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .review-card {
    transform: none;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .perfume-bottle,
  .bottle-float,
  .perfume-ring,
  .hero-spark,
  .flacon-liquid,
  .fragrance-wave,
  .hero-gold-line,
  .hero-orb,
  .hero-drift,
  .hero-descend-orb i,
  .hero-content,
  .hero-brand-lockup,
  .hero-crest,
  .hero-content h1,
  .hero-content .hero-copy > p,
  .hero-actions,
  .wa-dock,
  .bestseller-slide,
  .bundle-card,
  .product-card,
  .scent-notes li,
  .flacon-shine,
  .bottle-rays,
  .story-flacon,
  .assist-bottle,
  .story-glow,
  .story-mote {
    animation: none !important;
  }
}
