@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;800;900&display=swap");

:root {
  --plum: #111111;
  --tamarillo: #202020;
  --orange: #ffd400;
  --eyfel-yellow: #ffd400;
  --eyfel-yellow-soft: #ffe76a;
  --eyfel-black: #111111;
  --gold: #f2c200;
  --gold-soft: #fff0a3;
  --cream: #ffffff;
  --cream-2: #f3f3f3;
  --ink: #111111;
  --muted: #555555;
  --line: rgba(17, 17, 17, 0.14);
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(17, 17, 17, 0.16);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 4%, rgba(255, 212, 0, 0.22), transparent 30rem),
    radial-gradient(circle at 90% 0%, rgba(17, 17, 17, 0.08), transparent 26rem),
    linear-gradient(180deg, #fffbe7 0%, #ffffff 46%, #f4f4f4 100%);
  font-family: "Aptos", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 212, 0, 0.94);
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--plum);
}

.brand img {
  width: 82px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--eyfel-black);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 180ms ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
}

.language-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 34px;
  border-radius: 999px;
  color: var(--eyfel-black);
  font-size: 0.82rem;
  font-weight: 900;
}

.language-switcher a.active {
  background: var(--eyfel-black);
  color: var(--white);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--plum);
  font-weight: 800;
  padding: 10px 14px;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  background: var(--plum);
  color: var(--white);
  padding: 13px 22px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
button.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.26);
  background: #000000;
}

.button.secondary {
  background: var(--white);
  color: var(--eyfel-black);
  border: 1px solid var(--line);
  box-shadow: none;
}

.button.orange {
  background: var(--eyfel-yellow);
  color: var(--eyfel-black);
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.18);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  box-shadow: none;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.section-tight {
  padding: 54px 0;
}

.seo-panel {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 56px rgba(17, 17, 17, 0.08);
}

.seo-content {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 34px;
  align-items: start;
}

.seo-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.seo-list li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 247, 238, 0.76);
  color: var(--ink);
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 6px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  padding: 16px 18px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--plum);
  font-weight: 900;
}

.faq-list p {
  margin: 10px 0 0;
  color: var(--muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--tamarillo);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  color: var(--plum);
}

h1,
.hero-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 7vw, 7.8rem);
  letter-spacing: -0.06em;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  letter-spacing: -0.05em;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.65rem);
}

p {
  margin: 0;
  color: var(--muted);
}

.lead {
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  color: #544047;
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 24%, rgba(255, 212, 0, 0.38), transparent 23rem),
    radial-gradient(circle at 32% 10%, rgba(255, 255, 255, 0.16), transparent 23rem),
    linear-gradient(135deg, #050505 0%, #1b1b1b 50%, #000000 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image:
    linear-gradient(120deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 1px, transparent 1.5px);
  background-size: 80px 80px, 30px 30px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0 82px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 54px;
}

.hero h1,
.hero .eyebrow,
.hero p {
  color: var(--white);
}

.hero .eyebrow {
  color: var(--gold-soft);
}

.hero-copy {
  display: grid;
  gap: 26px;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.official-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 8px;
}

.official-strip span {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
  text-align: center;
}

.fragrance-stage {
  position: relative;
  min-height: 560px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 236, 172, 0.55), transparent 12rem),
    radial-gradient(circle at 62% 62%, rgba(255, 212, 0, 0.24), transparent 12rem),
    linear-gradient(160deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), 0 34px 90px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.bottle {
  position: absolute;
  left: 50%;
  top: 51%;
  width: min(64%, 330px);
  aspect-ratio: 0.56;
  transform: translate(-50%, -50%);
  border-radius: 44px 44px 78px 78px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.22), transparent 30%, rgba(255, 255, 255, 0.18) 68%, transparent),
    linear-gradient(180deg, #ffffff 0%, #ffd400 22%, #3a3a3a 58%, #000000 100%);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.bottle::before {
  content: "";
  position: absolute;
  top: -74px;
  left: 50%;
  width: 44%;
  height: 82px;
  transform: translateX(-50%);
  border-radius: 20px 20px 8px 8px;
  background: linear-gradient(180deg, #f9dc8a, #c78b25);
}

.bottle::after {
  content: "EYFEL";
  position: absolute;
  left: 50%;
  top: 47%;
  transform: translate(-50%, -50%);
  width: 68%;
  padding: 28px 12px;
  border-radius: 22px;
  background: rgba(255, 247, 238, 0.9);
  color: var(--plum);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 4vw, 2.6rem);
  font-weight: 900;
  text-align: center;
  letter-spacing: 0.16em;
}

.hero-product-banner {
  position: relative;
  min-height: 560px;
  padding: 18px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 212, 0, 0.22), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), 0 34px 90px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.hero-product-banner img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: contain;
  border-radius: 28px;
  background: var(--eyfel-yellow);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.26);
}

.home-photo-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(180px, 0.72fr);
  gap: 18px;
  min-height: 560px;
  padding: 18px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 212, 0, 0.26), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), 0 34px 90px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.home-photo-stack {
  display: grid;
  gap: 18px;
}

.home-photo-card {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background: #1f1f1f;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
}

.home-photo-card.primary {
  min-height: 520px;
}

.home-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), transparent 34%, rgba(0, 0, 0, 0.18)),
    linear-gradient(90deg, rgba(255, 212, 0, 0.14), transparent 38%);
  pointer-events: none;
}

.home-photo-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  width: fit-content;
  max-width: calc(100% - 36px);
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 212, 0, 0.92);
  color: var(--eyfel-black);
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.scent-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  background: rgba(255, 247, 238, 0.12);
  backdrop-filter: blur(18px);
  color: var(--white);
  padding: 18px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.16);
}

.scent-card strong {
  display: block;
  font-size: 1.05rem;
}

.scent-card span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.scent-card.one {
  top: 42px;
  left: 28px;
}

.scent-card.two {
  right: 26px;
  bottom: 34px;
}

.scent-card.three {
  left: 26px;
  bottom: 96px;
}

.card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.card-pad {
  padding: clamp(22px, 4vw, 38px);
}

.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 44px;
  align-items: center;
}

.section-head {
  max-width: 820px;
  display: grid;
  gap: 18px;
  margin-bottom: 34px;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.feature-card,
.product-card,
.store-card,
.legal-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.76);
  padding: 26px;
  box-shadow: 0 18px 50px rgba(17, 17, 17, 0.08);
}

.feature-card .icon,
.product-card .icon,
.legal-card .icon {
  width: 50px;
  height: 50px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.08), rgba(255, 212, 0, 0.3));
  color: var(--plum);
  font-weight: 900;
  margin-bottom: 18px;
}

.product-visual {
  height: 220px;
  border-radius: 22px;
  margin-bottom: 22px;
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 231, 106, 0.9), transparent 5rem),
    linear-gradient(145deg, #111111, #2b2311 55%, #ffd400);
  position: relative;
  overflow: hidden;
}

.product-visual::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 22px;
  width: 72px;
  height: 128px;
  transform: translateX(-50%);
  border-radius: 22px 22px 30px 30px;
  background: linear-gradient(180deg, #ffe9aa 0%, #fff7ee 38%, rgba(255, 255, 255, 0.5) 100%);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.product-visual::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 150px;
  width: 42px;
  height: 20px;
  transform: translateX(-50%);
  border-radius: 8px 8px 3px 3px;
  background: var(--gold);
}

.product-photo {
  display: grid;
  place-items: center;
  padding: 10px;
  background: #fff7ee;
}

.product-photo::before,
.product-photo::after {
  content: none;
}

.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-card {
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--eyfel-yellow), var(--gold), var(--eyfel-black));
}

.product-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 18px;
}

.product-notes span {
  border-radius: 999px;
  background: rgba(255, 212, 0, 0.16);
  border: 1px solid rgba(17, 17, 17, 0.1);
  color: var(--eyfel-black);
  padding: 6px 10px;
  font-size: 0.82rem;
  font-weight: 800;
}

.product-catalog-toolbar {
  display: grid;
  gap: 18px;
  margin-bottom: 26px;
}

.product-catalog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.product-catalog-head .input {
  max-width: 420px;
}

.product-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 800;
}

.product-source-note {
  max-width: 740px;
  font-size: 0.95rem;
}

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

.collection-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.collection-highlight {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 50px rgba(17, 17, 17, 0.08);
}

.collection-highlight-media {
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 248, 216, 0.9), rgba(248, 239, 229, 0.9));
}

.collection-highlight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-highlight-body {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.catalogue-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.catalogue-card .product-visual {
  height: 340px;
  position: relative;
}

.product-card-body {
  display: grid;
  gap: 13px;
}

.product-card-body h3 {
  margin: 0;
}

.product-subtitle {
  margin: -5px 0 0;
  color: var(--plum);
  font-weight: 900;
  letter-spacing: 0.01em;
}

.product-card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.product-card-meta {
  display: grid;
  gap: 4px;
}

.product-card-meta strong {
  color: var(--eyfel-black);
  font-size: 0.92rem;
}

.product-card-meta span {
  color: var(--muted);
  font-weight: 800;
  font-size: 0.82rem;
}

.product-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  font-weight: 800;
}

.product-visual-overlay {
  position: absolute;
  inset: 14px 14px auto 14px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  pointer-events: none;
}

.product-code,
.product-visual-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.66);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 16px 40px rgba(17, 17, 17, 0.16);
  backdrop-filter: blur(18px);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-visual-tag {
  margin-inline-start: auto;
  background: rgba(255, 212, 0, 0.18);
}

.catalogue-card[data-category="women"] .product-visual {
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 231, 106, 0.9), transparent 5rem),
    linear-gradient(145deg, #111111, #3a3a3a 55%, #ffd400);
}

.catalogue-card[data-category="men"] .product-visual {
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 231, 106, 0.85), transparent 5rem),
    linear-gradient(145deg, #111111, #20324b 55%, #ffd400);
}

.catalogue-card[data-category="unisex"] .product-visual,
.catalogue-card[data-category="bighill"] .product-visual {
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 231, 106, 0.86), transparent 5rem),
    linear-gradient(145deg, #111111, #2b2b2b 55%, #ffd400);
}

.catalogue-card[data-category="reed"] .product-visual,
.catalogue-card[data-category="room"] .product-visual,
.catalogue-card[data-category="car"] .product-visual {
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 247, 238, 0.9), transparent 5rem),
    linear-gradient(145deg, #21433e, #9b6a22 55%, #ffd400);
}

.catalogue-card[data-category] .product-photo {
  background: #ffffff;
}

.shopping-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.shopping-strip .feature-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 248, 216, 0.88));
}

.proof-band {
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 212, 0, 0.22), transparent 20rem),
    linear-gradient(135deg, #050505, #222222);
  color: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.proof-band h2,
.proof-band h3,
.proof-band p,
.proof-band .eyebrow {
  color: var(--white);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.stat {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.stat strong {
  display: block;
  color: var(--gold-soft);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.stat span {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.page-hero {
  padding: 88px 0 58px;
  background:
    radial-gradient(circle at 82% 2%, rgba(255, 212, 0, 0.24), transparent 24rem),
    linear-gradient(180deg, #fffbe7, #f4f4f4);
}

.page-hero .container {
  display: grid;
  gap: 20px;
  max-width: 1020px;
}

.breadcrumb {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  padding: 8px 13px;
  color: var(--plum);
  background: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  font-size: 0.88rem;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  align-items: start;
}

.timeline-year {
  border-radius: 16px;
  background: var(--plum);
  color: var(--white);
  text-align: center;
  font-weight: 900;
  padding: 10px;
}

.store-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}

.input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  padding: 14px 15px;
  font: inherit;
}

.input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(255, 212, 0, 0.32);
  border-color: rgba(17, 17, 17, 0.34);
}

.store-toolbar .input {
  max-width: 380px;
}

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

.tab {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--plum);
  border-radius: 999px;
  padding: 10px 15px;
  font-weight: 900;
  cursor: pointer;
}

.tab.active {
  background: var(--plum);
  color: var(--white);
}

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

.store-card {
  display: grid;
  gap: 12px;
}

.store-meta {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.map-panel {
  min-height: 430px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  overflow: hidden;
  background:
    radial-gradient(circle at 55% 45%, rgba(255, 212, 0, 0.24), transparent 10rem),
    radial-gradient(circle at 38% 55%, rgba(17, 17, 17, 0.08), transparent 12rem),
    linear-gradient(135deg, #ffffff, #eeeeee);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 36px;
}

.map-layout {
  min-height: 0;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 20px;
  align-items: stretch;
  text-align: left;
  padding: 20px;
}

.map-shell {
  min-height: 520px;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.branch-map {
  width: 100%;
  height: 100%;
  min-height: 520px;
}

.map-sidebar {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 18px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  text-align: left;
}

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

.map-count {
  font-weight: 900;
  color: var(--plum);
}

.map-branch-list {
  display: grid;
  gap: 12px;
}

.map-branch-card {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 17, 17, 0.12);
}

.map-branch-card h3 {
  font-size: 1.05rem;
}

.map-branch-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.map-branch-meta span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 212, 0, 0.16);
  border: 1px solid rgba(17, 17, 17, 0.08);
  color: var(--eyfel-black);
}

.map-fallback {
  display: grid;
  place-items: center;
  min-height: 520px;
  padding: 30px;
  text-align: center;
  color: var(--muted);
  font-weight: 800;
}

.map-panel strong {
  color: var(--plum);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-family: Georgia, "Times New Roman", serif;
}

.leaflet-container {
  font: inherit;
}

.leaflet-popup-content-wrapper {
  border-radius: 18px;
}

.leaflet-popup-content {
  margin: 14px 16px;
  color: var(--ink);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.footer {
  background: rgba(255, 212, 0, 0.94);
  color: var(--eyfel-black);
  padding: 58px 0 24px;
  border-top: 1px solid rgba(17, 17, 17, 0.12);
}

.footer p,
.footer a {
  color: rgba(17, 17, 17, 0.76);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 30px;
}

.footer h3 {
  color: var(--eyfel-black);
  font-size: 1rem;
  margin-bottom: 12px;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(17, 17, 17, 0.14);
  margin-top: 34px;
  padding-top: 20px;
  color: rgba(17, 17, 17, 0.64);
  font-size: 0.9rem;
}

.notice {
  border-radius: 22px;
  border: 1px solid rgba(217, 164, 60, 0.34);
  background: rgba(217, 164, 60, 0.1);
  padding: 18px;
}

.form-response {
  min-height: 1.4em;
  margin-top: 14px;
  color: var(--plum);
  font-weight: 800;
}

.verification-list {
  display: grid;
  gap: 14px;
}

.verification-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.check {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 212, 0, 0.28);
  color: var(--plum);
  font-weight: 900;
}

.legal-content {
  max-width: 920px;
}

.legal-content h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  margin-top: 38px;
  margin-bottom: 14px;
}

.legal-content h3 {
  margin-top: 26px;
  margin-bottom: 10px;
}

.legal-content ul {
  color: var(--muted);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--plum);
  color: var(--white);
  padding: 10px 14px;
  z-index: 99;
}

.skip-link:focus {
  left: 8px;
}

html[dir="rtl"] body {
  font-family: "Cairo", "Tahoma", "Segoe UI", Arial, sans-serif;
  text-align: right;
  line-height: 1.9;
}

html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3 {
  font-family: "Cairo", "Tahoma", "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
  line-height: 1.28;
  word-spacing: 0.04em;
}

html[dir="rtl"] .hero-title,
html[dir="rtl"] h1,
html[dir="rtl"] h2 {
  font-family: "Cairo", "Tahoma", "Segoe UI", Arial, sans-serif;
}

html[dir="rtl"] h1,
html[dir="rtl"] .hero-title {
  font-size: clamp(2.45rem, 5.4vw, 5.55rem);
  line-height: 1.24;
}

html[dir="rtl"] h2 {
  font-size: clamp(2rem, 4.1vw, 4.05rem);
  line-height: 1.32;
}

html[dir="rtl"] h3 {
  line-height: 1.42;
}

html[dir="rtl"] .page-hero {
  padding: 96px 0 72px;
}

html[dir="rtl"] .page-hero .container,
html[dir="rtl"] .section-head,
html[dir="rtl"] .hero-copy {
  gap: 28px;
}

html[dir="rtl"] .lead {
  line-height: 2.05;
}

html[dir="rtl"] .eyebrow {
  letter-spacing: 0;
  line-height: 1.8;
}

a[href^="tel:"],
.phone-number,
input[type="tel"] {
  direction: ltr;
  unicode-bidi: isolate;
}

a[href^="tel:"],
.phone-number {
  display: inline-block;
  white-space: nowrap;
}

html[dir="rtl"] input[type="tel"] {
  text-align: left;
}

html[dir="rtl"] .nav-links a::after {
  left: auto;
  right: 0;
}

html[dir="rtl"] .official-strip span,
html[dir="rtl"] .stat,
html[dir="rtl"] .map-panel {
  text-align: center;
}

html[dir="rtl"] .map-layout,
html[dir="rtl"] .map-sidebar {
  text-align: right;
}

html[dir="rtl"] .timeline-item,
html[dir="rtl"] .verification-item {
  direction: rtl;
}

@media (max-width: 980px) {
  .hero-inner,
  .split,
  .seo-content,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .fragrance-stage,
  .hero-product-banner,
  .home-photo-stage {
    min-height: 480px;
  }

  .grid.three,
  .grid.four,
  .collection-showcase-grid,
  .product-grid,
  .shopping-strip,
  .stats,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .nav {
    min-height: 70px;
  }

  .brand img {
    width: 132px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    inset: 70px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 247, 238, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  body.menu-open .nav-links {
    display: flex;
  }

  .nav-actions .button {
    display: none;
  }

  .hero-inner {
    padding: 58px 0 52px;
  }

  .section {
    padding: 68px 0;
  }

  html[dir="rtl"] h1,
  html[dir="rtl"] .hero-title {
    font-size: clamp(2.1rem, 10.4vw, 3.7rem);
    line-height: 1.34;
  }

  html[dir="rtl"] h2 {
    font-size: clamp(1.75rem, 8vw, 3rem);
    line-height: 1.38;
  }

  html[dir="rtl"] .page-hero {
    padding: 72px 0 58px;
  }

  .official-strip,
  .grid.three,
  .grid.four,
  .collection-showcase-grid,
  .product-grid,
  .shopping-strip,
  .stats,
  .footer-grid,
  .store-grid,
  .seo-list,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .product-card-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .product-card-footer .button {
    width: 100%;
    text-align: center;
  }

  .catalogue-card .product-visual {
    height: 300px;
  }

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

  .map-shell,
  .branch-map {
    min-height: 420px;
  }

  .scent-card {
    position: relative;
    inset: auto !important;
    margin: 10px;
  }

  .home-photo-stage {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 12px;
  }

  .hero-product-banner {
    min-height: 0;
    padding: 10px;
  }

  .hero-product-banner img {
    min-height: 0;
    aspect-ratio: 1640 / 624;
  }

  .home-photo-stack {
    grid-template-columns: 1fr;
  }

  .home-photo-card.primary,
  .home-photo-card {
    min-height: 280px;
  }

  .fragrance-stage {
    display: grid;
    align-content: end;
    min-height: 520px;
    padding-top: 300px;
  }

  .bottle {
    top: 220px;
    width: 210px;
  }
}

@media print {
  .site-header,
  .footer,
  .cta-row,
  .menu-toggle {
    display: none !important;
  }

  body {
    background: white;
  }

  .card,
  .feature-card,
  .product-card,
  .store-card,
  .legal-card {
    box-shadow: none;
  }
}
