/* =========================================================
   AL QURAISHI — reference-inspired storefront refinement
   Built locally from the supplied brand assets and layout ideas.
   ========================================================= */
:root {
  --bg: #faf8f4;
  --bg-soft: #f5f0e8;
  --surface: #ffffff;
  --surface-2: #f8f4ed;
  --surface-3: #eee4d6;
  --ink: #1d1915;
  --muted: #6f665d;
  --muted-2: #948a80;
  --gold: #b48643;
  --gold-light: #d7ac67;
  --gold-deep: #7b5424;
  --cream: #f3eadc;
  --line: rgba(66, 49, 31, .12);
  --line-strong: rgba(180, 134, 67, .34);
  --shadow-sm: 0 12px 36px rgba(69, 49, 26, .08);
  --shadow-md: 0 24px 64px rgba(69, 49, 26, .12);
  --shadow-lg: 0 38px 100px rgba(55, 38, 19, .17);
  --radius-xs: 10px;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --header-h: 78px;
  --container: 1240px;
}

html { scroll-padding-top: 110px; }
body {
  background:
    radial-gradient(circle at 8% 0%, rgba(215, 172, 103, .13), transparent 27rem),
    radial-gradient(circle at 95% 12%, rgba(255, 255, 255, .96), transparent 33rem),
    var(--bg);
  color: var(--ink);
}
body::before { opacity: .025; }
.container { width: min(var(--container), calc(100% - 44px)); }
.section { padding: clamp(72px, 8vw, 108px) 0; }
.section--tight { padding: clamp(42px, 5vw, 68px) 0; }
.section--soft {
  position: relative;
  background:
    radial-gradient(circle at 86% 10%, rgba(215, 172, 103, .12), transparent 25rem),
    linear-gradient(145deg, #f8f4ed, #f1e9dd);
  overflow: hidden;
}
.section--soft::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .04;
  background-image: url("noise.svg");
}
.section--soft > * { position: relative; }

.eyebrow {
  color: var(--gold-deep);
  font-size: .74rem;
  letter-spacing: .06em;
}
.eyebrow::before { width: 26px; }
.section-title {
  align-items: end;
  gap: 32px;
  margin-bottom: 34px;
}
.section-title h2 {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: clamp(1.9rem, 3.6vw, 3.35rem);
  line-height: 1.35;
}
.section-title p { max-width: 700px; margin: 10px 0 0; color: var(--muted); line-height: 1.9; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-deep);
  font-weight: 800;
  white-space: nowrap;
}
.text-link svg { width: 18px; height: 18px; transition: transform .2s ease; }
.text-link:hover svg { transform: translateX(-4px); }

/* Announcement */
.announcement {
  color: #eee4d6;
  background: #241d17;
  border: 0;
}
.announcement__inner { min-height: 39px; }
.announcement__items { gap: 24px; }
.announcement__item { color: #d8ccbd; font-size: .76rem; }
.announcement__item svg { color: #d7ac67; }
.announcement__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff5e6;
  font-size: .8rem;
}
.announcement__phone svg { width: 17px; height: 17px; color: #66c88f; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--ink);
  background: rgba(255, 255, 255, .88);
  border-bottom: 1px solid rgba(67, 49, 30, .08);
  backdrop-filter: blur(22px) saturate(145%);
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, .97);
  border-color: var(--line);
  box-shadow: 0 14px 38px rgba(51, 37, 23, .09);
}
.navbar { min-height: var(--header-h); gap: 18px; }
.brand { gap: 10px; }
.brand__mark {
  width: 48px;
  height: 48px;
  padding: 2px;
  border-radius: 13px;
  background: #090807;
  box-shadow: 0 10px 26px rgba(34, 25, 16, .14);
}
.brand__name strong { color: #211a14; font-size: .94rem; }
.brand__name small { color: var(--gold-deep); font-size: .55rem; }
.nav-links { gap: 1px; }
.nav-link {
  color: #4e453d;
  padding: 11px 12px;
  font-size: .86rem;
  cursor: pointer;
}
.nav-link:hover,
.nav-link.is-active,
.nav-dropdown.is-active > summary { color: var(--gold-deep); background: #fbf5eb; }
.nav-link::after { background: var(--gold); bottom: 4px; }
.nav-dropdown { position: relative; }
.nav-dropdown > summary { list-style: none; display: flex; align-items: center; gap: 5px; }
.nav-dropdown > summary::-webkit-details-marker { display: none; }
.nav-dropdown__chevron { font-size: .85rem; transition: transform .2s ease; }
.nav-dropdown[open] .nav-dropdown__chevron { transform: rotate(180deg); }
.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 16px);
  inset-inline-start: 50%;
  width: min(720px, 90vw);
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 30px 90px rgba(47, 32, 17, .18);
  transform: translateX(50%);
  animation: dropdownIn .2s ease;
}
@keyframes dropdownIn { from { opacity: 0; transform: translateX(50%) translateY(-8px); } to { opacity: 1; transform: translateX(50%) translateY(0); } }
.nav-dropdown__featured {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 245px;
  padding: 22px;
  border-radius: 17px;
  color: #fff8ec;
  background:
    linear-gradient(180deg, rgba(12, 10, 8, .12), rgba(12, 10, 8, .92)),
    url("images/campaign-social.webp") center/cover;
}
.nav-dropdown__eyebrow { color: #dfbd79; font-size: .72rem; }
.nav-dropdown__featured strong { margin: 8px 0 16px; font-size: 1.1rem; line-height: 1.65; }
.nav-dropdown__featured .btn { align-self: flex-start; }
.nav-dropdown__links { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.nav-dropdown__links a {
  display: grid;
  gap: 2px;
  padding: 13px 14px;
  border: 1px solid transparent;
  border-radius: 13px;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.nav-dropdown__links a:hover { transform: translateY(-2px); border-color: var(--line); background: #fbf7f0; }
.nav-dropdown__links span { color: var(--ink); font-weight: 800; font-size: .84rem; }
.nav-dropdown__links small { color: var(--muted); font-size: .68rem; }
.header-search {
  width: 168px;
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #faf8f4;
}
.header-search svg { width: 17px; height: 17px; color: var(--gold-deep); flex: 0 0 auto; }
.header-search input { width: 100%; min-width: 0; padding: 0; border: 0; outline: 0; background: transparent; color: var(--ink); font-size: .73rem; }
.header-search input::placeholder { color: #9a9086; }
.icon-link,
.menu-toggle {
  color: #3f372f;
  background: #fff;
  border-color: var(--line);
  box-shadow: 0 6px 18px rgba(52, 38, 24, .04);
}
.icon-link:hover,
.menu-toggle:hover { color: var(--gold-deep); background: #fff8ec; border-color: var(--line-strong); }
.cart-count { border-color: #fff; background: var(--gold); color: #fff; }
.mobile-menu {
  background: rgba(255, 255, 255, .99);
  border-top-color: var(--line);
  box-shadow: 0 24px 44px rgba(40, 29, 18, .12);
  padding: 0;
}
.mobile-menu__inner { display: grid; gap: 3px; padding-block: 14px 22px; }
.mobile-search {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  margin-bottom: 8px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #faf8f4;
}
.mobile-search svg { width: 19px; height: 19px; color: var(--gold-deep); }
.mobile-search input { width: 100%; border: 0; outline: 0; background: transparent; }
.mobile-shop-menu summary { list-style: none; }
.mobile-shop-menu summary::-webkit-details-marker { display: none; }
.mobile-shop-menu__links { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; padding: 8px 10px 13px; }
.mobile-shop-menu__links a { padding: 10px 12px; border: 1px solid var(--line); border-radius: 11px; background: #fbf8f3; color: #5d5146; font-size: .78rem; }

/* Buttons */
.btn { border-radius: 13px; }
.btn--gold { background: linear-gradient(135deg, #d5aa65, #aa7a38); color: #20160b; }
.btn--outline { color: #3f372f; background: #fff; border-color: rgba(126, 90, 44, .27); }
.btn--outline:hover { background: #fff8ed; }
.btn--light { color: #20170f; background: #fff; border-color: rgba(255,255,255,.45); }
.btn--whatsapp-outline { color: #246c49; border-color: rgba(35, 139, 87, .24); }
.btn--whatsapp-outline svg { color: #238b57; }

/* Hero */
.showcase-hero {
  position: relative;
  padding: clamp(56px, 7vw, 90px) 0 0;
  overflow: hidden;
}
.showcase-hero::before {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  inset-inline-start: -260px;
  top: -310px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 172, 103, .24), transparent 68%);
  pointer-events: none;
}
.showcase-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: clamp(42px, 7vw, 92px);
}
.showcase-hero__copy { padding-block: 18px 34px; }
.showcase-hero__copy h1 {
  margin: 16px 0 18px;
  font-family: "Noto Kufi Arabic", "Noto Sans Arabic", sans-serif;
  font-size: clamp(2.65rem, 5.5vw, 5.4rem);
  line-height: 1.17;
  letter-spacing: -.05em;
}
.showcase-hero__copy h1 span { display: block; color: var(--gold-deep); }
.showcase-hero__copy > p { max-width: 670px; margin: 0; color: var(--muted); font-size: clamp(.98rem, 1.25vw, 1.12rem); line-height: 2; }
.showcase-hero__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.showcase-hero__proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 30px; }
.showcase-hero__proof > span {
  min-height: 92px;
  display: grid;
  grid-template-columns: 24px 1fr;
  align-content: center;
  column-gap: 8px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.72);
}
.showcase-hero__proof svg { grid-row: 1 / span 2; width: 22px; height: 22px; color: var(--gold-deep); margin-top: 2px; }
.showcase-hero__proof b { font-size: .76rem; }
.showcase-hero__proof small { color: var(--muted); font-size: .62rem; line-height: 1.6; }
.showcase-hero__visual { position: relative; }
.showcase-slider { border-radius: 32px; box-shadow: var(--shadow-lg); }
.showcase-slider__viewport { aspect-ratio: 1.18 / 1; }
.showcase-slider .campaign-slide img { object-position: 55% center; }
.showcase-slider .campaign-slider__button { width: 43px; height: 43px; }
.showcase-slider .campaign-slider__button--prev { inset-inline-start: 14px; }
.showcase-slider .campaign-slider__button--next { inset-inline-end: 14px; }
.showcase-slider .campaign-slider__button--prev svg { transform: rotate(180deg); }
.hero-floating-card {
  position: absolute;
  z-index: 8;
  inset-inline-start: -32px;
  bottom: 34px;
  width: 218px;
  display: grid;
  gap: 3px;
  padding: 17px 18px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 16px;
  background: rgba(255, 255, 255, .93);
  box-shadow: 0 22px 60px rgba(33, 24, 15, .19);
  backdrop-filter: blur(14px);
}
.hero-floating-card span { color: var(--gold-deep); font-size: .67rem; font-weight: 800; }
.hero-floating-card strong { font-size: .88rem; }
.hero-floating-card small { color: var(--muted); font-size: .64rem; }
.store-stats {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 52px;
  border: 1px solid var(--line);
  border-radius: 20px 20px 0 0;
  background: rgba(255,255,255,.94);
  box-shadow: 0 -5px 30px rgba(61, 44, 26, .05);
}
.store-stat { position: relative; display: grid; gap: 2px; padding: 24px 28px; }
.store-stat:not(:last-child)::after { content: ""; position: absolute; inset-inline-end: 0; top: 24%; bottom: 24%; width: 1px; background: var(--line); }
.store-stat strong { color: var(--gold-deep); font-size: 1.48rem; direction: ltr; justify-self: start; }
.store-stat span { color: var(--muted); font-size: .72rem; }

/* Category showcase */
.category-showcase { background: #fff; }
.category-showcase__grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(2, 1fr);
  grid-auto-rows: 260px;
  gap: 14px;
}
.category-tile {
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 21px;
  background:
    radial-gradient(circle at 50% 35%, rgba(214, 173, 103, .24), transparent 38%),
    linear-gradient(145deg, #1c1814, #070706);
  box-shadow: var(--shadow-sm);
  isolation: isolate;
}
.category-tile--wide { grid-row: span 2; }
.category-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent 35%, rgba(5, 5, 4, .9));
}
.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(.93);
  transition: transform .45s ease;
}
.category-tile--wide img { transform: scale(1.03); }
.category-tile:hover img { transform: scale(1.02); }
.category-tile--wide:hover img { transform: scale(1.1); }
.category-tile > span { position: relative; z-index: 3; display: grid; gap: 2px; padding: 22px; color: #fff; }
.category-tile small { color: #d6bd8b; font-size: .69rem; }
.category-tile strong { font-size: 1.15rem; }
.category-tile em { display: inline-flex; align-items: center; gap: 7px; margin-top: 8px; color: #f2d99e; font-size: .72rem; font-style: normal; font-weight: 800; }
.category-tile em svg { width: 16px; height: 16px; }

/* Featured tabs */
.featured-section { background: linear-gradient(180deg, #faf8f4, #fff); }
.home-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin: -8px 0 26px; }
.home-tab {
  min-height: 41px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #6b6055;
  font-weight: 750;
  cursor: pointer;
  transition: .2s ease;
}
.home-tab:hover,
.home-tab.is-active { color: #23180c; border-color: var(--gold-light); background: #e6c27f; }

/* Product cards */
.product-grid { gap: 18px; }
.product-card {
  overflow: hidden;
  border: 1px solid rgba(69, 51, 32, .1);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(57, 40, 22, .075);
}
.product-card:hover { transform: translateY(-6px); border-color: rgba(180, 134, 67, .3); box-shadow: 0 26px 65px rgba(57, 40, 22, .14); }
.product-media {
  height: 330px;
  padding: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 36%, color-mix(in srgb, var(--accent) 42%, transparent), transparent 44%),
    linear-gradient(155deg, color-mix(in srgb, var(--accent-2) 76%, #050504), #050504 76%);
}
.product-media::before { opacity: .13; }
.product-media::after { display: none; }
.product-media-link { position: absolute; inset: 0; display: grid; place-items: center; }
.product-photo {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  transform: scale(1.005);
  filter: drop-shadow(0 25px 26px rgba(0,0,0,.25));
}
.product-card:hover .product-photo { transform: scale(1.04); }
.product-badges { top: 13px; inset-inline-start: 13px; gap: 6px; }
.badge { border-color: rgba(255,255,255,.18); background: rgba(10, 9, 8, .76); backdrop-filter: blur(8px); }
.badge--sale { color: #231609; background: #e6c27f; }
.quick-view {
  top: auto;
  bottom: 13px;
  inset-inline-end: 13px;
  opacity: 1;
  transform: none;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.9);
  color: #292019;
  border-color: rgba(255,255,255,.32);
}
.quick-view:hover { background: #fff; }
.product-card__body { padding: 18px 18px 17px; }
.product-card__meta { margin-bottom: 7px; color: #8d8278; font-size: .68rem; }
.product-rating { display: inline-flex; align-items: center; gap: 4px; color: #9a6d2c; direction: ltr; }
.product-rating svg { width: 13px; height: 13px; }
.product-card h3 { margin: 0; font-size: 1.05rem; line-height: 1.55; }
.product-card h3 a { transition: color .2s ease; }
.product-card h3 a:hover { color: var(--gold-deep); }
.product-card__desc {
  min-height: 48px;
  display: -webkit-box;
  margin: 7px 0 9px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: var(--muted);
  font-size: .74rem;
  line-height: 1.75;
}
.note-list { min-height: 26px; margin: 0; }
.note-list li { padding: 4px 8px; background: #f4eee5; color: #675a4d; font-size: .61rem; }
.product-card__bottom { margin-top: 14px; padding-top: 13px; border-top: 1px solid var(--line); }
.price { color: var(--gold-deep); font-size: 1rem; }
.old-price { color: #a79d94; font-size: .67rem; }
.product-card__actions { display: flex; align-items: center; gap: 8px; }
.add-button {
  width: auto;
  min-width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 11px;
  border-radius: 11px;
  background: linear-gradient(135deg, #d8ae68, #b17e39);
  color: #25180b;
  font-size: .7rem;
  font-weight: 850;
}
.add-button span { white-space: nowrap; }
.product-details-link {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  color: var(--gold-deep);
}
.product-details-link svg { width: 17px; height: 17px; }
.product-grid--compact .product-media { height: 285px; }

/* Brand story */
.brand-story-section { background: #fff; }
.brand-story { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(44px, 7vw, 94px); }
.brand-story__visual { position: relative; min-height: 600px; overflow: hidden; border-radius: 30px; box-shadow: var(--shadow-lg); }
.brand-story__visual img { width: 100%; height: 100%; min-height: 600px; object-fit: cover; }
.brand-story__visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(10, 8, 6, .55)); }
.brand-story__badge { position: absolute; z-index: 2; inset-inline-end: 22px; bottom: 22px; display: grid; gap: 2px; padding: 17px 19px; border: 1px solid rgba(255,255,255,.28); border-radius: 15px; background: rgba(12,10,8,.65); color: #fff; backdrop-filter: blur(10px); }
.brand-story__badge span { color: #d5c5b2; font-size: .7rem; }
.brand-story__copy h2 { margin: 12px 0 16px; font-family: "Noto Kufi Arabic", sans-serif; font-size: clamp(2rem, 3.7vw, 3.45rem); line-height: 1.42; }
.brand-story__copy > p { color: var(--muted); line-height: 2; }
.policy-list { display: grid; gap: 10px; margin: 24px 0; }
.policy-item { display: grid; grid-template-columns: 50px 1fr; gap: 12px; align-items: center; padding: 13px; border: 1px solid var(--line); border-radius: 14px; background: #fbf8f3; }
.policy-item > span { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 12px; background: #fff; color: var(--gold-deep); box-shadow: 0 7px 18px rgba(57,41,23,.07); }
.policy-item svg { width: 21px; height: 21px; }
.policy-item strong { font-size: .84rem; }
.policy-item p { margin: 2px 0 0; color: var(--muted); font-size: .7rem; }

/* Selection steps */
.selection-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.selection-step { position: relative; min-height: 265px; padding: 28px; overflow: hidden; border: 1px solid var(--line); border-radius: 21px; background: rgba(255,255,255,.82); box-shadow: var(--shadow-sm); }
.selection-step::after { content: ""; position: absolute; width: 150px; height: 150px; inset-inline-end: -60px; top: -65px; border: 1px solid rgba(180,134,67,.14); border-radius: 50%; box-shadow: 0 0 0 28px rgba(180,134,67,.025); }
.selection-step__number { color: #b9aa9a; font-size: .75rem; font-weight: 900; }
.selection-step__icon { width: 56px; height: 56px; display: grid; place-items: center; margin: 28px 0 15px; border-radius: 15px; background: #f3e8d7; color: var(--gold-deep); }
.selection-step__icon svg { width: 25px; height: 25px; }
.selection-step h3 { margin: 0 0 8px; font-size: 1.05rem; }
.selection-step p { margin: 0; color: var(--muted); font-size: .76rem; line-height: 1.85; }
.selection-steps--watch .selection-step { min-height: 230px; }

/* Watch highlight */
.watch-highlight-section { background: #fff; }
.watch-highlight {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  min-height: 520px;
  margin-bottom: 36px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 78% 33%, rgba(215,172,103,.24), transparent 25rem),
    linear-gradient(145deg, #f8f2e8, #fff);
  box-shadow: var(--shadow-md);
}
.watch-highlight__copy { padding: clamp(34px, 6vw, 72px); }
.watch-highlight__copy h2 { margin: 12px 0; font-family: "Noto Kufi Arabic", sans-serif; font-size: clamp(2.1rem, 4vw, 3.8rem); }
.watch-highlight__copy p { max-width: 590px; color: var(--muted); line-height: 2; }
.watch-highlight__features { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0; }
.watch-highlight__features span { display: inline-flex; align-items: center; gap: 7px; padding: 8px 11px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.75); color: #5d5146; font-size: .7rem; }
.watch-highlight__features svg { width: 16px; height: 16px; color: var(--gold-deep); }
.watch-highlight__visual { position: relative; min-height: 520px; display: grid; place-items: center; }
.watch-highlight__visual::before { content: ""; position: absolute; width: 390px; max-width: 80%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(215,172,103,.28), rgba(215,172,103,.04) 55%, transparent 70%); }
.watch-highlight__visual img { position: relative; z-index: 1; width: min(440px, 92%); max-height: 500px; object-fit: contain; filter: drop-shadow(0 34px 33px rgba(67,45,22,.24)); }

/* Guide cards */
.guide-preview-section { background: linear-gradient(180deg, #faf8f4, #fff); }
.guide-card-grid { display: grid; grid-template-columns: 1.4fr 1fr; grid-template-rows: repeat(2, 245px); gap: 15px; }
.guide-card { position: relative; overflow: hidden; border-radius: 22px; box-shadow: var(--shadow-sm); }
.guide-card--large { grid-row: span 2; }
.guide-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 25%, rgba(7,6,5,.88)); }
.guide-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.guide-card:hover img { transform: scale(1.045); }
.guide-card > span { position: absolute; z-index: 2; inset-inline: 22px; bottom: 20px; display: grid; gap: 5px; color: #fff; }
.guide-card small { color: #e2c98f; font-size: .67rem; }
.guide-card strong { max-width: 560px; font-size: clamp(1rem, 2vw, 1.5rem); line-height: 1.65; }
.guide-card em { color: #c9bbae; font-size: .65rem; font-style: normal; }

/* Testimonials */
.testimonials-section { background: #211a14; color: #fff; }
.testimonials-section .section-title h2 { color: #fffaf2; }
.testimonials-section .eyebrow { color: #dfbd79; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.testimonial-card { min-height: 285px; display: flex; flex-direction: column; justify-content: space-between; padding: 27px; border: 1px solid rgba(255,255,255,.1); border-radius: 20px; background: rgba(255,255,255,.055); }
.testimonial-stars { display: flex; gap: 3px; color: #dcb86c; }
.testimonial-stars svg { width: 16px; height: 16px; }
.testimonial-card > p { margin: 24px 0; color: #eee4d8; font-size: .95rem; line-height: 2; }
.testimonial-card > span { display: grid; gap: 2px; }
.testimonial-card small { color: #aa9c8d; font-size: .67rem; }

/* FAQ */
.faq-home-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(40px, 7vw, 90px); align-items: start; }
.faq-home-copy h2 { margin: 12px 0 13px; font-family: "Noto Kufi Arabic", sans-serif; font-size: clamp(2rem, 3.7vw, 3.35rem); line-height: 1.45; }
.faq-home-copy p { color: var(--muted); line-height: 2; }
.faq-home-copy .btn { margin-top: 16px; }
details.faq {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 7px 22px rgba(58,42,24,.04);
}
details.faq summary { position: relative; padding: 18px 52px 18px 18px; color: var(--ink); font-weight: 800; cursor: pointer; list-style: none; }
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::before { content: "+"; position: absolute; inset-inline-start: 18px; top: 50%; width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: #f0e4d3; color: var(--gold-deep); transform: translateY(-50%); }
details.faq[open] summary::before { content: "−"; }
details.faq p { margin: 0; padding: 0 18px 18px; color: var(--muted); font-size: .78rem; line-height: 1.9; }
.faq-list { gap: 9px; }
.faq-list--two { grid-template-columns: repeat(2, 1fr); }

/* Campaign mosaic */
.campaign-gallery-section { background: #fff; }
.campaign-mosaic { display: grid; grid-template-columns: 1.45fr 1fr 1fr; gap: 14px; }
.campaign-mosaic figure { position: relative; min-height: 360px; margin: 0; overflow: hidden; border-radius: 21px; box-shadow: var(--shadow-sm); }
.campaign-mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.campaign-mosaic figure:hover img { transform: scale(1.035); }
.campaign-mosaic figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(7,6,5,.82)); }
.campaign-mosaic figcaption { position: absolute; z-index: 2; inset-inline: 18px; bottom: 17px; display: grid; gap: 2px; color: #fff; }
.campaign-mosaic figcaption span { color: #d6c6b5; font-size: .68rem; }

/* CTA */
.cta-panel--reference { min-height: 220px; padding: clamp(30px, 5vw, 56px); border-radius: 27px; }
.cta-panel--reference h2 { margin: 9px 0; font-size: clamp(1.8rem, 3.2vw, 3rem); }
.cta-panel__actions { display: flex; flex-wrap: wrap; gap: 9px; }

/* Page hero */
.page-hero { padding: 46px 0 0; }
.page-hero__inner {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 6vw, 72px);
  border-radius: 27px;
  background:
    radial-gradient(circle at 85% 20%, rgba(215,172,103,.22), transparent 23rem),
    linear-gradient(145deg, #fff, #f4ede3);
  box-shadow: var(--shadow-sm);
}
.page-hero__content h1 { max-width: 900px; font-size: clamp(2.3rem, 5vw, 4.8rem); }
.page-hero__content p { max-width: 780px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 25px; color: #8d8176; font-size: .7rem; }
.breadcrumb a:hover { color: var(--gold-deep); }
.breadcrumb--standalone { margin: 34px 0 17px; }

/* Catalog */
.catalog-layout-v7 { display: grid; grid-template-columns: 286px minmax(0, 1fr); align-items: start; gap: 28px; }
.catalog-sidebar {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-sm);
}
.catalog-sidebar__head h2 { margin: 7px 0 5px; font-size: 1.35rem; }
.catalog-sidebar__head p { margin: 0; color: var(--muted); font-size: .7rem; }
.catalog-sidebar .search-box { min-height: 48px; }
.catalog-sidebar .search-box input { padding-inline-start: 40px; }
.catalog-field { display: grid; gap: 7px; }
.catalog-field label,
.catalog-chips-title { color: #5a5047; font-size: .72rem; font-weight: 800; }
.catalog-sidebar select { width: 100%; min-height: 47px; }
.catalog-sidebar .category-chips { gap: 6px; }
.catalog-sidebar .category-chip { padding: 7px 10px; font-size: .67rem; }
.catalog-help-card { display: grid; grid-template-columns: 42px 1fr; gap: 5px 10px; padding: 15px; border: 1px solid rgba(180,134,67,.17); border-radius: 15px; background: #f8efe1; }
.catalog-help-card > span { grid-row: 1 / span 3; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 11px; background: #fff; color: var(--gold-deep); }
.catalog-help-card svg { width: 19px; height: 19px; }
.catalog-help-card strong { font-size: .77rem; }
.catalog-help-card p { margin: 0; color: var(--muted); font-size: .65rem; }
.catalog-help-card em { display: inline-flex; align-items: center; gap: 5px; color: var(--gold-deep); font-size: .66rem; font-style: normal; font-weight: 800; }
.catalog-help-card em svg { width: 14px; height: 14px; }
.catalog-results .results-line { margin: 0 0 17px; padding: 0 2px; }
.catalog-results .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* Watch page */
.watch-page-hero { padding: 0 0 15px; }
.watch-showcase-hero { min-height: 560px; border-radius: 28px; }
.watch-showcase-hero__copy h1 { color: var(--ink); }
.watch-showcase-hero__features span { background: #fff; }

/* Offers */
.offer-reference-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 16px; }
.offer-reference-hero { position: relative; min-height: 500px; display: flex; align-items: end; overflow: hidden; border-radius: 27px; box-shadow: var(--shadow-lg); }
.offer-reference-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,5,4,.03), rgba(6,5,4,.92)); }
.offer-reference-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.offer-reference-hero__copy { position: relative; z-index: 2; max-width: 620px; padding: clamp(28px, 5vw, 52px); color: #fff; }
.offer-reference-hero__copy .eyebrow { color: #dfbd79; }
.offer-reference-hero__copy h2 { margin: 10px 0; font-family: "Noto Kufi Arabic", sans-serif; font-size: clamp(2rem, 3.5vw, 3.25rem); line-height: 1.5; }
.offer-reference-hero__copy p { color: #d2c5b6; line-height: 1.9; }
.offer-reference-side { display: grid; gap: 12px; }
.mini-policy { display: grid; grid-template-columns: 56px 1fr; align-items: center; gap: 14px; padding: 22px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow-sm); }
.mini-policy > span { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 15px; background: #f4e9d8; color: var(--gold-deep); }
.mini-policy svg { width: 24px; height: 24px; }
.mini-policy strong { font-size: .9rem; }
.mini-policy p { margin: 4px 0 0; color: var(--muted); font-size: .7rem; }
.bundle-grid--reference { gap: 15px; }
.bundle-card-reference { overflow: hidden; border: 1px solid var(--line); border-radius: 21px; background: #fff; box-shadow: var(--shadow-sm); }
.bundle-card-reference__media { height: 280px; display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; background: linear-gradient(145deg, #1b1713, #080706); }
.bundle-card-reference__media img { width: 100%; height: 100%; object-fit: contain; }
.bundle-card-reference > div:last-child { padding: 20px; }
.bundle-card-reference span { color: var(--gold-deep); font-size: .67rem; font-weight: 800; }
.bundle-card-reference h3 { margin: 5px 0; font-size: 1.08rem; }
.bundle-card-reference p { min-height: 45px; margin: 0 0 14px; color: var(--muted); font-size: .72rem; line-height: 1.75; }

/* About */
.about-reference-grid { display: grid; grid-template-columns: .86fr 1.14fr; align-items: center; gap: clamp(42px, 7vw, 90px); }
.about-reference-copy h2 { margin: 11px 0 14px; font-family: "Noto Kufi Arabic", sans-serif; font-size: clamp(2rem, 4vw, 3.65rem); line-height: 1.45; }
.about-reference-copy > p { color: var(--muted); line-height: 2; }
.about-reference-points { display: grid; gap: 10px; margin-top: 23px; }
.about-reference-points span { display: flex; align-items: center; gap: 10px; color: #594e44; font-size: .78rem; font-weight: 750; }
.about-reference-points svg { width: 20px; height: 20px; color: var(--gold-deep); }
.about-reference-visual { position: relative; min-height: 560px; overflow: hidden; border-radius: 28px; box-shadow: var(--shadow-lg); }
.about-reference-visual img { width: 100%; height: 100%; min-height: 560px; object-fit: cover; }
.about-reference-visual > div { position: absolute; inset-inline-start: 20px; bottom: 20px; display: grid; padding: 15px 18px; border-radius: 13px; background: rgba(255,255,255,.9); box-shadow: var(--shadow-sm); }
.about-reference-visual strong { color: var(--gold-deep); }
.about-reference-visual span { color: var(--muted); font-size: .66rem; }
.policy-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.policy-card { position: relative; min-height: 310px; display: flex; flex-direction: column; justify-content: space-between; padding: 26px; overflow: hidden; border: 1px solid var(--line); border-radius: 21px; background: rgba(255,255,255,.86); box-shadow: var(--shadow-sm); }
.policy-card > span { color: #b6aa9d; font-size: .72rem; font-weight: 900; }
.policy-card > div > svg { width: 34px; height: 34px; margin-bottom: 22px; color: var(--gold-deep); }
.policy-card h3 { margin: 0 0 8px; font-size: 1.1rem; }
.policy-card p { margin: 0; color: var(--muted); font-size: .76rem; line-height: 1.85; }
.process-reference { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; }
.process-reference article { min-height: 200px; display: flex; flex-direction: column; padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow-sm); }
.process-reference b { color: #b9ab9c; font-size: .7rem; }
.process-reference strong { margin-top: auto; font-size: 1rem; }
.process-reference p { margin: 6px 0 0; color: var(--muted); font-size: .72rem; }

/* Contact */
.contact-reference-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 22px; align-items: start; }
.contact-reference-form { padding: clamp(24px, 4vw, 40px); border-radius: 22px; box-shadow: var(--shadow-md); }
.form-card__heading h2 { margin: 8px 0; font-size: 1.7rem; }
.form-card__heading p { color: var(--muted); }
.contact-reference-side { display: grid; gap: 15px; }
.contact-direct-card { padding: clamp(24px, 4vw, 38px); border: 1px solid var(--line); border-radius: 22px; background: #211a14; color: #fff; box-shadow: var(--shadow-md); }
.contact-direct-card .eyebrow { color: #dfbd79; }
.contact-direct-card h2 { margin: 8px 0 20px; font-size: 1.55rem; }
.contact-direct-card > a,
.contact-direct-card > div { display: grid; grid-template-columns: 48px 1fr; align-items: center; gap: 12px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.09); }
.contact-direct-card > *:last-child { border-bottom: 0; }
.contact-direct-card i { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 13px; background: rgba(255,255,255,.08); color: #e3bd73; font-style: normal; }
.contact-direct-card i svg { width: 21px; height: 21px; }
.contact-direct-card span { display: grid; gap: 2px; }
.contact-direct-card small { color: #a99c8d; font-size: .65rem; }
.contact-direct-card strong { color: #fff; font-size: .82rem; }
.contact-whatsapp-panel { display: grid; grid-template-columns: 54px 1fr 22px; align-items: center; gap: 13px; padding: 20px; border-radius: 19px; background: #e8f5ed; color: #206c47; box-shadow: var(--shadow-sm); }
.contact-whatsapp-panel > span { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 15px; background: #238b57; color: #fff; }
.contact-whatsapp-panel > span svg { width: 25px; height: 25px; }
.contact-whatsapp-panel > div { display: grid; gap: 2px; }
.contact-whatsapp-panel small { color: #57806a; font-size: .64rem; }
.contact-whatsapp-panel strong { font-size: .87rem; }
.contact-whatsapp-panel em { font-size: .7rem; font-style: normal; direction: ltr; justify-self: end; }
.contact-whatsapp-panel > svg { width: 20px; height: 20px; }

/* Cart/account */
.checkout-progress { display: flex; align-items: center; justify-content: center; gap: 12px; }
.checkout-progress span { display: inline-flex; align-items: center; gap: 8px; color: #8a7f74; font-size: .72rem; font-weight: 750; }
.checkout-progress span b { width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: #fff; }
.checkout-progress span.is-active { color: var(--gold-deep); }
.checkout-progress span.is-active b { border-color: var(--gold-light); background: #e6c27f; color: #23170b; }
.checkout-progress i { width: 70px; height: 1px; background: var(--line); }
.cart-section-v7 { padding-top: 10px; }
.cart-list,
.checkout-card,
.profile-card,
.track-card,
.orders-card { border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow-sm); }
.cart-list { min-height: 300px; }
.checkout-card { padding: 25px; }
.checkout-card__head h2 { margin: 6px 0 18px; }
.profile-card,
.track-card,
.orders-card { padding: 24px; }

/* Guide */
.guide-index-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.guide-index-card { position: relative; min-height: 260px; display: flex; flex-direction: column; padding: 25px; overflow: hidden; border: 1px solid var(--line); border-radius: 21px; background: #fff; box-shadow: var(--shadow-sm); }
.guide-index-card b { color: #b7aa9c; font-size: .7rem; }
.guide-index-card > span { width: 58px; height: 58px; display: grid; place-items: center; margin: 28px 0 17px; border-radius: 16px; background: #f2e7d6; color: var(--gold-deep); }
.guide-index-card svg { width: 27px; height: 27px; }
.guide-index-card strong { font-size: 1rem; }
.guide-index-card p { margin: 8px 0 0; color: var(--muted); font-size: .73rem; line-height: 1.8; }
.guide-article { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(40px, 7vw, 90px); }
.guide-article--reverse .guide-article__visual { order: 2; }
.guide-article__visual { min-height: 520px; overflow: hidden; border-radius: 27px; box-shadow: var(--shadow-lg); }
.guide-article__visual img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; }
.guide-article__content h2 { margin: 11px 0; font-family: "Noto Kufi Arabic", sans-serif; font-size: clamp(2rem, 3.6vw, 3.3rem); line-height: 1.5; }
.guide-article__content > p { color: var(--muted); line-height: 2; }
.guide-number-list { display: grid; gap: 12px; margin: 22px 0; padding: 0; list-style: none; counter-reset: guide-step; }
.guide-number-list li { counter-increment: guide-step; display: grid; grid-template-columns: 38px 1fr; gap: 2px 11px; align-items: start; }
.guide-number-list li::before { content: counter(guide-step); grid-row: 1 / span 2; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 11px; background: #f1e5d3; color: var(--gold-deep); font-weight: 900; }
.guide-number-list strong { font-size: .8rem; }
.guide-number-list span { color: var(--muted); font-size: .7rem; line-height: 1.7; }
.guide-check-list { display: grid; gap: 10px; margin: 22px 0; padding: 0; list-style: none; }
.guide-check-list li { display: flex; align-items: center; gap: 9px; color: #594e44; font-size: .77rem; }
.guide-check-list svg { width: 18px; height: 18px; color: #3d8a61; }
.notes-dictionary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.note-definition { min-height: 215px; padding: 23px; border: 1px solid var(--line); border-radius: 19px; background: #fff; box-shadow: var(--shadow-sm); }
.note-definition > span { display: inline-flex; padding: 5px 9px; border-radius: 999px; background: #f1e5d3; color: var(--gold-deep); font-size: .65rem; font-weight: 850; }
.note-definition h3 { margin: 22px 0 8px; font-size: 1rem; }
.note-definition p { margin: 0; color: var(--muted); font-size: .73rem; line-height: 1.8; }

/* FAQ page */
.faq-page-layout { display: grid; grid-template-columns: 270px 1fr; gap: 34px; align-items: start; }
.faq-page-nav { position: sticky; top: 108px; display: grid; gap: 5px; padding: 22px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow-sm); }
.faq-page-nav h2 { margin: 7px 0 12px; font-size: 1.25rem; }
.faq-page-nav > a:not(.faq-contact-box) { padding: 10px 11px; border-radius: 10px; color: #685d53; font-size: .75rem; font-weight: 750; }
.faq-page-nav > a:not(.faq-contact-box):hover { color: var(--gold-deep); background: #faf3e8; }
.faq-contact-box { display: grid; grid-template-columns: 38px 1fr; align-items: center; gap: 9px; margin-top: 12px; padding: 13px; border-radius: 13px; background: #e8f5ed; color: #246c49; }
.faq-contact-box > svg { width: 38px; height: 38px; padding: 9px; border-radius: 10px; background: #238b57; color: #fff; }
.faq-contact-box span { display: grid; }
.faq-contact-box small { font-size: .59rem; }
.faq-contact-box strong { font-size: .72rem; }
.faq-page-content { display: grid; gap: 54px; }
.faq-group { scroll-margin-top: 115px; }
.faq-group__head { display: grid; grid-template-columns: 52px 1fr; gap: 13px; align-items: center; margin-bottom: 16px; }
.faq-group__head > span { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 14px; background: #f1e5d3; color: var(--gold-deep); font-weight: 900; }
.faq-group__head h2 { margin: 0; font-size: 1.3rem; }
.faq-group__head p { margin: 3px 0 0; color: var(--muted); font-size: .7rem; }
.faq-group .faq + .faq { margin-top: 8px; }

/* Product detail */
.product-detail-page { padding: 0 0 40px; }
.product-detail-skeleton { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.product-detail-skeleton .skeleton { min-height: 570px; }
.product-detail {
  display: grid;
  grid-template-columns: minmax(420px, .92fr) minmax(0, 1.08fr);
  gap: clamp(38px, 7vw, 90px);
  align-items: start;
}
.product-detail__visual {
  position: sticky;
  top: 115px;
  min-height: 630px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 29px;
  background:
    radial-gradient(circle at 50% 38%, color-mix(in srgb, var(--accent) 45%, transparent), transparent 44%),
    linear-gradient(155deg, color-mix(in srgb, var(--accent-2) 75%, #050504), #050504 76%);
  box-shadow: var(--shadow-lg);
}
.product-detail__visual::before { content: ""; position: absolute; inset: 24px; border: 1px solid rgba(255,255,255,.08); border-radius: 22px; }
.product-detail__visual img { position: relative; z-index: 1; width: 100%; height: 630px; object-fit: contain; filter: drop-shadow(0 35px 35px rgba(0,0,0,.32)); }
.product-detail__content { padding-top: 12px; }
.product-detail__topline { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 15px; }
.product-detail__category { display: inline-flex; padding: 6px 11px; border-radius: 999px; background: #f1e5d3; color: var(--gold-deep); font-size: .68rem; font-weight: 850; }
.product-detail__content h1 { margin: 0 0 12px; font-family: "Noto Kufi Arabic", sans-serif; font-size: clamp(2.2rem, 4.4vw, 4.25rem); line-height: 1.3; }
.product-detail__description { color: var(--muted); font-size: .94rem; line-height: 2; }
.product-detail__price { display: flex; align-items: baseline; gap: 10px; margin: 22px 0; }
.product-detail__price .price { font-size: 1.65rem; }
.product-detail__price .old-price { font-size: .82rem; }
.product-detail__specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin: 22px 0; }
.product-detail__spec { min-height: 90px; display: grid; align-content: center; gap: 3px; padding: 13px; border: 1px solid var(--line); border-radius: 13px; background: #fff; }
.product-detail__spec small { color: var(--muted-2); font-size: .62rem; }
.product-detail__spec strong { font-size: .78rem; }
.product-detail__notes { margin: 22px 0; }
.product-detail__notes h3 { margin: 0 0 10px; font-size: .92rem; }
.product-detail__notes-list { display: flex; flex-wrap: wrap; gap: 8px; }
.product-detail__notes-list span { padding: 7px 11px; border: 1px solid var(--line); border-radius: 999px; background: #f8f3eb; color: #5f544a; font-size: .68rem; }
.product-detail__order { display: grid; grid-template-columns: 125px 1fr; gap: 10px; margin: 25px 0 12px; }
.detail-quantity { display: grid; grid-template-columns: 38px 1fr 38px; align-items: center; border: 1px solid var(--line); border-radius: 13px; background: #fff; overflow: hidden; }
.detail-quantity button { height: 50px; border: 0; background: transparent; cursor: pointer; font-size: 1.15rem; }
.detail-quantity button:hover { background: #f8f1e7; }
.detail-quantity strong { text-align: center; }
.product-detail__secondary-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.product-detail__assurance { display: grid; gap: 8px; margin-top: 24px; padding: 17px; border: 1px solid var(--line); border-radius: 15px; background: #fbf8f3; }
.product-detail__assurance span { display: flex; align-items: center; gap: 9px; color: #61564c; font-size: .72rem; }
.product-detail__assurance svg { width: 18px; height: 18px; color: var(--gold-deep); }
.product-related-section { background: #fff; }

/* Dialog */
.quick-dialog { border-radius: 22px; overflow: hidden; }
.quick-dialog__visual { background: linear-gradient(155deg, color-mix(in srgb, var(--accent-2) 78%, #050504), #050504); }
.quick-dialog__body { background: #fff; }
.quick-dialog__visual .product-photo { width: 100%; height: 100%; max-height: none; }

/* Footer */
.site-footer { margin-top: 20px; background: #211a14; }
.footer-main { grid-template-columns: 1.25fr .7fr .7fr 1fr; gap: 42px; padding-block: 70px 52px; }
.footer-logo { width: 150px; border-radius: 16px; }
.footer-brand p { max-width: 410px; }
.footer-whatsapp { display: inline-flex; align-items: center; gap: 10px; margin-top: 18px; color: #f0dfc9; }
.footer-whatsapp > svg { width: 38px; height: 38px; padding: 9px; border-radius: 11px; background: #238b57; color: #fff; }
.footer-whatsapp span { display: grid; }
.footer-whatsapp small { color: #a99a8a; font-size: .62rem; }
.footer-whatsapp strong { font-size: .82rem; }
.footer-mini-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; color: #afa08f; font-size: .65rem; }
.footer-mini-links span { display: inline-flex; align-items: center; gap: 5px; }
.footer-mini-links svg { width: 14px; height: 14px; color: #dfbd79; }

/* Floating actions */
.back-to-top {
  position: fixed;
  z-index: 119;
  inset-inline-start: 20px;
  bottom: 20px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  color: var(--gold-deep);
  box-shadow: 0 16px 38px rgba(42,31,20,.14);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .2s ease;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.whatsapp-fab { bottom: 20px; }

/* Reveal */
.reveal-on-scroll { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal-on-scroll.is-visible { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 1180px) {
  .header-search { display: none; }
  .nav-link { padding-inline: 10px; }
  .showcase-hero__grid { grid-template-columns: .88fr 1.12fr; gap: 40px; }
  .catalog-results .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1020px) {
  .nav-links { display: none; }
  .menu-toggle { display: grid; }
  .showcase-hero__grid,
  .brand-story,
  .watch-highlight,
  .about-reference-grid,
  .contact-reference-grid,
  .guide-article,
  .product-detail { grid-template-columns: 1fr; }
  .showcase-hero__copy { max-width: 790px; text-align: center; margin-inline: auto; }
  .showcase-hero__copy > p { margin-inline: auto; }
  .showcase-hero__actions,
  .showcase-hero__proof { justify-content: center; }
  .showcase-hero__visual { max-width: 820px; margin-inline: auto; }
  .hero-floating-card { inset-inline-start: 18px; }
  .category-showcase__grid { grid-template-columns: 1.25fr 1fr; }
  .category-tile--wide { grid-row: span 2; }
  .brand-story__visual { min-height: 520px; }
  .brand-story__visual img { min-height: 520px; }
  .watch-highlight__copy { text-align: center; }
  .watch-highlight__features { justify-content: center; }
  .watch-highlight__visual { min-height: 410px; }
  .offer-reference-grid { grid-template-columns: 1fr; }
  .offer-reference-side { grid-template-columns: repeat(3, 1fr); }
  .catalog-layout-v7 { grid-template-columns: 1fr; }
  .catalog-sidebar { position: static; grid-template-columns: 1fr 1fr; align-items: end; }
  .catalog-sidebar__head,
  .catalog-help-card,
  .catalog-chips-title,
  .catalog-sidebar .category-chips { grid-column: 1 / -1; }
  .product-detail__visual { position: relative; top: auto; min-height: 560px; }
  .product-detail__visual img { height: 560px; }
  .guide-article--reverse .guide-article__visual { order: 0; }
  .faq-page-layout { grid-template-columns: 1fr; }
  .faq-page-nav { position: static; grid-template-columns: repeat(4, 1fr); align-items: center; }
  .faq-page-nav .eyebrow,
  .faq-page-nav h2,
  .faq-contact-box { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .container { width: min(100% - 30px, var(--container)); }
  .announcement__item--desktop { display: none; }
  .brand__name { display: grid; }
  .store-stats { grid-template-columns: repeat(2, 1fr); border-radius: 18px; }
  .store-stat:nth-child(2)::after { display: none; }
  .store-stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .category-showcase__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 245px; }
  .category-tile--wide { grid-column: 1 / -1; grid-row: auto; }
  .selection-steps,
  .testimonial-grid,
  .policy-card-grid,
  .process-reference,
  .guide-index-grid,
  .notes-dictionary { grid-template-columns: repeat(2, 1fr); }
  .guide-card-grid { grid-template-columns: 1fr; grid-template-rows: 350px 250px 250px; }
  .guide-card--large { grid-row: auto; }
  .faq-home-grid { grid-template-columns: 1fr; }
  .campaign-mosaic { grid-template-columns: 1fr 1fr; }
  .campaign-mosaic__wide { grid-column: 1 / -1; }
  .faq-list--two { grid-template-columns: 1fr; }
  .offer-reference-side { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .product-detail__specs { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 650px) {
  .container { width: min(100% - 24px, var(--container)); }
  .announcement__inner { justify-content: center; }
  .announcement__items { display: none; }
  .announcement__phone { min-height: 36px; }
  .brand__name { display: none; }
  .brand__mark { width: 44px; height: 44px; }
  .navbar { min-height: 68px; }
  .icon-link,
  .menu-toggle { width: 40px; height: 40px; }
  .showcase-hero { padding-top: 40px; }
  .showcase-hero__copy h1 { font-size: clamp(2.2rem, 12vw, 3.6rem); }
  .showcase-hero__actions .btn { width: 100%; }
  .showcase-hero__proof { grid-template-columns: 1fr; }
  .showcase-hero__proof > span { min-height: 76px; }
  .showcase-slider__viewport { aspect-ratio: 4 / 5; }
  .showcase-slider .campaign-slide img { object-position: 60% center; }
  .campaign-slider__button { display: none; }
  .hero-floating-card { inset-inline: 14px; bottom: 16px; width: auto; }
  .store-stats { margin-top: 28px; }
  .store-stat { padding: 18px; }
  .category-showcase__grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .category-tile--wide { grid-column: auto; }
  .section-title { align-items: start; flex-direction: column; }
  .section-title__action { width: 100%; }
  .section-title .btn { width: 100%; }
  .product-grid,
  .catalog-results .product-grid { grid-template-columns: 1fr; }
  .product-media { height: 360px; }
  .brand-story__visual,
  .brand-story__visual img { min-height: 430px; }
  .selection-steps,
  .testimonial-grid,
  .policy-card-grid,
  .process-reference,
  .guide-index-grid,
  .notes-dictionary { grid-template-columns: 1fr; }
  .watch-highlight { min-height: auto; }
  .watch-highlight__visual { min-height: 340px; }
  .watch-highlight__visual img { max-height: 360px; }
  .guide-card-grid { grid-template-rows: 310px 240px 240px; }
  .campaign-mosaic { grid-template-columns: 1fr; }
  .campaign-mosaic__wide { grid-column: auto; }
  .campaign-mosaic figure { min-height: 320px; }
  .cta-panel--reference { text-align: center; }
  .cta-panel__actions { width: 100%; }
  .cta-panel__actions .btn { width: 100%; }
  .page-hero { padding-top: 26px; }
  .page-hero__inner { min-height: 290px; padding: 28px 22px; }
  .catalog-sidebar { grid-template-columns: 1fr; }
  .catalog-sidebar__head,
  .catalog-help-card,
  .catalog-chips-title,
  .catalog-sidebar .category-chips { grid-column: auto; }
  .watch-showcase-hero { padding: 28px 20px; }
  .bundle-grid { grid-template-columns: 1fr; }
  .about-reference-visual,
  .about-reference-visual img { min-height: 420px; }
  .contact-reference-form { padding: 22px 18px; }
  .checkout-progress { gap: 5px; }
  .checkout-progress i { width: 18px; }
  .checkout-progress span { font-size: .6rem; }
  .checkout-progress span b { width: 24px; height: 24px; }
  .cart-layout,
  .account-grid { grid-template-columns: 1fr; }
  .guide-article__visual,
  .guide-article__visual img { min-height: 360px; }
  .faq-page-nav { grid-template-columns: 1fr 1fr; }
  .faq-page-nav .eyebrow,
  .faq-page-nav h2,
  .faq-contact-box { grid-column: 1 / -1; }
  .product-detail__visual { min-height: 430px; }
  .product-detail__visual img { height: 430px; }
  .product-detail__specs { grid-template-columns: 1fr; }
  .product-detail__order { grid-template-columns: 1fr; }
  .product-detail__secondary-actions { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 30px; }
  .whatsapp-fab { width: 52px; min-width: 52px; }
  .back-to-top { bottom: 82px; inset-inline-start: 16px; }
}

@media (max-width: 420px) {
  .nav-actions { gap: 5px; }
  .icon-link:first-child { display: none; }
  .mobile-shop-menu__links { grid-template-columns: 1fr; }
  .store-stat strong { font-size: 1.2rem; }
  .store-stat span { font-size: .64rem; }
  .product-media { height: 330px; }
  .product-card__actions { gap: 5px; }
  .add-button { flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll { opacity: 1; transform: none; }
}

/* Intentional empty-catalog presentation */
.empty-state--catalog {
  min-height: 290px;
  display: grid;
  place-items: center;
  align-content: center;
  border-style: dashed;
  background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(249,244,236,.86));
}
.empty-state--catalog svg { color: #a7793d; }
.empty-state--catalog h3 { color: #2d241d; font-size: 1.15rem; }
.empty-state--catalog p { max-width: 520px; color: #807367; line-height: 1.8; }
