/* ============================================================
   AHO FRAGRANCES — style.css
   ============================================================ */

:root {
  --bg: #0a0a0b;
  --bg2: #111113;
  --bg3: #161618;
  --border: rgba(255,255,255,0.08);
  --border2: rgba(200,168,97,0.25);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.60);
  --muted2: rgba(255,255,255,0.40);
  --gold: #c8a861;
  --gold-light: rgba(200,168,97,0.18);
  --gold-border: rgba(200,168,97,0.40);
  --shadow: 0 12px 40px rgba(0,0,0,0.45);
  --shadow-lg: 0 24px 70px rgba(0,0,0,0.55);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; transition: opacity 300ms ease; }
button, input, select, textarea { font: inherit; }

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

h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; line-height: 1.1; }
em { font-style: italic; color: var(--gold); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 200ms ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn:hover { transform: translateY(-1px); }
.btn--gold { background: linear-gradient(135deg, rgba(200,168,97,0.28), rgba(200,168,97,0.12)); border-color: var(--gold-border); color: #e8d5a3; }
.btn--gold:hover { background: linear-gradient(135deg, rgba(200,168,97,0.40), rgba(200,168,97,0.20)); box-shadow: 0 8px 28px rgba(200,168,97,0.20); }
.btn--ghost { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.12); }
.btn--ghost:hover { background: rgba(255,255,255,0.08); }
.btn--outline { border-color: var(--gold-border); color: var(--gold); background: transparent; padding: 10px 18px; font-size: 12px; }
.btn--cart { background: var(--gold-light); border-color: var(--gold-border); color: #e8d5a3; padding: 10px 18px; font-size: 12px; }
.btn--sm { padding: 9px 16px; font-size: 12px; }

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(10,10,11,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 300ms ease, box-shadow 300ms ease;
}
.nav--scrolled { background: rgba(7,7,7,0.97); box-shadow: 0 4px 30px rgba(0,0,0,0.40); }
.nav__inner { display: flex; align-items: center; gap: 20px; padding: 14px 0; }

.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; text-decoration: none; }
.brand__mark { width: 48px; height: 48px; border-radius: 12px; overflow: hidden; border: 1px solid var(--border2); background: rgba(255,255,255,0.04); padding: 6px; flex-shrink: 0; }
.brand__mark img { width: 100%; height: 100%; object-fit: contain; }
.brand__name { font-family: var(--font-serif); font-size: 17px; font-weight: 600; letter-spacing: 0.5px; color: var(--text); }
.brand__tag { font-size: 11px; color: var(--muted); margin-top: 2px; letter-spacing: 0.3px; }

/* ── SEARCH ── */
.search-wrap { position: relative; flex: 1; max-width: 360px; }
.nav__search-wrap { flex: 1; max-width: 360px; }
.nav__search {
  width: 100%; height: 42px; border-radius: 999px;
  border: 1px solid var(--border); background: rgba(255,255,255,0.04);
  color: var(--text); padding: 0 18px; font-size: 13px; outline: none;
  transition: border-color 200ms;
}
.nav__search::placeholder { color: var(--muted2); }
.nav__search:focus { border-color: var(--gold-border); }

/* Predictive dropdown */
.search-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0;
  background: #111113; border: 1px solid rgba(200,168,97,0.25);
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.55); z-index: 9999; display: none;
}
.search-dropdown.is-open { display: block; }
.search-dropdown__item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 150ms; gap: 12px;
}
.search-dropdown__item:last-child { border-bottom: none; }
.search-dropdown__item:hover { background: rgba(200,168,97,0.08); }
.search-dropdown__name { font-size: 13px; font-weight: 600; color: var(--text); }
.search-dropdown__inspo { font-size: 11px; color: var(--muted2); }
.search-dropdown__cat { font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); background: rgba(200,168,97,0.12); border: 1px solid rgba(200,168,97,0.25); padding: 3px 8px; border-radius: 999px; white-space: nowrap; flex-shrink: 0; }
.search-dropdown__empty { padding: 14px 16px; font-size: 13px; color: var(--muted); text-align: center; }
.search-highlight { color: var(--gold); font-weight: 700; }

.nav__menu { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__link { padding: 8px 12px; border-radius: var(--radius-sm); font-size: 13px; color: var(--muted); transition: color 180ms, background 180ms; }
.nav__link:hover, .nav__link.is-active { color: var(--text); background: rgba(255,255,255,0.05); }
.nav__toggle { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 42px; height: 42px; border-radius: var(--radius-sm); border: 1px solid var(--border); background: rgba(255,255,255,0.04); cursor: pointer; }
.nav__toggle span { display: block; width: 18px; height: 1.5px; background: var(--text); border-radius: 2px; transition: transform 250ms ease, opacity 200ms ease; }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── HERO ── */
.hero { padding: 80px 0 60px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 20% 40%, rgba(200,168,97,0.10) 0%, transparent 60%), radial-gradient(ellipse 60% 80% at 80% 20%, rgba(60,60,120,0.08) 0%, transparent 60%); pointer-events: none; }
.hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; }

.hero__eyebrow, .hero__title, .hero__lead, .hero__actions, .hero__badges {
  opacity: 0; transform: translateY(28px);
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero__eyebrow  { animation-delay: 0.10s; }
.hero__title    { animation-delay: 0.25s; }
.hero__lead     { animation-delay: 0.40s; }
.hero__actions  { animation-delay: 0.55s; }
.hero__badges   { animation-delay: 0.70s; }
.hero__visual   { opacity: 0; transform: translateX(32px); animation: fadeLeft 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards; }

@keyframes fadeUp  { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeLeft { to { opacity: 1; transform: translateX(0); } }

.hero__eyebrow { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.hero__title { font-family: var(--font-serif); font-size: clamp(52px, 6vw, 86px); font-weight: 300; line-height: 1.0; margin-bottom: 24px; letter-spacing: -0.5px; }
.hero__lead { font-size: 16px; color: var(--muted); line-height: 1.75; max-width: 52ch; margin-bottom: 32px; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero__badges { display: flex; gap: 10px; flex-wrap: wrap; }
.badge-pill { padding: 7px 14px; border-radius: 999px; border: 1px solid var(--border2); background: rgba(200,168,97,0.06); font-size: 12px; color: rgba(255,255,255,0.80); letter-spacing: 0.3px; }
.hero__visual { display: flex; justify-content: center; align-items: center; }
.hero__img { width: 100%; max-width: 520px; border-radius: var(--radius-lg); object-fit: cover; box-shadow: var(--shadow-lg); }

/* ── DELIVERY BANNER ── */
.delivery-banner { background: linear-gradient(135deg, rgba(200,168,97,0.14), rgba(200,168,97,0.06)); border-top: 1px solid var(--border2); border-bottom: 1px solid var(--border2); padding: 13px 0; text-align: center; font-size: 13px; color: rgba(255,255,255,0.82); letter-spacing: 0.3px; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.70s cubic-bezier(0.22, 1, 0.36, 1), transform 0.70s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ── SECTIONS ── */
.section { padding: 80px 0; }
.section--alt { background: var(--bg2); }
.section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 40px; flex-wrap: wrap; }
.section__eyebrow { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: block; }
.section__title { font-family: var(--font-serif); font-size: clamp(32px, 3.5vw, 48px); font-weight: 400; line-height: 1.1; }
.section__sub { color: var(--muted); font-size: 15px; max-width: 50ch; }

/* ── CATEGORY GRID ── */
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.category-card { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); background: var(--bg3); transition: transform 250ms ease, box-shadow 250ms ease, border-color 220ms ease; position: relative; }
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(200,168,97,0.20); }
.category-card::after { content: ''; position: absolute; top: 0; left: -75%; width: 50%; height: 100%; background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.05) 50%, transparent 100%); transform: skewX(-20deg); transition: left 0.6s ease; pointer-events: none; z-index: 1; }
.category-card:hover::after { left: 125%; }
.category-card__img { aspect-ratio: 3/4; overflow: hidden; }
.category-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.category-card:hover .category-card__img img { transform: scale(1.04); }
.category-card__body { padding: 20px; }
.category-card__label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.category-card__title { font-family: var(--font-serif); font-size: 20px; font-weight: 400; margin-bottom: 10px; line-height: 1.25; }
.category-card__text { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.category-card__link { font-size: 13px; color: var(--gold); letter-spacing: 0.3px; transition: opacity 180ms; }
.category-card__link:hover { opacity: 0.7; }

/* ── PRODUCT GRID ── */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product { border-radius: var(--radius); border: 1px solid var(--border); background: var(--bg3); overflow: hidden; transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease; position: relative; }
.product:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(200,168,97,0.18); }
.product::after { content: ''; position: absolute; top: 0; left: -75%; width: 50%; height: 100%; background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.05) 50%, transparent 100%); transform: skewX(-20deg); transition: left 0.55s ease; pointer-events: none; z-index: 1; }
.product:hover::after { left: 125%; }

.product.is-out { opacity: 0.65; }
.product.is-out::before { content: "Out of Stock"; position: absolute; top: 12px; right: 12px; padding: 5px 10px; border-radius: 999px; background: rgba(10,10,11,0.92); border: 1px solid var(--border); font-size: 11px; font-weight: 600; letter-spacing: 0.5px; color: var(--muted); z-index: 2; }
.product.is-out .btn--gold { opacity: 0.4; pointer-events: none; }

.product__img { aspect-ratio: 1; overflow: hidden; }
.product__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.product:hover .product__img img { transform: scale(1.04); }
.product__body { padding: 16px; }
.product__badges { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 10px; }
.product__cat { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); background: var(--gold-light); border: 1px solid var(--border2); padding: 4px 10px; border-radius: 999px; }
.product__price { font-size: 12px; color: var(--muted); }
.product__name { font-family: var(--font-serif); font-size: 17px; font-weight: 500; line-height: 1.25; margin-bottom: 6px; min-height: 42px; }
.product__inspo { font-size: 12px; color: var(--muted2); line-height: 1.5; margin-bottom: 14px; }
.product__actions { display: flex; gap: 8px; }
.product__actions .btn { flex: 1; }

.view-more-wrap { text-align: center; margin-top: 48px; }

/* ── REVIEWS ── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
.review-card { border: 1px solid var(--border); background: var(--bg3); border-radius: var(--radius); padding: 24px; transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease; }
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(200,168,97,0.20); }
.review-card__stars { color: var(--gold); font-size: 16px; letter-spacing: 3px; margin-bottom: 14px; }
.review-card__text { font-family: var(--font-serif); font-size: 16px; font-style: italic; color: var(--text); line-height: 1.7; margin-bottom: 16px; }
.review-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.review-card__name { font-size: 13px; font-weight: 600; color: var(--text); }
.review-card__product { font-size: 12px; color: var(--gold); background: var(--gold-light); border: 1px solid var(--border2); padding: 3px 10px; border-radius: 999px; }

/* ── REVIEW FORM ── */
.review-form-wrap { border: 1px solid var(--border); background: var(--bg3); border-radius: var(--radius-lg); padding: 36px; max-width: 720px; margin: 0 auto; }
.review-form__title { font-family: var(--font-serif); font-size: 26px; font-weight: 400; margin-bottom: 24px; }
.review-form { display: flex; flex-direction: column; gap: 18px; }
.review-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label { font-size: 12px; letter-spacing: 0.5px; text-transform: uppercase; color: var(--muted); }
.form-field input, .form-field select, .form-field textarea { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: var(--radius-sm); color: var(--text); padding: 12px 16px; outline: none; transition: border-color 180ms; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--gold-border); box-shadow: 0 0 0 3px rgba(200,168,97,0.10); }
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--muted2); }
.star-select { display: flex; gap: 4px; }
.star-select button { background: none; border: none; font-size: 28px; color: var(--muted2); cursor: pointer; padding: 0 2px; transition: color 120ms, transform 120ms; line-height: 1; }
.star-select button.is-active { color: var(--gold); }
.star-select button:hover { transform: scale(1.2); }

/* ── ABOUT SPLIT ── */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-split__text { color: var(--muted); line-height: 1.8; margin-bottom: 16px; font-size: 15px; }
.about-split__img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); object-fit: cover; }

/* ── POLICY STRIP ── */
.policy-strip { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.policy-strip__item { padding: 28px 24px; text-align: center; border-right: 1px solid var(--border); transition: background 200ms; }
.policy-strip__item:last-child { border-right: none; }
.policy-strip__item:hover { background: rgba(255,255,255,0.02); }
.policy-strip__icon { font-size: 26px; margin-bottom: 10px; }
.policy-strip__label { font-weight: 600; font-size: 14px; margin-bottom: 6px; }
.policy-strip__text { font-size: 13px; color: var(--muted); line-height: 1.5; }
.policy-strip__text a { color: var(--gold); }

/* ── DISCLAIMER ── */
.disclaimer { border-top: 1px solid var(--border); padding: 18px 0; font-size: 12px; color: var(--muted2); line-height: 1.8; text-align: center; }

/* ── CART DRAWER ── */
.cart-drawer { position: fixed; inset: 0; z-index: 9000; }
.cart-drawer.is-hidden { display: none; }
.cart-drawer__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.60); backdrop-filter: blur(4px); }
.cart-drawer__panel { position: absolute; top: 0; right: 0; width: min(480px, 100%); height: 100%; background: #0e0e10; border-left: 1px solid var(--border); box-shadow: -20px 0 60px rgba(0,0,0,0.50); padding: 24px 22px 28px; overflow-y: auto; }
.cart-drawer__close { position: absolute; top: 16px; right: 16px; width: 38px; height: 38px; border-radius: var(--radius-sm); border: 1px solid var(--border); background: rgba(255,255,255,0.05); color: var(--text); font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.cart-drawer__header { padding-right: 50px; margin-bottom: 20px; }
.cart-drawer__title { font-family: var(--font-serif); font-size: 26px; font-weight: 400; margin-bottom: 4px; }
.cart-drawer__sub { font-size: 13px; color: var(--muted); }
.cart-items { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.cart-empty { padding: 20px; border: 1px solid var(--border); border-radius: var(--radius); text-align: center; color: var(--muted); font-size: 14px; }
.cart-item { padding: 16px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg3); }
.cart-item__name { font-weight: 600; font-size: 14px; margin-bottom: 4px; }
.cart-item__meta { font-size: 12px; color: var(--muted); margin-bottom: 12px; }
.cart-item__controls { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.qty-btn { width: 32px; height: 32px; border-radius: 8px; border: 1px solid var(--border); background: rgba(255,255,255,0.04); color: var(--text); cursor: pointer; font-size: 16px; display: flex; align-items: center; justify-content: center; transition: background 150ms; }
.qty-btn:hover { background: rgba(255,255,255,0.08); }
.qty-value { font-weight: 600; min-width: 20px; text-align: center; }
.remove-btn { border: none; background: transparent; color: var(--muted); font-size: 12px; cursor: pointer; padding: 4px 0; transition: color 150ms; }
.remove-btn:hover { color: var(--text); }
.cart-summary { border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; margin-bottom: 20px; background: var(--bg3); }
.cart-summary__row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 14px; color: var(--muted); }
.cart-summary__row--total { border-top: 1px solid var(--border); margin-top: 8px; padding-top: 12px; font-weight: 700; font-size: 16px; color: var(--text); }
.checkout-form { display: flex; flex-direction: column; gap: 14px; }
.checkout-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.checkout-note { font-size: 12px; color: var(--muted); line-height: 1.5; padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: rgba(200,168,97,0.04); }
.checkout-btn { width: 100%; padding: 15px; font-size: 14px; letter-spacing: 0.5px; }
.cart-count { display: inline-flex; align-items: center; justify-content: center; min-width: 20px; height: 20px; border-radius: 999px; background: rgba(200,168,97,0.25); border: 1px solid var(--gold-border); font-size: 11px; padding: 0 5px; font-weight: 600; }

/* ── MODAL ── */
.modal { position: fixed; inset: 0; z-index: 9999; display: none; }
.modal.is-open { display: flex; align-items: center; justify-content: center; padding: 20px; }
.modal__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.65); backdrop-filter: blur(6px); }
.modal__panel { position: relative; width: min(580px, 100%); border-radius: var(--radius-lg); border: 1px solid var(--border); background: #0e0e10; box-shadow: var(--shadow-lg); padding: 36px 32px 32px; }
.modal__close { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; border-radius: var(--radius-sm); border: 1px solid var(--border); background: rgba(255,255,255,0.05); color: var(--text); font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.modal__kicker { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.modal__title { font-family: var(--font-serif); font-size: 32px; font-weight: 400; margin-bottom: 10px; }
.modal__inspo { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.modal__tip { font-size: 13px; color: var(--muted2); margin-bottom: 24px; padding: 12px 16px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--gold-light); }
.modal__actions { display: flex; gap: 12px; }
.modal-open { overflow: hidden; }

/* ── FOOTER ── */
.footer { border-top: 1px solid var(--border); padding: 40px 0 32px; }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 24px; text-align: center; }
.footer__name { font-family: var(--font-serif); font-size: 22px; font-weight: 400; letter-spacing: 0.5px; }
.footer__tag { font-size: 12px; color: var(--muted); margin-top: 4px; }
.footer__links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer__links a { font-size: 13px; color: var(--muted); transition: color 150ms; }
.footer__links a:hover { color: var(--text); }
.footer__copy { font-size: 12px; color: var(--muted2); }

/* ── SHOP PAGE ── */
.shop-hero { padding: 60px 0 0; }
.shop-hero__title { font-family: var(--font-serif); font-size: clamp(40px, 5vw, 64px); font-weight: 300; margin: 16px 0 12px; }
.shop-hero__sub { color: var(--muted); font-size: 15px; max-width: 55ch; }
.shop-controls { padding: 24px 0; border-bottom: 1px solid var(--border); position: sticky; top: 65px; z-index: 800; background: rgba(10,10,11,0.92); backdrop-filter: blur(12px); }
.shop-controls__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.filters { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-btn { padding: 9px 20px; border-radius: 999px; border: 1px solid var(--border2); background: transparent; color: var(--muted); font-family: var(--font-sans); font-size: 13px; font-weight: 500; cursor: pointer; transition: all 180ms ease; }
.filter-btn:hover { border-color: var(--gold); color: var(--text); background: var(--gold-light); }
.filter-btn.is-active { border-color: var(--gold); color: #e8d5a3; background: linear-gradient(135deg, rgba(200,168,97,0.22), rgba(200,168,97,0.08)); }

/* ── VALUES GRID ── */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value-card { border: 1px solid var(--border); background: var(--bg3); border-radius: var(--radius); padding: 28px 24px; text-align: center; transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease; }
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(200,168,97,0.20); }
.value-card__icon { font-size: 32px; margin-bottom: 14px; }
.value-card__title { font-family: var(--font-serif); font-size: 20px; font-weight: 400; margin-bottom: 10px; }
.value-card__text { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── POLICIES GRID ── */
.policies-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.policy-block { border: 1px solid var(--border); background: var(--bg3); border-radius: var(--radius-lg); padding: 32px; transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease; }
.policy-block:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(200,168,97,0.18); }
.policy-block__icon { font-size: 28px; margin-bottom: 14px; }
.policy-block__title { font-family: var(--font-serif); font-size: 24px; font-weight: 400; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.policy-block__body { display: flex; flex-direction: column; gap: 12px; }
.policy-block__body p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.policy-block__body h4 { font-family: var(--font-sans); font-size: 13px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; color: var(--gold); margin-top: 8px; }
.policy-block__body ul { padding-left: 18px; display: flex; flex-direction: column; gap: 6px; }
.policy-block__body li { font-size: 14px; color: var(--muted); line-height: 1.6; }
.policy-block__body a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.policy-block__body strong { color: var(--text); }

/* ── CONTACT GRID ── */
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 880px; margin: 0 auto; }
.contact-card { border: 1px solid var(--border); background: var(--bg3); border-radius: var(--radius-lg); padding: 32px; display: flex; flex-direction: column; gap: 12px; transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease; }
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(200,168,97,0.18); }
.contact-card__icon { font-size: 32px; }
.contact-card__title { font-family: var(--font-serif); font-size: 22px; font-weight: 400; }
.contact-card__text { font-size: 14px; color: var(--muted); line-height: 1.7; flex: 1; }
.contact-card__detail { font-size: 13px; color: var(--gold); font-weight: 500; }
.contact-card .btn { align-self: flex-start; }

/* ── SUCCESS PAGE ── */
.success-wrap { max-width: 700px; margin: 0 auto; text-align: center; padding: 40px 0 60px; }
.success-icon { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, rgba(200,168,97,0.25), rgba(200,168,97,0.08)); border: 1px solid var(--gold-border); display: flex; align-items: center; justify-content: center; font-size: 28px; color: var(--gold); margin: 0 auto 24px; }
.success-title { font-family: var(--font-serif); font-size: clamp(36px, 5vw, 56px); font-weight: 300; margin-bottom: 14px; }
.success-sub { color: var(--muted); font-size: 16px; line-height: 1.7; margin-bottom: 36px; max-width: 50ch; margin-left: auto; margin-right: auto; }
.success-card { border: 1px solid var(--border); background: var(--bg3); border-radius: var(--radius-lg); padding: 28px; text-align: left; margin-bottom: 32px; }
.success-card__section { padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid var(--border); }
.success-card__section:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: none; }
.success-card__label { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; font-weight: 600; }
.success-card__row { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; font-size: 14px; color: var(--muted); border-bottom: 1px solid rgba(255,255,255,0.04); }
.success-card__row:last-child { border-bottom: none; }
.success-card__row span:last-child { color: var(--text); text-align: right; }
.success-card__row--total { font-weight: 700; font-size: 16px; padding-top: 12px; border-top: 1px solid var(--border); margin-top: 8px; }
.success-card__row--total span { color: var(--text) !important; }
.success-items { display: flex; flex-direction: column; gap: 10px; }
.success-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 12px; background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: var(--radius-sm); gap: 12px; }
.success-item__name { font-weight: 600; font-size: 14px; }
.success-item__meta { font-size: 12px; color: var(--muted); text-align: right; }
.success-next { border: 1px solid var(--border); background: var(--bg3); border-radius: var(--radius-lg); padding: 28px; text-align: left; margin-bottom: 32px; }
.success-next__title { font-family: var(--font-serif); font-size: 22px; font-weight: 400; margin-bottom: 20px; }
.success-next__steps { display: flex; flex-direction: column; gap: 16px; }
.success-step { display: flex; gap: 16px; align-items: flex-start; }
.success-step__num { width: 32px; height: 32px; border-radius: 50%; background: var(--gold-light); border: 1px solid var(--gold-border); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0; }
.success-step strong { display: block; font-size: 14px; margin-bottom: 4px; }
.success-step p { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0; }
.success-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ── GALLERY LIGHTBOX ── */
.gallery-lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.90); display: flex; align-items: center; justify-content: center; z-index: 99999; cursor: pointer; }
.gallery-lightbox img { max-width: 90%; max-height: 90%; border-radius: var(--radius); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .policy-strip { grid-template-columns: repeat(2, 1fr); }
  .policy-strip__item:nth-child(2) { border-right: none; }
  .policy-strip__item:nth-child(3) { border-top: 1px solid var(--border); }
  .policy-strip__item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
}

@media (max-width: 900px) {
  .nav__search-wrap { display: none; }
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(7,7,7,0.98); backdrop-filter: blur(20px);
    display: none; flex-direction: column; align-items: center; justify-content: center;
    gap: 8px; padding: 40px 24px; z-index: 9999;
  }
  .nav__links.is-open { display: flex; animation: menuFadeIn 0.25s ease forwards; }
  @keyframes menuFadeIn { from { opacity: 0; } to { opacity: 1; } }
  .nav__links .nav__link { font-family: var(--font-serif); font-size: 36px; font-weight: 300; color: var(--text); padding: 10px 20px; width: 100%; text-align: center; border-radius: 12px; }
  .nav__links .nav__link:hover { color: var(--gold); background: rgba(200,168,97,0.06); }
  .nav__links .btn { width: 80%; justify-content: center; margin-top: 8px; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { order: -1; }
  .hero__img { max-width: 100%; max-height: 420px; object-fit: cover; }
  .hero__title { font-size: clamp(44px, 10vw, 64px); }
  .category-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .policy-strip { grid-template-columns: 1fr; }
  .policy-strip__item { border-right: none; border-top: 1px solid var(--border); }
  .policy-strip__item:first-child { border-top: none; }
  .checkout-form__grid { grid-template-columns: 1fr; }
  .policies-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; max-width: 100%; }
  .shop-controls { top: 58px; }
  .shop-controls__inner { flex-direction: column; align-items: stretch; }
  .shop-controls__inner .nav__search { max-width: 100% !important; }
}

@media (max-width: 600px) {
  .container { width: calc(100% - 28px); }
  .products-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .review-form-wrap { padding: 24px 18px; }
  .review-form__row { grid-template-columns: 1fr; }
  .modal__panel { padding: 28px 20px 24px; }
  .modal__title { font-size: 26px; }
  .section { padding: 56px 0; }
  .hero { padding: 48px 0 40px; }
}
