:root {
  --forest: #1B3A2F;
  --forest-deep: #12261f;
  --blush: #C4A4A4;
  --cream: #FAF8F5;
  --cream-2: #F3EEE6;
  --charcoal: #1A1A1A;
  --gold: #B8956B;
  --line: rgba(26, 26, 26, 0.12);
  --shadow: 0 18px 50px rgba(18, 38, 31, 0.12);
  --radius: 2px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(196, 164, 164, 0.22), transparent 60%),
    radial-gradient(900px 420px at 100% 0%, rgba(184, 149, 107, 0.16), transparent 55%),
    linear-gradient(180deg, #FAF8F5 0%, #F5F1EB 100%);
  color: var(--charcoal);
  font-family: var(--font-body);
  line-height: 1.6;
  padding-bottom: 78px;
  overflow-x: hidden;
  max-width: 100vw;
}
img { max-width: 100%; height: auto; display: block; }
.opt { font-weight: 400; opacity: 0.65; font-size: 0.88em; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }
.narrow { width: min(100% - 2rem, 760px); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 248, 245, 0.96);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}
.brand { display: inline-flex; align-items: center; gap: 0.65rem; }
.brand-logo { width: 42px; height: 42px; object-fit: contain; }
.brand-text {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  letter-spacing: 0.02em;
  font-weight: 600;
  color: var(--forest);
}
.nav-desktop { display: none; gap: 1.35rem; }
.nav-desktop a { font-size: 0.93rem; opacity: 0.82; }
.nav-desktop a:hover { opacity: 1; color: var(--forest); }
.header-actions { display: flex; gap: 0.2rem; align-items: center; }
.icon-btn {
  border: 0;
  background: transparent;
  padding: 0.45rem 0.7rem;
  cursor: pointer;
}
.cart-count, .badge {
  display: inline-grid;
  place-items: center;
  min-width: 1.3rem;
  height: 1.3rem;
  padding: 0 0.3rem;
  border-radius: 999px;
  background: var(--forest);
  color: #fff;
  font-size: 0.72rem;
  margin-left: 0.25rem;
}
.search-panel {
  border-top: 1px solid var(--line);
  padding: 1rem 0 1.25rem;
  background: var(--cream);
}
.search-form { display: flex; gap: 0.75rem; }
.search-form input,
.page-search input,
.sort-form select,
.atc-form input,
.checkout-form input,
.checkout-form select,
.checkout-form textarea,
.contact-form input,
.contact-form textarea,
.coupon-form input {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0.9rem 1rem;
  border-radius: var(--radius);
}
.search-suggest { margin-top: 0.75rem; display: grid; gap: 0.5rem; }
.suggest-item {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 0.55rem;
  background: #fff;
  border: 1px solid var(--line);
}
.suggest-item img { width: 44px; height: 54px; object-fit: cover; }
.suggest-item em { display: block; font-style: normal; color: var(--forest); font-size: 0.9rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 1px solid transparent;
  padding: 0.85rem 1.35rem;
  cursor: pointer;
  border-radius: var(--radius);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--forest); color: #fff; }
.btn-primary:hover { background: var(--forest-deep); box-shadow: 0 10px 22px rgba(27, 58, 47, 0.22); }
.btn-outline { background: transparent; border-color: var(--forest); color: var(--forest); }
.btn-ghost { background: transparent; border-color: var(--line); }
.btn-sm { padding: 0.55rem 0.9rem; font-size: 0.9rem; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; animation: none; }
.btn-pulse { animation: btnPulse 2.4s ease-in-out infinite; }
.btn-wa {
  background: #128C7E;
  color: #fff;
  border-color: #128C7E;
}
.btn-wa:hover { background: #0e6e63; box-shadow: 0 10px 24px rgba(18, 140, 126, 0.35); }
.btn-wa-glow { animation: waGlow 1.8s ease-in-out infinite; }
@keyframes btnPulse {
  0%, 100% { transform: translateY(0); box-shadow: 0 0 0 0 rgba(184, 149, 107, 0.35); }
  50% { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(184, 149, 107, 0.28); }
}
@keyframes waGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
}
.trust-strip {
  padding: 1.25rem 0;
  background: rgba(255, 255, 255, 0.55);
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.trust-item strong { display: block; color: var(--forest); font-size: 0.95rem; }
.trust-item span { font-size: 0.82rem; color: rgba(26, 26, 26, 0.65); }
.how-section { padding-top: 3rem; }
.how-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.how-step {
  padding: 1.1rem 1.15rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line);
}
.how-step em {
  font-family: var(--font-display);
  font-style: normal;
  color: var(--gold);
  font-size: 1.4rem;
}
.how-step h3 { margin: 0.35rem 0; font-family: var(--font-display); color: var(--forest); font-size: 1.35rem; }
.how-step p { margin: 0; color: rgba(26, 26, 26, 0.7); font-size: 0.95rem; }
.how-cta { display: flex; flex-wrap: wrap; gap: 0.65rem; }
.trust-bullets {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  display: grid;
  gap: 0.35rem;
}
.trust-bullets li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.92rem;
  color: rgba(26, 26, 26, 0.78);
}
.trust-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--gold);
}
.checkout-trust {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  background: rgba(27, 58, 47, 0.06);
  border: 1px solid rgba(27, 58, 47, 0.12);
}
.checkout-trust p { margin: 0.25rem 0; }

/* Kategori şeridi */
.cat-strip {
  padding: 1.1rem 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.cat-strip-track {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.35rem;
  -webkit-overflow-scrolling: touch;
}
.cat-strip-track::-webkit-scrollbar { height: 4px; }
.cat-strip-item {
  flex: 0 0 auto;
  width: 92px;
  text-align: center;
  scroll-snap-align: start;
}
.cat-strip-img {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 0.45rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(27,58,47,.12);
  background: var(--cream-2);
  transition: transform .25s ease, border-color .25s ease;
}
.cat-strip-item:hover .cat-strip-img {
  transform: translateY(-3px) scale(1.04);
  border-color: var(--forest);
}
.cat-strip-img img { width: 100%; height: 100%; object-fit: cover; }
.cat-strip-name {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--forest);
  line-height: 1.25;
}
.cat-products .section-head { align-items: end; }

/* Yorumlar — dikkat çekici carousel */
.reviews-section {
  background:
    radial-gradient(600px 280px at 10% 0%, rgba(26,115,232,.08), transparent 60%),
    linear-gradient(180deg, #fff 0%, #f7f5f1 100%);
  overflow: hidden;
}
.reviews-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}
.reviews-hero-score {
  display: flex;
  gap: 0.9rem;
  align-items: center;
}
.g-badge {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  color: #1a73e8;
  font-weight: 800;
  font-size: 1.5rem;
  box-shadow: 0 10px 24px rgba(26,115,232,.15);
  animation: gPulse 2.2s ease-in-out infinite;
}
@keyframes gPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.reviews-big {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3rem);
  color: var(--forest);
  line-height: 1;
  display: block;
}
.stars { color: #f4b400; letter-spacing: 0.06em; }
.stars-lg { font-size: 1.25rem; text-shadow: 0 2px 8px rgba(244,180,0,.35); }
.stars-sm { font-size: 0.95rem; }
.reviews-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.5rem;
  align-items: center;
}
.reviews-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.35rem 0.15rem 1rem;
  -webkit-overflow-scrolling: touch;
}
.reviews-track::-webkit-scrollbar { display: none; }
.review-card-pro {
  flex: 0 0 min(340px, 88vw);
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid rgba(26,26,26,.08);
  border-radius: 14px;
  padding: 1.15rem 1.2rem;
  box-shadow: 0 14px 36px rgba(18,38,31,.08);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
  animation: reviewIn .6s ease both;
}
.review-card-pro:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(18,38,31,.12);
}
@keyframes reviewIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.review-top {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 0.7rem;
  align-items: start;
  margin-bottom: 0.85rem;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a73e8, #34a853);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
}
.review-top strong { display: block; font-size: 0.98rem; }
.review-top time { font-size: 0.78rem; color: rgba(26,26,26,.55); }
.review-verified {
  font-size: 0.68rem;
  font-weight: 700;
  color: #188038;
  background: #e6f4ea;
  padding: 0.25rem 0.45rem;
  border-radius: 999px;
  white-space: nowrap;
}
.review-text {
  margin: 0;
  line-height: 1.65;
  flex: 1;
  font-size: 0.95rem;
}
.review-reply {
  margin-top: 0.9rem;
  padding: 0.85rem;
  background: #f8f9fa;
  border-left: 3px solid #1a73e8;
  border-radius: 0 8px 8px 0;
}
.review-reply strong { display: block; font-size: 0.8rem; color: #1a73e8; margin-bottom: 0.3rem; }
.review-reply p { margin: 0; font-size: 0.88rem; color: rgba(26,26,26,.78); }
.reviews-nav {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--forest);
  box-shadow: 0 6px 16px rgba(18,38,31,.08);
}
.reviews-nav:hover { background: var(--forest); color: #fff; }
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.25rem;
}
.reviews-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: rgba(27,58,47,.25);
  padding: 0;
  cursor: pointer;
}
.reviews-dots button.is-active { background: var(--forest); width: 18px; border-radius: 999px; }

.mini-cart {
  position: fixed;
  top: 0;
  right: 0;
  width: min(100%, 380px);
  height: 100%;
  background: var(--cream);
  z-index: 60;
  transform: translateX(105%);
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.mini-cart.is-open { transform: translateX(0); }
.mini-cart-head, .mini-cart-foot { padding: 1.1rem 1.2rem; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 0.75rem; }
.mini-cart-foot { border-bottom: 0; border-top: 1px solid var(--line); flex-direction: column; align-items: stretch; }
.mini-cart-body { flex: 1; overflow: auto; padding: 1rem 1.2rem; display: grid; gap: 0.85rem; align-content: start; }
.mini-line { display: flex; gap: 0.75rem; }
.mini-line img { width: 56px; height: 70px; object-fit: cover; }
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.35);
  z-index: 50;
}

.flash { margin: 1rem auto; padding: 0.85rem 1rem; border: 1px solid var(--line); }
.flash-success { background: #eef5f0; border-color: rgba(27, 58, 47, 0.25); }
.flash-error { background: #f8eeee; border-color: rgba(160, 70, 70, 0.25); }

/* Full-width hero: blurred bleed + sharp slide (all text readable) */
.hero {
  position: relative;
  width: 100%;
  background: #12261f;
  overflow: hidden;
}
.hero-designed {
  display: block;
  position: relative;
  width: 100%;
  background: #12261f;
}

/*
 * hero-stage: tam ekran genişlik, sabit yükseklik oranı.
 * aspect-ratio tek başına kontrol eder — min/max-height çakışmasını engelle.
 */
.hero-stage {
  position: relative;
  width: 100%;
  /* Desktop: geniş sinema oranı */
  aspect-ratio: 21 / 8;
  background: #12261f;
  overflow: hidden;
  /* aspect-ratio yoksa fallback yükseklik */
  min-height: 320px;
}

/* aspect-ratio destekleyen tarayıcılarda min/max override'ı kaldır */
@supports (aspect-ratio: 21 / 8) {
  .hero-stage {
    min-height: unset;
    height: auto;
  }
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Her slide tam stage alanını kaplar */
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.9s ease;
  background: #12261f;
  overflow: hidden;
}
.hero-slide.is-active {
  opacity: 1;
  z-index: 2;
  animation: heroFade 0.9s ease both;
}
.hero-slide-designed {
  background: #12261f;
}

/* picture elemanları stage içini tamamen kaplar */
.hero-slide picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 0;
}
.hero-slide picture:first-of-type { z-index: 0; }
.hero-slide picture:last-of-type  { z-index: 1; }

/* Arka plan blur katmanı */
.hero-slide-bg {
  position: absolute;
  inset: -24px;
  width: calc(100% + 48px);
  height: calc(100% + 48px);
  object-fit: cover;
  object-position: center center;
  filter: blur(24px) brightness(0.5) saturate(1.1);
  transform: scale(1.05);
  z-index: 0;
  pointer-events: none;
}

/* Ön görsel — tam kaplama, odak merkez */
.hero-slide-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
  display: block;
  pointer-events: none;
}

.hero-fallback {
  background: #12261f;
}
.hero-overlay { display: none; }
.hero-overlay-soft { display: none; }

/* Alt araç çubuğu: buton + noktalar */
.hero-toolbar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 0.6rem;
  padding: 3rem 1rem 1rem;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(12, 30, 22, 0.15) 40%,
    rgba(12, 30, 22, 0.55) 100%
  );
  pointer-events: none;
  box-sizing: border-box;
}
.hero-toolbar .btn,
.hero-toolbar .hero-dots {
  pointer-events: auto;
}
.hero-toolbar .btn {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
}

@keyframes heroFade {
  from { opacity: 0; transform: scale(1.015); }
  to   { opacity: 1; transform: scale(1); }
}
.hero-content {  position: relative;
  z-index: 2;
  padding: 1.25rem 0 1.5rem;
  color: #fff;
  max-width: 720px;
}
.hero-content-cta {
  max-width: none;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0 0 1.1rem;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.footer-brand-banner {
  margin-bottom: 1.75rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
}
.footer-brand-banner img {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: cover;
  object-position: center;
}
.brand-logo-lg { width: 48px; height: 48px; border-radius: 10px; }
.footer-domain { margin: 0.35rem 0 0; }
.footer-domain a { color: var(--gold); font-weight: 600; letter-spacing: 0.02em; }
.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 4.8rem);
  line-height: 0.95;
  margin: 0 0 0.85rem;
  letter-spacing: 0.01em;
}
.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.4vw, 2.4rem);
  font-weight: 500;
  margin: 0 0 0.75rem;
  max-width: 14ch;
}
.hero-sub { margin: 0 0 1.5rem; max-width: 36ch; color: rgba(255, 255, 255, 0.9); }
.hero-dots {
  position: static;
  left: auto;
  bottom: auto;
  transform: none;
  z-index: 3;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.hero-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, width 0.3s ease;
  flex-shrink: 0;
}
.hero-dots button.is-active {
  background: #fff;
  border-color: #fff;
  width: 22px;
  border-radius: 999px;
  transform: none;
}


.section { padding: 4.5rem 0; }
.section-head { margin-bottom: 1.75rem; }
.section-head h1, .section-head h2, .product-info h1, .article h1 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--forest);
  margin: 0 0 0.4rem;
}
.section-head h1 { font-size: clamp(2rem, 4vw, 3rem); }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.35rem); }
.section-head p, .lead { color: rgba(26, 26, 26, 0.72); margin: 0; }
.row-between { display: flex; justify-content: space-between; gap: 1rem; align-items: end; flex-wrap: wrap; }
.text-link { color: var(--forest); text-decoration: underline; text-underline-offset: 3px; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.75rem; color: var(--gold); margin: 0 0 0.5rem; }
.muted { color: rgba(26, 26, 26, 0.65); }
.small { font-size: 0.9rem; }
.empty, .empty-box { padding: 2rem 0; text-align: center; }
.err { color: #8a3030; display: block; margin-top: 0.25rem; }

.express-strip {
  position: relative;
  overflow: hidden;
  padding: 1.5rem 0;
  margin: 0;
  background:
    radial-gradient(ellipse 80% 120% at 90% 50%, rgba(212,175,55,.28), transparent 55%),
    linear-gradient(115deg, #1b3a2f 0%, #2d5a46 55%, #1f4538 100%);
  color: #fff;
}
.express-inner {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  position: relative;
  z-index: 1;
}
.express-badge {
  flex: 0 0 auto;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #d4af37, #b8922a);
  color: #fff;
  font-weight: 800;
  font-size: 0.92rem;
  line-height: 1.05;
  text-align: center;
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
  animation: expressPulse 2.2s ease-in-out infinite;
}
.express-copy { flex: 1 1 auto; min-width: 0; }
.express-visual {
  flex: 0 0 auto;
  width: min(220px, 28vw);
  height: 72px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 50%, rgba(255,255,255,.18), transparent 45%),
    radial-gradient(circle at 70% 50%, rgba(212,175,55,.35), transparent 50%);
  border: 1px solid rgba(255,255,255,.12);
}
@keyframes expressPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.express-strip h2 {
  font-family: var(--font-display);
  margin: 0 0 0.25rem;
  font-size: clamp(1.45rem, 3vw, 1.95rem);
  color: #fff !important;
  font-weight: 600;
}
.express-strip p {
  margin: 0;
  color: rgba(255,255,255,.9);
  font-size: 0.98rem;
  max-width: 36rem;
}
@media (max-width: 720px) {
  .express-visual { display: none; }
  .express-inner { gap: 0.9rem; }
}

.cat-grid, .product-grid, .blog-grid, .banner-grid {
  display: grid;
  gap: 1.1rem;
}
.cat-grid { grid-template-columns: repeat(2, 1fr); }
.product-grid { grid-template-columns: repeat(2, 1fr); }
.blog-grid { grid-template-columns: 1fr; }
.banner-grid { grid-template-columns: 1fr; }

.cat-card {
  position: relative;
  overflow: hidden;
  min-height: 180px;
  background: var(--cream-2);
}
.cat-card img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.cat-card:hover img { transform: scale(1.04); }
.cat-card span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  background: linear-gradient(transparent, rgba(18, 38, 31, 0.75));
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(26,26,26,.08);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(27, 58, 47, 0.12);
}
.product-card-media {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--cream-2);
  width: 100%;
  max-width: none;
  margin: 0;
  cursor: zoom-in;
}
.product-card-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: none;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(.22,.61,.36,1);
  transform-origin: center center;
  will-change: transform;
}
.product-card:hover .product-card-media img,
.product-card-media:hover img {
  transform: scale(1.22);
}
.product-card-media::after {
  content: '';
  position: absolute;
  right: 0.65rem;
  bottom: 0.65rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231b3a2f' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M20 20l-3.5-3.5'/%3E%3C/svg%3E") center/18px no-repeat,
    rgba(255,255,255,.92);
  box-shadow: 0 6px 16px rgba(18,38,31,.18);
  opacity: 0;
  transform: scale(.85);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
  z-index: 2;
}
.product-card:hover .product-card-media::after,
.product-card-media:hover::after {
  opacity: 1;
  transform: scale(1);
}
.btn-accent {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn-accent:hover { filter: brightness(0.95); }
.btn-order {
  width: 100%;
  background: linear-gradient(135deg, #c4a06a 0%, #9a7340 100%);
  color: #fff;
  border: 0;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.72rem 0.85rem;
  box-shadow: 0 10px 22px rgba(154, 115, 64, 0.28);
  animation: orderPulse 2.2s ease-in-out infinite;
}
.btn-order:hover {
  filter: brightness(1.05);
  box-shadow: 0 14px 28px rgba(154, 115, 64, 0.38);
}
.btn-cart {
  flex: 1;
  background: var(--forest);
  color: #fff;
  border: 0;
  font-weight: 600;
  padding: 0.68rem 0.75rem;
  box-shadow: 0 8px 18px rgba(27, 58, 47, 0.18);
}
.btn-cart:hover {
  background: var(--forest-deep);
  box-shadow: 0 12px 24px rgba(27, 58, 47, 0.28);
}
.btn-ico { flex: 0 0 auto; }
@keyframes orderPulse {
  0%, 100% { box-shadow: 0 10px 22px rgba(154, 115, 64, 0.28); }
  50% { box-shadow: 0 12px 28px rgba(154, 115, 64, 0.45); }
}
.qty-controls {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--line);
  background: #fff;
  max-width: 140px;
}
.qty-controls input {
  width: 48px;
  border: 0;
  text-align: center;
  padding: 0.55rem 0.2rem;
  -moz-appearance: textfield;
}
.qty-controls input::-webkit-outer-spin-button,
.qty-controls input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty-btn {
  width: 36px;
  height: 40px;
  border: 0;
  background: var(--cream-2);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}
.atc-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.sticky-atc-btns { display: flex; flex-wrap: wrap; gap: 0.4rem; justify-content: flex-end; }
.chip {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  background: var(--forest);
  color: #fff;
  font-size: 0.72rem;
  padding: 0.25rem 0.55rem;
}
.chip-sale { left: auto; right: 0.7rem; background: var(--gold); color: #fff; }
.product-card-body { padding: 0.9rem 0.65rem 1rem; }
.product-card-title { font-family: var(--font-display); font-size: 1.2rem; margin: 0 0 0.35rem; line-height: 1.25; }
.product-card-price { display: flex; gap: 0.55rem; align-items: baseline; margin-bottom: 0.75rem; }
.product-card-price s { opacity: 0.55; font-size: 0.9rem; }
.product-card-actions {
  display: grid;
  gap: 0.45rem;
}
.product-card-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.45rem;
  align-items: stretch;
}
.product-card-actions .btn {
  justify-content: center;
  font-size: 0.84rem;
  white-space: nowrap;
  border-radius: 10px;
}
.product-card-row .icon-fav {
  width: 44px;
  height: 100%;
  min-height: 44px;
  border-radius: 10px;
}
@media (max-width: 420px) {
  .reviews-nav { display: none; }
  .reviews-carousel { grid-template-columns: 1fr; }
  .product-card-actions .btn { font-size: 0.8rem; }
}
.icon-fav {
  border: 1px solid var(--line);
  background: #fff;
  width: 42px;
  height: 42px;
  cursor: pointer;
  color: var(--blush);
}
.icon-fav.is-active { color: #8a3f3f; border-color: var(--blush); }

.banner-card { position: relative; overflow: hidden; display: block; min-height: 220px; }
.banner-card img { width: 100%; height: 100%; min-height: 220px; object-fit: cover; }
.banner-card span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.campaign-box {
  min-height: 280px;
  padding: 2.5rem;
  background:
    linear-gradient(110deg, rgba(27, 58, 47, 0.9), rgba(27, 58, 47, 0.45)),
    var(--camp-image, linear-gradient(135deg, var(--forest), var(--blush))) center/cover no-repeat;
  color: #fff;
  display: grid;
  align-items: center;
}
.campaign-box h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); margin: 0 0 0.5rem; color: #fff; }
.campaign-badge { color: var(--gold); font-weight: 600; }

.blog-card {
  display: grid;
  gap: 0.85rem;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--line);
}
.blog-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.blog-card > div { padding: 0 1rem 1.1rem; }
.blog-card h2, .blog-card h3 { font-family: var(--font-display); margin: 0.35rem 0; color: var(--forest); }

.breadcrumbs { display: flex; flex-wrap: wrap; gap: 0.4rem; font-size: 0.9rem; margin-bottom: 1rem; opacity: 0.8; }
.page-head { padding-top: 2.5rem; }
.sort-form { display: flex; gap: 0.5rem; align-items: center; }
.pagination { display: flex; gap: 0.4rem; margin-top: 2rem; flex-wrap: wrap; }
.pagination a {
  min-width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: #fff;
}
.pagination a.active { background: var(--forest); color: #fff; border-color: var(--forest); }

.product-layout {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.gallery-main {
  background: var(--cream-2);
  max-width: 420px;
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
}
.gallery-main img {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 420px;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(.22,.61,.36,1);
  transform-origin: center center;
}
.gallery-main:hover img { transform: scale(1.2); }
.gallery-main::after {
  content: '';
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231b3a2f' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M20 20l-3.5-3.5'/%3E%3C/svg%3E") center/18px no-repeat,
    rgba(255,255,255,.92);
  box-shadow: 0 6px 16px rgba(18,38,31,.18);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.gallery-main:hover::after { opacity: 1; }
.gallery-thumbs { display: flex; gap: 0.5rem; margin-top: 0.65rem; overflow-x: auto; max-width: 100%; }
.thumb { border: 1px solid var(--line); padding: 0; background: #fff; cursor: pointer; flex: 0 0 auto; }
.thumb img { width: 64px; height: 64px; object-fit: cover; }
.product-info h1 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
.price-row { display: flex; gap: 0.75rem; align-items: baseline; margin: 1rem 0 0.5rem; }
.price { font-size: 1.45rem; color: var(--forest); }
.stock.in { color: var(--forest); }
.stock.out { color: #8a3030; }
.badge-line { color: var(--gold); font-weight: 600; }
.atc-form { display: grid; gap: 0.85rem; margin: 1.25rem 0; }
.atc-form label { display: grid; gap: 0.35rem; max-width: 140px; }
.share-row, .tag-row, .chip-row { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 1rem; align-items: center; }
.tag { border: 1px solid var(--line); padding: 0.25rem 0.55rem; font-size: 0.85rem; background: #fff; }
.product-tabs { display: grid; gap: 1.5rem; margin: 2rem 0 3rem; }
.tab-block { padding-top: 1.25rem; border-top: 1px solid var(--line); }
.tab-block h2 { font-family: var(--font-display); color: var(--forest); font-size: 1.5rem; }
.prose { line-height: 1.75; }
.prose img { margin: 1rem 0; }

.product-reviews-head { margin-bottom: 1rem; }
.product-reviews-head h2 { margin-bottom: 0.35rem; }
.product-reviews-head .muted { margin: 0; display: flex; flex-wrap: wrap; gap: 0.35rem 0.65rem; align-items: center; }
.product-review-list { display: grid; gap: 0.85rem; }
.product-review-item {
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1rem 1.1rem;
}
.product-review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  align-items: center;
  margin-bottom: 0.35rem;
  font-size: 0.92rem;
}
.product-review-meta strong { color: var(--forest); }
.product-review-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}
.product-review-item p {
  margin: 0;
  line-height: 1.65;
  color: rgba(26,26,26,.88);
}
.stars-sm { font-size: 0.85rem; letter-spacing: 0.05em; color: #c4a35a; }

.sticky-atc {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 72px;
  z-index: 35;
  background: rgba(250, 248, 245, 0.97);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform 0.35s ease;
  box-shadow: 0 -10px 30px rgba(18, 38, 31, 0.08);
  pointer-events: none;
}
.sticky-atc.is-visible {
  transform: translateY(0);
  pointer-events: auto;
  animation: stickySlide 0.35s ease;
}
.sticky-atc-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 0.75rem 0; }
@keyframes stickySlide {
  from { transform: translateY(110%); }
  to { transform: translateY(0); }
}

.cart-layout, .checkout-layout, .contact-layout {
  display: grid;
  gap: 1.5rem;
}
.cart-line {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 0.75rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.cart-thumb img { width: 72px; height: 72px; object-fit: cover; }
.cart-line-info { min-width: 0; }
.cart-line-info h2 { word-break: break-word; }
.mini-line {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 0.55rem;
  align-items: center;
  margin-bottom: 0.75rem;
}
.mini-line img { width: 56px; height: 56px; object-fit: cover; }
.mini-line-info { min-width: 0; }
.mini-line-info strong { display: block; font-size: 0.9rem; margin-bottom: 0.35rem; word-break: break-word; }
.banner-card { max-height: 180px; }
.banner-card img { max-height: 180px; }
.cart-line-info h2 { font-family: var(--font-display); font-size: 1.2rem; margin: 0 0 0.3rem; }
.qty-row { display: flex; gap: 0.75rem; align-items: end; flex-wrap: wrap; }
.link-btn { border: 0; background: none; color: var(--forest); text-decoration: underline; cursor: pointer; padding: 0; }
.cart-summary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.65);
  padding: 1.25rem;
  height: fit-content;
}
.cart-summary h2 { font-family: var(--font-display); color: var(--forest); margin-top: 0; }
.coupon-form { display: grid; gap: 0.6rem; margin-bottom: 1rem; }
.totals { margin: 0; }
.totals > div { display: flex; justify-content: space-between; gap: 1rem; padding: 0.35rem 0; }
.totals .grand { border-top: 1px solid var(--line); margin-top: 0.5rem; padding-top: 0.75rem; font-size: 1.1rem; }
.summary-lines { list-style: none; padding: 0; margin: 0 0 1rem; display: grid; gap: 0.55rem; }
.summary-lines li { display: flex; justify-content: space-between; gap: 0.75rem; font-size: 0.95rem; }
.checkout-form fieldset {
  border: 1px solid var(--line);
  padding: 1rem;
  margin: 0 0 1rem;
  background: rgba(255, 255, 255, 0.5);
}
.checkout-form legend { font-family: var(--font-display); color: var(--forest); padding: 0 0.35rem; }
.checkout-form label, .contact-form label { display: grid; gap: 0.35rem; margin-bottom: 0.85rem; }
.grid-2 { display: grid; gap: 0.85rem; }
.success-box { text-align: center; padding: 3rem 0; }
.success-box h1 { font-family: var(--font-display); color: var(--forest); font-size: clamp(2rem, 4vw, 3rem); }

.article-hero { width: 100%; aspect-ratio: 16/8; object-fit: cover; margin-bottom: 1.5rem; }
.toc {
  border: 1px solid var(--line);
  padding: 1rem 1.2rem;
  margin: 1.25rem 0;
  background: rgba(255, 255, 255, 0.55);
}
.toc h2 { font-family: var(--font-display); font-size: 1.25rem; margin: 0 0 0.5rem; color: var(--forest); }
.faq-block details {
  border-top: 1px solid var(--line);
  padding: 0.9rem 0;
}
.faq-block summary { cursor: pointer; font-weight: 600; color: var(--forest); }
.contact-list { list-style: none; padding: 0; display: grid; gap: 0.75rem; }

.site-footer {
  margin-top: 2rem;
  padding: 3.5rem 0 6rem;
  background: var(--forest-deep);
  color: rgba(250, 248, 245, 0.9);
}
.footer-grid {
  display: grid;
  gap: 2rem;
}
.footer-grid h3 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1.3rem;
  margin: 0 0 0.75rem;
}
.footer-grid a { display: block; margin: 0.35rem 0; opacity: 0.85; }
.footer-grid a:hover { opacity: 1; color: var(--gold); }
.brand-footer .brand-text { color: #fff; }
.footer-tagline, .footer-contact { opacity: 0.85; }
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
  opacity: 0.75;
}

.mobile-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(250, 248, 245, 0.97);
  border-top: 1px solid var(--line);
  padding: 0.45rem 0 calc(0.45rem + env(safe-area-inset-bottom));
}
.mobile-sticky a {
  text-align: center;
  font-size: 0.78rem;
  padding: 0.45rem 0.2rem;
  opacity: 0.75;
}
.mobile-sticky a.active { opacity: 1; color: var(--forest); font-weight: 600; }

.wa-widget {
  position: fixed;
  right: 1rem;
  bottom: calc(78px + 0.75rem);
  z-index: 46;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}
.wa-float {
  position: relative;
  border: 0;
  padding: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 600;
}
.wa-float-inner {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #25D366;
  padding: 0.8rem 1.05rem;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
  animation: waBob 2.8s ease-in-out infinite;
  max-width: min(100vw - 2rem, 260px);
  white-space: nowrap;
}
.wa-float:hover .wa-float-inner,
.wa-widget.is-open .wa-float-inner {
  background: #1ebe57;
  transform: scale(1.04);
}
.wa-float-ping {
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.35);
  animation: waPing 2s ease-out infinite;
  z-index: 1;
}
.wa-float-ping.delay { animation-delay: 0.7s; }
.wa-panel {
  width: min(320px, calc(100vw - 2rem));
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(18, 38, 31, 0.22);
  border: 1px solid rgba(26, 26, 26, 0.08);
  transform-origin: bottom right;
  animation: waPanelIn 0.28s ease;
}
.wa-panel[hidden] { display: none !important; }
@keyframes waPanelIn {
  from { opacity: 0; transform: translateY(12px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.wa-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  background: #075E54;
  color: #fff;
}
.wa-panel-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}
.wa-panel-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #25D366;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.wa-panel-brand strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.2;
}
.wa-panel-brand span {
  display: block;
  font-size: 0.75rem;
  opacity: 0.85;
}
.wa-panel-close {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.15rem 0.35rem;
  opacity: 0.9;
}
.wa-panel-body {
  padding: 1rem;
  background: #ece5dd;
  display: grid;
  gap: 0.85rem;
}
.wa-bubble {
  background: #fff;
  border-radius: 0 12px 12px 12px;
  padding: 0.85rem 0.95rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #1a1a1a;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  max-width: 92%;
}
.wa-panel-cta {
  display: flex;
  justify-content: center;
  width: 100%;
  text-align: center;
  font-weight: 700;
}
@keyframes waPing {
  0% { transform: scale(0.9); opacity: 0.7; }
  100% { transform: scale(1.55); opacity: 0; }
}
@keyframes waBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.cookie-bar {
  display: none !important;
}
.cookie-bar[hidden] {
  display: none !important;
}
.cookie-bar p { margin: 0; font-size: 0.92rem; }

@media (min-width: 768px) {
  .nav-desktop { display: flex; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .banner-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .how-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-strip-item { width: 110px; }
  .cat-strip-img { width: 84px; height: 84px; }
  .review-card-pro { flex-basis: min(380px, 42vw); }
  .product-layout, .cart-layout, .checkout-layout, .contact-layout { grid-template-columns: 1.1fr 0.9fr; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .sticky-atc { bottom: 0; }
  .wa-widget { bottom: 1.25rem; }
  .cookie-bar { bottom: 1.25rem; left: 50%; right: auto; transform: translateX(-50%); width: min(720px, calc(100% - 2rem)); }
  body { padding-bottom: 0; }
  .mobile-sticky { display: none; }
  .site-footer { padding-bottom: 2.5rem; }
}

@media (min-width: 1024px) {
  .cat-grid { grid-template-columns: repeat(4, 1fr); }
  .product-grid { grid-template-columns: repeat(4, 1fr); }
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1200px) {
  .hero-stage {
    aspect-ratio: 21 / 8;
  }
}

/* Tablet */
@media (max-width: 1024px) and (min-width: 701px) {
  .hero-stage {
    aspect-ratio: 16 / 7;
  }
}

/* Mobil — kare-altı dikey oran, görsel tam oturur */
@media (max-width: 700px) {
  .hero-stage {
    aspect-ratio: 4 / 5;
    min-height: 340px;
  }
  @supports (aspect-ratio: 4 / 5) {
    .hero-stage { min-height: unset; }
  }
  .hero-slide-photo {
    object-position: center 20%;
  }
  .hero-slide-bg {
    object-position: center 20%;
    filter: blur(18px) brightness(0.48) saturate(1.1);
  }
  .hero-toolbar {
    padding: 2rem 1rem 0.85rem;
  }
}

/* ── Accessibility: reduce motion ─────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-slide { transition: none; }
  .wa-float-inner { animation: none; }
  .wa-float-ping { animation: none; }
  .btn-pulse { animation: none; }
  .btn-wa-glow { animation: none; }
  .express-badge { animation: none; }
  .g-badge { animation: none; }
}

/* ── Print styles ──────────────────────────────────────────────── */
@media print {
  .site-header, .mini-cart, .overlay, .mobile-sticky,
  .wa-widget, .sticky-atc, .cat-strip { display: none !important; }
  body { background: #fff; color: #000; padding: 0; }
  a::after { content: " (" attr(href) ")"; font-size: .8em; opacity: .6; }
}

/* ── Focus-visible for keyboard nav ───────────────────────────── */
:focus-visible {
  outline: 2px solid var(--forest);
  outline-offset: 2px;
}
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--forest);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── Content visibility for off-screen sections (perf) ────────── */
.section, .reviews-section, .express-strip, .site-footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 400px;
}
.site-header, .hero, .hero-designed {
  content-visibility: visible;
}
