@font-face {
  font-family: "Cairo";
  src: url("../fonts/Cairo.ttf") format("truetype");
  font-weight: 200 1000;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Amiri";
  src: url("../fonts/Amiri-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Amiri";
  src: url("../fonts/Amiri-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --blush: #f4e6e7;
  --rose: #c9a4a8;
  --dusty: #a56b73;
  --nude: #ead9ce;
  --cream: #f7f1ea;
  --ivory: #fbf8f4;
  --burgundy: #6b2d3c;
  --burgundy-deep: #4e1f2b;
  --plum: #5c3a48;
  --charcoal: #2b2426;
  --gold: #b89a6a;
  --ink: #2b2426;
  --ink-soft: #4a4042;
  --paper: #f7f1ea;
  --white: #fdfbf9;
  --muted: #7a6e6f;
  --line: rgba(107, 45, 60, 0.14);
  --danger: #8d2d2d;
  --ok: #2f5d45;
  --radius: 10px;
  --space: 1rem;
  --shadow: 0 16px 36px rgba(43, 36, 38, 0.08);
  --header: 72px;
  --max: 1180px;
  --ease: 280ms ease;
  --font: "Cairo", "Segoe UI", Tahoma, sans-serif;
  --display: "Amiri", "Times New Roman", serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  background: var(--ivory);
  color: var(--charcoal);
  line-height: 1.75;
  min-height: 100dvh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
:focus-visible {
  outline: 2px solid var(--burgundy);
  outline-offset: 3px;
}
.skip-link {
  position: absolute; inset-inline-start: 1rem; top: -4rem;
  background: var(--burgundy); color: #fff; padding: .5rem 1rem; z-index: 80;
}
.skip-link:focus { top: 1rem; }
.container { width: min(var(--max), calc(100% - 2rem)); margin-inline: auto; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0);
}

.announce {
  background: var(--ok);
  color: #f8eee8;
  text-align: center;
  font-size: .82rem;
  letter-spacing: .08em;
  padding: .55rem 1rem;
}
.announce span { color: var(--gold); padding-inline: .35rem; }

.site-header {
  position: sticky; top: 0; z-index: 40;
  height: var(--header);
  background: rgba(253, 251, 249, .94);
  color: var(--charcoal);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.header-inner, .nav-list, .header-actions {
  display: flex; align-items: center; gap: 1rem;
}
.header-inner { height: var(--header); justify-content: space-between; }
.brand { display: flex; align-items: center; }
.brand img { height: 40px; width: auto; }
.nav-list { list-style: none; margin: 0; padding: 0; gap: 1.15rem; }
.nav-list a {
  color: var(--ink-soft);
  font-size: .92rem;
  padding: .3rem 0;
  position: relative;
}
.nav-list a:hover, .nav-list a[aria-current="page"] { color: var(--burgundy); }
.header-actions { gap: .35rem; }
.icon-btn, .menu-toggle {
  background: transparent; border: 1px solid var(--line); color: var(--charcoal);
  width: 42px; height: 42px; border-radius: 999px; cursor: pointer;
  display: inline-grid; place-items: center;
}
.icon-btn svg, .menu-toggle svg { width: 18px; height: 18px; }
.search-panel {
  display: none; position: absolute; inset-inline: 0; top: var(--header);
  background: var(--white); padding: 1rem; border-bottom: 1px solid var(--line);
}
.search-panel.is-open { display: block; }
.search-panel form { width: min(720px, 100%); margin-inline: auto; display: flex; gap: .5rem; }
.search-panel input {
  flex: 1; background: var(--ivory); border: 1px solid var(--line); color: var(--charcoal);
  padding: .7rem 1rem; border-radius: var(--radius);
}
.nav-mobile {
  display: none; background: var(--white); padding: .4rem 0 1.2rem;
  border-bottom: 1px solid var(--line);
}
.nav-mobile.is-open { display: block; }
.nav-mobile a {
  display: block; color: var(--charcoal); padding: .75rem 1.2rem;
  border-bottom: 1px solid var(--line);
}
.menu-toggle { display: none; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  min-height: 44px; padding: .7rem 1.35rem; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer; transition: transform var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
  white-space: nowrap; letter-spacing: .04em; font-size: .9rem;
}
.btn:active { transform: scale(.98); }
.btn-primary, .btn-gold { background: var(--burgundy); color: #f8eee8; }
.btn-primary:hover, .btn-gold:hover { background: var(--burgundy-deep); }
.btn-ghost {
  background: transparent; border-color: var(--rose); color: var(--burgundy);
}
.btn-ghost:hover { background: var(--blush); }
.btn-dark { background: var(--charcoal); color: var(--ivory); }

.hero {
  position: relative;
  min-height: min(calc(100dvh - var(--header) - 42px), 720px);
  display: grid;
  overflow: hidden;
  background: var(--nude);
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% center;
}
.hero-panel {
  position: absolute;
  inset-inline-start: max(1rem, calc((100% - var(--max)) / 2));
  top: 1.4rem;
  transform: none;
  width: min(28rem, calc(100% - 2rem));
  background: rgba(253, 251, 249, .92);
  padding: 1.5rem 1.5rem 1.35rem;
  border: 1px solid rgba(184, 154, 106, .28);
  backdrop-filter: blur(8px);
  z-index: 1;
}
.eyebrow {
  margin: 0 0 .7rem;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--dusty);
}
.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.1rem, 4.8vw, 3.5rem);
  line-height: 1.25;
  font-weight: 700;
  color: var(--charcoal);
}
.hero p {
  margin: .85rem 0 1.3rem;
  max-width: 28ch;
  color: var(--muted);
}
.hero .btn-primary {
  background: var(--ok);
}
.hero .btn-primary:hover {
  background: #245038;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .6rem; }

.section { padding: 4.2rem 0; }
.section-head { margin-bottom: 1.8rem; max-width: 36rem; }
.section-head h2, .scent h2, .promo-copy h2, .home-arrivals h2, .home-offers h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.3;
  font-weight: 700;
}
.section-head p { margin: .45rem 0 0; color: var(--muted); }

.cat-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  grid-template-rows: 210px 210px;
  gap: .85rem;
}
.cat-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  color: #fff;
  min-height: 210px;
}
.cat-tile:first-child { grid-row: 1 / span 2; min-height: 440px; }
.cat-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 400ms ease;
}
.cat-tile:hover img { transform: scale(1.05); }
.cat-tile span, .cat-tile strong {
  position: absolute; inset-inline-start: 1.1rem; bottom: 1.1rem;
  z-index: 1;
}
.cat-tile strong { font-family: var(--display); font-size: 1.45rem; display: block; bottom: 2.15rem; }
.cat-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(43, 36, 38, .55) 100%);
}

.product-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem;
}
.product-card { display: flex; flex-direction: column; gap: .65rem; }
.product-card .thumb {
  aspect-ratio: 4/5; background: var(--blush); overflow: hidden; position: relative;
  border-radius: var(--radius);
}
.product-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 400ms ease;
}
.product-card:hover img { transform: scale(1.04); }
.product-card:hover .thumb { box-shadow: var(--shadow); }
.product-card h3 { margin: 0; font-size: 1.02rem; font-weight: 600; }
.product-card .btn { align-self: flex-start; min-height: 40px; padding: .45rem 1rem; }
.meta { color: var(--muted); font-size: .84rem; }
.price { font-weight: 700; color: var(--burgundy); }
.price s { color: var(--muted); font-weight: 400; margin-inline-start: .4rem; }
.badge {
  position: absolute; top: .7rem; inset-inline-start: .7rem;
  background: var(--ivory); color: var(--burgundy); font-size: .72rem;
  letter-spacing: .08em; padding: .22rem .55rem; border-radius: 999px;
}
.badge-sale { background: var(--burgundy); color: #f8eee8; }

.home-arrivals { background: var(--cream); }
.offer-rail .product-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 26%);
  overflow-x: auto;
  padding-bottom: .4rem;
}
.chip-row { display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: 1.4rem; }
.chip {
  border: 1px solid var(--line); background: transparent; color: var(--ink-soft);
  border-radius: 999px; padding: .35rem .9rem; cursor: pointer; font-size: .88rem;
}
.chip.is-on, .chip:hover { background: var(--burgundy); color: #f8eee8; border-color: var(--burgundy); }

.scent {
  background: #24181c;
  color: #f6ece6;
  padding: 4.5rem 0;
}
.scent-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 2.4rem;
  align-items: center;
}
.scent img { width: 100%; border-radius: var(--radius); min-height: 280px; object-fit: cover; }
.scent p { color: rgba(246, 236, 230, .78); max-width: 36ch; }
.scent .btn-primary { background: var(--gold); color: #24181c; }
.scent .btn-primary:hover { background: #d0b27d; }

.promo {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  color: #fff;
}
.promo img { width: 100%; height: 420px; object-fit: cover; }
.promo-copy {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center;
  padding-inline: max(1rem, calc((100% - var(--max)) / 2));
  background: linear-gradient(90deg, rgba(43,36,38,.55), rgba(43,36,38,.12) 70%);
  max-width: none;
}
.promo-copy p { max-width: 32ch; color: rgba(255,255,255,.86); }

.split-about, .home-note { display: none; }

.site-footer {
  background: #2b2426; color: #f6ece6; padding: 3.2rem 0 1.3rem; margin-top: 0;
}
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr 1.1fr; gap: 2rem; }
.site-footer a:hover { color: var(--gold); }
.site-footer strong { display: block; margin-bottom: .6rem; font-size: .92rem; letter-spacing: .06em; }
.site-footer p { margin: .35rem 0; color: rgba(246,236,230,.78); }
.footer-bottom {
  margin-top: 2rem; border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1rem; color: rgba(255,255,255,.5); font-size: .88rem;
}
.newsletter input {
  width: 100%; background: transparent; border: 1px solid rgba(255,255,255,.18);
  color: #f6ece6; padding: .7rem .9rem; border-radius: var(--radius); margin: .6rem 0;
}
.newsletter .ok { color: var(--gold); font-size: .88rem; }

.wa-float {
  position: fixed; inset-inline-start: 1rem; bottom: 1rem; z-index: 30;
  width: 56px; height: 56px; border-radius: 50%;
  background: #1f6b4a; color: white; display: grid; place-items: center;
  box-shadow: var(--shadow);
}
.wa-float svg { width: 28px; height: 28px; }

.filters { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1.5rem; }
.filters input, .filters select {
  background: var(--white); border: 1px solid var(--line);
  padding: .6rem .8rem; border-radius: var(--radius); min-height: 44px;
}
.crumbs { font-size: .9rem; color: var(--muted); margin-bottom: 1.2rem; }
.crumbs a:hover { color: var(--burgundy); }

.product-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 2.5rem;
}
.product-layout h1, .order-box h2 { font-family: var(--display); font-weight: 700; }
.gallery-main { background: var(--blush); aspect-ratio: 4/5; overflow: hidden; border-radius: var(--radius); }
.gallery-main img, .thumbs img { width: 100%; height: 100%; object-fit: cover; }
.thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: .5rem; margin-top: .6rem; }
.thumbs button { border: 1px solid transparent; padding: 0; cursor: pointer; aspect-ratio: 1; overflow: hidden; background: var(--blush); border-radius: 8px; }
.thumbs button.is-active { border-color: var(--burgundy); }
.option-row { display: flex; flex-wrap: wrap; gap: .4rem; margin: .4rem 0 1rem; }
.option-row label {
  border: 1px solid var(--line); padding: .4rem .7rem; cursor: pointer; border-radius: var(--radius);
}
.option-row input { position: absolute; opacity: 0; }
.option-row input:checked + span, .option-row label:has(input:checked) { border-color: var(--burgundy); background: var(--blush); }
.order-box {
  margin-top: 1.5rem; padding: 1.3rem; border: 1px solid var(--line); background: var(--white); border-radius: var(--radius);
}
.field { display: flex; flex-direction: column; gap: .35rem; margin-bottom: .9rem; }
.field input, .field textarea, .field select {
  border: 1px solid var(--line); padding: .7rem .8rem; border-radius: var(--radius); min-height: 44px; background: var(--ivory);
}
.field .error { color: var(--danger); font-size: .85rem; }
.alert { padding: .8rem 1rem; border-radius: var(--radius); margin-bottom: 1rem; }
.alert-ok { background: #e8f3ec; color: var(--ok); }
.alert-err { background: #f8eaea; color: var(--danger); }
.empty { padding: 3rem 1rem; text-align: start; color: var(--muted); }

.page-hero { background: var(--blush); color: var(--charcoal); padding: 2.6rem 0 2rem; }
.page-hero h1 { margin: .3rem 0 0; font-family: var(--display); font-size: clamp(2rem, 4vw, 3rem); }
.prose { max-width: 68ch; }
.prose p { margin: 0 0 1rem; }

.pagination { display: flex; gap: .4rem; flex-wrap: wrap; margin-top: 2rem; }
.pagination a, .pagination span {
  min-width: 42px; min-height: 42px; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: var(--radius);
}
.pagination .active span { background: var(--burgundy); color: #f8eee8; }

.gold-line { width: 42px; height: 2px; background: var(--gold); }
.benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.benefit { padding: 1rem 0; border-top: 1px solid var(--line); }

@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-grid, .product-layout, .footer-grid, .scent-grid { grid-template-columns: 1fr 1fr; }
  .cat-tile:first-child { grid-row: auto; min-height: 260px; }
  .hero-panel { width: min(24rem, calc(100% - 2rem)); }
}
@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .menu-toggle { display: inline-grid; }
  .product-grid, .cat-grid, .scent-grid, .footer-grid, .benefits { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .wa-float { inset-inline-start: auto; inset-inline-end: 1rem; }
  .hero { min-height: 0; }
  .hero-photo { position: relative; min-height: 42vh; }
  .hero-panel {
    position: relative; inset: auto; top: auto;
    width: auto; margin: -2.2rem 1rem 1.2rem; z-index: 1;
  }
  .promo img { height: 360px; }
}
@media (max-width: 520px) {
  .product-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
}
@media (max-height: 560px) {
  .hero p { display: none; }
  .hero h1 { font-size: 1.65rem; }
  .hero-panel { padding: 1rem 1.1rem; top: .7rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .product-card:hover img, .cat-tile:hover img { transform: none; }
}
