/* ==========================================================================
   ANOR Aksesuar — ana stil dosyası
   1. Değişkenler / temel      5. Ürün kartı & ızgara
   2. Tipografi & yardımcılar  6. Ürün detay
   3. Başlık, menü, çekmece    7. Sayfalar (iletişim, hakkımızda, sepet)
   4. Ana sayfa blokları       8. Alt bilgi & responsive
   ========================================================================== */

/* 1. DEĞİŞKENLER ---------------------------------------------------------- */
:root {
  --ivory:        #F7F2EA;
  --ivory-soft:   #FDFBF7;
  --tint:         #F1E9DD;
  --tint-2:       #EDE3D5;
  --ink:          #211A14;
  --ink-2:        #4B3E33;
  --muted:        #8C7C6C;
  --line:         #E3D9C9;
  --line-soft:    #EFE7DA;
  --gold:         #A8854F;
  --gold-soft:    #C9AE85;
  --wa:           #1FA855;
  --wa-dark:      #178B45;
  --danger:       #9C4A3C;

  --font-display: "Jost", "Futura", "Avenir Next", "Segoe UI", sans-serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  --wrap:         1320px;
  --radius:       2px;
  --shadow-sm:    0 1px 2px rgba(33, 26, 20, .05);
  --shadow:       0 18px 44px -28px rgba(33, 26, 20, .38);
  --ease:         cubic-bezier(.22, .61, .36, 1);
  --header-h:     116px;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink-2);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 400;
  letter-spacing: .005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

img, svg, iframe { max-width: 100%; display: block; }
img { height: auto; }

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

button, input, select, textarea { font: inherit; color: inherit; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

::selection { background: var(--gold-soft); color: #fff; }

/* 2. TİPOGRAFİ & YARDIMCILAR --------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -.01em;
  line-height: 1.18;
  margin: 0 0 .5em;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 500; color: var(--ink); }

.container {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 28px;
}
.container.narrow { max-width: 860px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 50%; top: -60px; transform: translateX(-50%);
  background: var(--ink); color: var(--ivory); padding: 10px 20px; z-index: 200;
  font-size: 13px; transition: top .2s var(--ease);
}
.skip-link:focus { top: 8px; }

.eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .26em;
  color: var(--gold);
  margin: 0 0 14px;
  font-weight: 400;
}

.section { padding: 84px 0; }
.section--tint { background: var(--tint); }
.section--top { padding-top: 46px; }

.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  column-gap: 24px;
  margin-bottom: 38px;
}
.section-head .eyebrow { grid-column: 1; grid-row: 1; }
.section-head .section-title { grid-column: 1; grid-row: 2; }
.section-head .section-link { grid-column: 2; grid-row: 2; justify-self: end; }
.section-head--center {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}
.section-head--center .section-title { grid-column: 1; }

.section-title {
  font-size: clamp(26px, 3.4vw, 40px);
  margin: 0;
  font-weight: 300;
}
.section-title--sm { font-size: clamp(21px, 2.4vw, 27px); margin-bottom: .6em; }

.section-link {
  font-family: var(--font-display);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--ink);
  padding-bottom: 3px;
  border-bottom: 1px solid var(--line);
  transition: border-color .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.section-link:hover { border-color: var(--ink); color: var(--gold); }

.rich-text { color: var(--ink-2); }
.rich-text h2 {
  font-size: 22px;
  margin: 2em 0 .6em;
  padding-top: 1.1em;
  border-top: 1px solid var(--line);
}
.rich-text h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.rich-text a { color: var(--gold); border-bottom: 1px solid var(--gold-soft); }
.rich-text a:hover { color: var(--ink); border-color: var(--ink); }

/* Butonlar */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 30px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: none;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .16em;
  line-height: 1;
  cursor: pointer;
  transition: background-color .28s var(--ease), color .28s var(--ease),
              border-color .28s var(--ease), transform .28s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--dark { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.btn--dark:hover { background: #100c09; border-color: #100c09; }
.btn--ghost { border-color: var(--ink); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--ivory); }
.btn--wa { background: var(--wa); color: #fff; border-color: var(--wa); }
.btn--wa:hover { background: var(--wa-dark); border-color: var(--wa-dark); }
.btn--sm { padding: 11px 20px; font-size: 11px; }
.btn--lg { padding: 17px 34px; font-size: 12.5px; }
.btn--block { display: flex; width: 100%; }
.wa-ico { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.4; }

/* Rozetler */
.badge-tag {
  display: inline-block;
  padding: 5px 10px;
  background: var(--ivory-soft);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
  border: 1px solid var(--line);
}
.badge-tag--new { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.badge-tag--sale { background: var(--gold); color: #fff; border-color: var(--gold); }

/* 3. BAŞLIK / MENÜ -------------------------------------------------------- */
.announce {
  background: var(--ink);
  color: #E8DFD2;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.announce__track { position: relative; width: 100%; height: 100%; }
.announce__item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: .22em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
  padding-inline: 16px;
  text-align: center;
}
.announce__item.is-active { opacity: 1; transform: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--ivory);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .3s var(--ease);
}
.site-header.is-stuck { box-shadow: 0 10px 30px -24px rgba(33, 26, 20, .5); }

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  max-width: var(--wrap);
  margin-inline: auto;
  padding: 16px 28px;
}
.header-side { display: flex; align-items: center; gap: 4px; }
.header-side--right { justify-content: flex-end; }
.header-center { display: flex; justify-content: center; }

.brand { display: flex; flex-direction: column; align-items: center; line-height: 1; }
.brand__mark {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 300;
  letter-spacing: .38em;
  text-indent: .38em;
  color: var(--ink);
}
.brand__sub {
  margin-top: 7px;
  font-family: var(--font-display);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .42em;
  text-indent: .42em;
  color: var(--muted);
}

.icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 42px;
  height: 42px;
  border: 0;
  background: none;
  cursor: pointer;
  color: var(--ink);
  border-radius: 50%;
  transition: background-color .25s var(--ease), color .25s var(--ease);
}
.icon-btn:hover { background: rgba(168, 133, 79, .1); color: var(--gold); }
.icon-btn svg {
  width: 21px; height: 21px;
  fill: none; stroke: currentColor;
  stroke-width: 1.25; stroke-linecap: round; stroke-linejoin: round;
}
.menu-btn { width: auto; padding-inline: 10px; border-radius: var(--radius); }
.icon-btn__label {
  font-family: var(--font-display);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .18em;
}

.badge {
  position: absolute;
  top: 4px; right: 2px;
  min-width: 17px; height: 17px;
  padding: 0 4px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold);
  color: #fff;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 10px;
  line-height: 1;
}
.badge[hidden] { display: none; }

.account-wrap { position: relative; }
.account-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 200px;
  background: var(--ivory-soft);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 14px 0;
  z-index: 95;
}
.account-menu__title {
  margin: 0 18px 8px;
  font-family: var(--font-display);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--muted);
}
.account-menu a {
  display: block;
  padding: 9px 18px;
  font-size: 13.5px;
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.account-menu a:hover { background: var(--tint); color: var(--ink); }

/* Kategori şeridi */
.catnav { border-top: 1px solid var(--line-soft); }
.catnav__list {
  display: flex;
  justify-content: center;
  gap: 34px;
  margin: 0;
  padding: 0 28px;
  list-style: none;
  max-width: var(--wrap);
  margin-inline: auto;
  overflow-x: auto;
  scrollbar-width: none;
}
.catnav__list::-webkit-scrollbar { display: none; }
.catnav__list a {
  display: inline-block;
  padding: 15px 0;
  font-family: var(--font-display);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--ink-2);
  white-space: nowrap;
  position: relative;
  transition: color .25s var(--ease);
}
.catnav__list a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 10px;
  height: 1px;
  background: var(--gold);
  transition: right .3s var(--ease);
}
.catnav__list a:hover { color: var(--ink); }
.catnav__list a:hover::after, .catnav__list a.is-active::after { right: 0; }
.catnav__list a.is-active { color: var(--ink); }

/* Arama paneli */
.search-panel {
  border-top: 1px solid var(--line-soft);
  background: var(--ivory-soft);
  padding: 22px 28px 20px;
  animation: slideDown .3s var(--ease);
}
@keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

.search-form {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 780px;
  margin-inline: auto;
  position: relative;
}
.search-form__icon {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; fill: none; stroke: var(--muted);
  stroke-width: 1.3; stroke-linecap: round;
}
.search-form input[type="search"] {
  flex: 1;
  padding: 14px 16px 14px 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ivory);
  font-size: 15px;
}
.search-form input[type="search"]:focus { border-color: var(--gold); outline: none; }
.search-form__close {
  border: 0; background: none; cursor: pointer;
  font-size: 26px; line-height: 1; color: var(--muted); padding: 0 4px;
}
.search-suggest {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  max-width: 780px; margin: 14px auto 0;
  font-size: 12.5px; color: var(--muted);
}
.search-suggest a {
  padding: 4px 12px; border: 1px solid var(--line); border-radius: 999px;
  transition: all .25s var(--ease);
}
.search-suggest a:hover { background: var(--ink); color: var(--ivory); border-color: var(--ink); }

/* Çekmeceler */
.drawer {
  position: fixed;
  top: 0; bottom: 0;
  width: min(400px, 88vw);
  background: var(--ivory-soft);
  z-index: 120;
  display: flex;
  flex-direction: column;
  transition: transform .42s var(--ease);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.drawer--left  { left: 0;  transform: translateX(-102%); border-right: 1px solid var(--line); }
.drawer--right { right: 0; transform: translateX(102%);  border-left: 1px solid var(--line); }
.drawer.is-open { transform: none; }

.drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 26px 18px;
  border-bottom: 1px solid var(--line-soft);
  position: sticky; top: 0; background: var(--ivory-soft); z-index: 2;
}
.drawer__title {
  font-family: var(--font-display);
  font-size: 12px; text-transform: uppercase; letter-spacing: .24em; color: var(--ink);
}
.drawer__close {
  border: 0; background: none; font-size: 28px; line-height: 1;
  color: var(--ink-2); cursor: pointer; padding: 0 4px;
}
.drawer__close:hover { color: var(--gold); }

.drawer__nav { display: flex; flex-direction: column; padding: 14px 26px; }
.drawer__link {
  font-family: var(--font-display);
  font-size: 19px; font-weight: 300; color: var(--ink);
  padding: 12px 0; border-bottom: 1px solid var(--line-soft);
  transition: color .25s var(--ease), padding-left .25s var(--ease);
}
.drawer__link:hover { color: var(--gold); padding-left: 6px; }
.drawer__link.is-active { color: var(--gold); }

.drawer__label {
  margin: 18px 26px 4px;
  font-family: var(--font-display);
  font-size: 10px; text-transform: uppercase; letter-spacing: .24em; color: var(--muted);
}
.drawer__nav--sub { padding-top: 0; }
.drawer__sublink {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; font-size: 14.5px; color: var(--ink-2);
  border-bottom: 1px solid var(--line-soft);
  transition: color .25s var(--ease), padding-left .25s var(--ease);
}
.drawer__sublink span { font-size: 11.5px; color: var(--muted); }
.drawer__sublink:hover { color: var(--ink); padding-left: 6px; }

.drawer__foot { margin-top: auto; padding: 24px 26px 32px; }
.drawer__contact {
  display: block; text-align: center; margin-top: 14px;
  font-family: var(--font-display); font-size: 15px; letter-spacing: .04em; color: var(--ink);
}
.drawer__social {
  display: flex; justify-content: center; gap: 16px; margin-top: 16px;
  font-size: 11px; text-transform: uppercase; letter-spacing: .16em; color: var(--muted);
}
.drawer__social a:hover { color: var(--gold); }

.backdrop {
  position: fixed; inset: 0;
  background: rgba(33, 26, 20, .42);
  backdrop-filter: blur(2px);
  z-index: 110;
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.backdrop.is-visible { opacity: 1; }

/* Sepet çekmecesi içeriği */
.cart-body { padding: 18px 26px; flex: 1; }
.cart-empty { color: var(--muted); font-size: 14px; text-align: center; padding: 40px 0; }

.cart-item {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
}
.cart-item__img { width: 74px; height: 92px; object-fit: cover; background: var(--tint); }
.cart-item__name { font-size: 14px; color: var(--ink); margin: 0 0 4px; line-height: 1.4; }
.cart-item__variant { font-size: 12px; color: var(--muted); margin: 0 0 6px; }
.cart-item__price { font-family: var(--font-display); font-size: 14px; color: var(--ink); margin: 0; }
.cart-item__controls { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.cart-item__qty {
  display: inline-flex; align-items: center; border: 1px solid var(--line);
}
.cart-item__qty button {
  width: 26px; height: 26px; border: 0; background: none; cursor: pointer; color: var(--ink-2);
}
.cart-item__qty span { min-width: 26px; text-align: center; font-size: 13px; }
.cart-item__remove {
  border: 0; background: none; cursor: pointer; font-size: 12px;
  color: var(--muted); text-decoration: underline; padding: 0;
}
.cart-item__remove:hover { color: var(--danger); }

.cart-foot {
  padding: 20px 26px 30px;
  border-top: 1px solid var(--line);
  background: var(--ivory-soft);
  position: sticky; bottom: 0;
}
.cart-total {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--font-display); margin-bottom: 6px;
}
.cart-total span { font-size: 12px; text-transform: uppercase; letter-spacing: .18em; color: var(--muted); }
.cart-total strong { font-size: 21px; font-weight: 400; color: var(--ink); }
.cart-note { font-size: 12px; color: var(--gold); margin: 0 0 14px; }
.cart-foot .btn + .btn { margin-top: 8px; }

/* 4. ANA SAYFA ------------------------------------------------------------ */
.hero { position: relative; overflow: hidden; background: var(--ivory); }
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 55% at 78% 30%, rgba(201, 174, 133, .22), transparent 70%),
    radial-gradient(48% 50% at 8% 90%, rgba(201, 174, 133, .14), transparent 70%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding-block: 74px 86px;
}
.hero__title {
  font-size: clamp(34px, 5.1vw, 62px);
  font-weight: 200;
  line-height: 1.1;
  margin: 0 0 22px;
  letter-spacing: -.015em;
}
.hero__text { max-width: 470px; font-size: 16px; color: var(--ink-2); margin-bottom: 30px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__meta {
  display: flex; flex-wrap: wrap; gap: 26px;
  list-style: none; margin: 38px 0 0; padding: 26px 0 0;
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 11px; text-transform: uppercase; letter-spacing: .18em; color: var(--muted);
}
.hero__visual { position: relative; }
.hero__visual img {
  width: 100%;
  aspect-ratio: 9 / 10;
  object-fit: cover;
  border-radius: 260px 260px var(--radius) var(--radius);
  box-shadow: var(--shadow);
}
.hero__caption {
  position: absolute;
  left: -10px; bottom: 26px;
  background: var(--ivory-soft);
  border: 1px solid var(--line);
  padding: 14px 20px;
  max-width: 260px;
  box-shadow: var(--shadow-sm);
}
.hero__caption span {
  display: block;
  font-family: var(--font-display);
  font-size: 10px; text-transform: uppercase; letter-spacing: .2em; color: var(--gold);
  margin-bottom: 4px;
}
.hero__caption a { font-size: 13.5px; color: var(--ink); }
.hero__caption a:hover { color: var(--gold); }

/* Güven şeridi */
.trust { border-block: 1px solid var(--line-soft); background: var(--ivory-soft); }
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-soft);
}
.trust__item {
  background: var(--ivory-soft);
  padding: 30px 26px;
  text-align: center;
}
.trust__item svg {
  width: 26px; height: 26px; margin: 0 auto 12px;
  fill: none; stroke: var(--gold); stroke-width: 1.1; stroke-linecap: round; stroke-linejoin: round;
}
.trust__item h2 {
  font-size: 13px; text-transform: uppercase; letter-spacing: .16em;
  margin: 0 0 6px; font-weight: 400;
}
.trust__item p { font-size: 12.5px; color: var(--muted); margin: 0; }

/* Kategori kartları */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(178px, 1fr));
  gap: 22px;
}
.cat-card { position: relative; display: block; overflow: hidden; background: var(--tint); }
.cat-card img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  transition: transform .8s var(--ease);
}
.cat-card:hover img { transform: scale(1.05); }
.cat-card__body {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 22px 20px 18px;
  background: linear-gradient(to top, rgba(33, 26, 20, .74), rgba(33, 26, 20, 0));
  color: #fff;
}
.cat-card__name {
  display: block;
  font-family: var(--font-display);
  font-size: 16px; letter-spacing: .1em; text-transform: uppercase;
}
.cat-card__meta { font-size: 11.5px; opacity: .82; }

/* Promo */
.promo { background: var(--tint-2); }
.promo__inner {
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px;
  padding-block: 76px;
}
.promo__visual img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: var(--radius); }
.promo__title { font-size: clamp(27px, 3.4vw, 40px); margin-bottom: .5em; }
.promo__list {
  list-style: none; margin: 20px 0 28px; padding: 0;
  font-size: 14px;
}
.promo__list li { position: relative; padding-left: 22px; margin-bottom: 9px; }
.promo__list li::before {
  content: ""; position: absolute; left: 0; top: 11px;
  width: 11px; height: 1px; background: var(--gold);
}

/* Hikâye */
.story { background: var(--ivory-soft); border-block: 1px solid var(--line-soft); }
.story__inner {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 64px; align-items: center;
  padding-block: 80px;
}
.story__title { font-size: clamp(25px, 3vw, 36px); }
.story__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line-soft); }
.story__stats > div { background: var(--ivory-soft); padding: 26px 20px; text-align: center; }
.story__stats strong {
  display: block; font-family: var(--font-display); font-size: 27px; font-weight: 300; color: var(--ink);
}
.story__stats span {
  font-size: 11px; text-transform: uppercase; letter-spacing: .16em; color: var(--muted);
}

/* Yorumlar */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review {
  margin: 0; padding: 30px 28px;
  background: var(--ivory-soft);
  border: 1px solid var(--line-soft);
}
.review__stars { color: var(--gold); letter-spacing: .22em; font-size: 13px; margin-bottom: 14px; }
.review blockquote { margin: 0 0 18px; font-size: 15px; color: var(--ink-2); font-style: italic; }
.review figcaption strong { display: block; font-weight: 500; font-size: 14px; }
.review figcaption span { font-size: 12px; color: var(--muted); }

/* Instagram */
.insta { padding: 84px 0; background: var(--tint); }
.insta__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.insta__grid a { display: block; overflow: hidden; background: var(--tint-2); }
.insta__grid img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  transition: transform .7s var(--ease), opacity .3s var(--ease);
}
.insta__grid a:hover img { transform: scale(1.07); opacity: .88; }

/* Bülten */
.newsletter { background: var(--ink); color: #E5DBCD; padding: 70px 0; }
.newsletter__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.newsletter .eyebrow { color: var(--gold-soft); }
.newsletter__title { color: var(--ivory); font-size: clamp(23px, 2.8vw, 33px); margin-bottom: .4em; }
.newsletter__text { font-size: 14px; color: #B9AA99; margin: 0; }
.newsletter__form { display: flex; gap: 10px; flex-wrap: wrap; position: relative; }
.newsletter__form input {
  flex: 1; min-width: 220px;
  padding: 15px 18px;
  background: transparent;
  border: 1px solid rgba(233, 222, 208, .26);
  border-radius: var(--radius);
  color: var(--ivory);
}
.newsletter__form input::placeholder { color: #9A8C7C; }
.newsletter__form input:focus { border-color: var(--gold-soft); outline: none; }
.newsletter__form .btn--dark {
  background: var(--ivory); color: var(--ink); border-color: var(--ivory);
}
.newsletter__form .btn--dark:hover { background: var(--gold-soft); border-color: var(--gold-soft); }
.form-msg { width: 100%; margin: 0; font-size: 13px; color: var(--gold-soft); }

/* 5. ÜRÜN KARTI ----------------------------------------------------------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(238px, 1fr));
  gap: 42px 24px;
}

.product-card { position: relative; }
.product-card__media {
  position: relative;
  overflow: hidden;
  background: var(--tint);
  aspect-ratio: 4 / 5;
}
.product-card__media > a { display: block; height: 100%; }
.product-card__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease), opacity .55s var(--ease);
}
.product-card__img--back { opacity: 0; }
.product-card:hover .product-card__img--front { opacity: 0; }
.product-card:hover .product-card__img--back { opacity: 1; transform: scale(1.04); }

.product-card__badges {
  position: absolute; top: 12px; left: 12px;
  display: flex; flex-direction: column; gap: 6px; align-items: flex-start;
  z-index: 2;
}

.fav-btn {
  position: absolute; top: 10px; right: 10px;
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 0; border-radius: 50%;
  background: rgba(253, 251, 247, .9);
  cursor: pointer; color: var(--ink);
  z-index: 2;
  transition: background-color .25s var(--ease), transform .25s var(--ease);
}
.fav-btn svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.3; stroke-linejoin: round; }
.fav-btn:hover { transform: scale(1.08); }
.fav-btn.is-active { color: #B4453A; }
.fav-btn.is-active svg { fill: #B4453A; stroke: #B4453A; }
.fav-btn--lg {
  position: static; width: 52px; height: 52px; flex: 0 0 52px;
  border: 1px solid var(--ink); border-radius: var(--radius); background: transparent;
}

.product-card__add {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 13px 10px;
  border: 0;
  background: rgba(33, 26, 20, .92);
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 11px; text-transform: uppercase; letter-spacing: .16em;
  cursor: pointer;
  transform: translateY(100%);
  transition: transform .35s var(--ease), background-color .25s var(--ease);
  z-index: 2;
}
.product-card:hover .product-card__add, .product-card__add:focus-visible { transform: none; }
.product-card__add:hover { background: #100c09; }

.product-card__body { padding-top: 15px; text-align: center; }
.product-card__cat {
  font-family: var(--font-display);
  font-size: 10px; text-transform: uppercase; letter-spacing: .2em;
  color: var(--muted); margin: 0 0 7px;
}
.product-card__title {
  font-size: 15.5px; font-weight: 400; margin: 0 0 8px; line-height: 1.45;
  font-family: var(--font-body);
}
.product-card__title a { color: var(--ink); transition: color .25s var(--ease); }
.product-card__title a:hover { color: var(--gold); }
.product-card__price {
  margin: 0;
  font-family: var(--font-display);
  font-size: 15px;
  display: flex; gap: 9px; justify-content: center; align-items: baseline;
}
.price-old { color: var(--muted); text-decoration: line-through; font-size: 13px; }
.price-now { color: var(--ink); }

/* Araç çubuğu / çipler */
.toolbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; flex-wrap: wrap;
  padding: 14px 0 26px;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 34px;
}
.toolbar__count { margin: 0; font-size: 13px; color: var(--muted); }
.toolbar__count strong { color: var(--ink); }
.toolbar__sort { display: flex; align-items: center; gap: 10px; }
.toolbar__sort label {
  font-family: var(--font-display);
  font-size: 11px; text-transform: uppercase; letter-spacing: .18em; color: var(--muted);
}
select, input[type="text"], input[type="email"], input[type="tel"], input[type="search"], textarea {
  border: 1px solid var(--line);
  background: var(--ivory-soft);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 14px;
  transition: border-color .25s var(--ease);
}
select:focus, input:focus, textarea:focus { border-color: var(--gold); outline: none; }
select { cursor: pointer; }

.chips { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 28px; }
.chip {
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 11.5px; text-transform: uppercase; letter-spacing: .14em;
  color: var(--ink-2);
  transition: all .25s var(--ease);
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.is-active { background: var(--ink); border-color: var(--ink); color: var(--ivory); }

/* Sayfa başlıkları */
.breadcrumb { padding: 18px 0 0; }
.breadcrumb ol {
  display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; padding: 0;
  font-size: 12px; color: var(--muted);
}
.breadcrumb li + li::before { content: "/"; margin-right: 8px; color: var(--line); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--ink-2); }

.page-head { padding: 40px 0 8px; }
.page-title { font-size: clamp(30px, 4.2vw, 48px); font-weight: 200; margin: 0 0 16px; }
.page-lead { max-width: 640px; font-size: 16px; color: var(--ink-2); margin: 0; }

.page-search { display: flex; gap: 10px; margin-top: 26px; max-width: 520px; }
.page-search input { flex: 1; padding: 14px 16px; }

.empty-state { text-align: center; padding: 60px 20px; }
.empty-state__title { font-family: var(--font-display); font-size: 20px; color: var(--ink); margin-bottom: 8px; }
.empty-state__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 22px; }

/* 6. ÜRÜN DETAY ----------------------------------------------------------- */
.product-detail { padding: 34px 0 80px; }
.product-detail__inner { display: grid; grid-template-columns: 1.02fr .98fr; gap: 58px; align-items: start; }

.gallery { position: sticky; top: calc(var(--header-h) + 14px); }
.gallery__main { position: relative; background: var(--tint); overflow: hidden; }
.gallery__main img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.gallery__badge { position: absolute; top: 16px; left: 16px; z-index: 2; }
.gallery__thumbs { display: flex; gap: 10px; margin-top: 10px; overflow-x: auto; scrollbar-width: none; }
.gallery__thumbs::-webkit-scrollbar { display: none; }
.gallery__thumb {
  flex: 0 0 82px; padding: 0; border: 1px solid transparent; background: var(--tint);
  cursor: pointer; transition: border-color .25s var(--ease), opacity .25s var(--ease);
  opacity: .72;
}
.gallery__thumb img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.gallery__thumb.is-active, .gallery__thumb:hover { border-color: var(--gold); opacity: 1; }

.product-info__cat {
  font-family: var(--font-display);
  font-size: 11px; text-transform: uppercase; letter-spacing: .2em; color: var(--gold);
  margin: 0 0 12px;
}
.product-info__title { font-size: clamp(26px, 3.2vw, 38px); font-weight: 300; margin: 0 0 14px; }
.product-info__meta {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: 12.5px; color: var(--muted); margin-bottom: 20px;
}
.stars { color: var(--gold); letter-spacing: .18em; }
.product-info__price {
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
  font-family: var(--font-display);
  font-size: 27px; color: var(--ink); font-weight: 300;
  margin: 0 0 22px; padding-bottom: 22px; border-bottom: 1px solid var(--line-soft);
}
.product-info__price .price-old { font-size: 17px; }
.price-save {
  font-size: 11px; text-transform: uppercase; letter-spacing: .14em;
  background: var(--gold); color: #fff; padding: 5px 10px;
}
.product-info__desc { font-size: 15.5px; margin-bottom: 26px; }

.product-options { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 24px; }
.option { display: flex; flex-direction: column; gap: 8px; }
.option label {
  font-family: var(--font-display);
  font-size: 11px; text-transform: uppercase; letter-spacing: .18em; color: var(--muted);
}
.option select { min-width: 170px; padding: 12px 14px; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: var(--radius); }
.qty__btn {
  width: 42px; height: 44px; border: 0; background: none; cursor: pointer;
  font-size: 17px; color: var(--ink-2);
}
.qty__btn:hover { color: var(--gold); }
.qty input {
  width: 48px; height: 44px; text-align: center; border: 0; background: none;
  -moz-appearance: textfield; font-size: 15px;
}
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.product-actions { display: flex; flex-direction: column; gap: 10px; }
.product-actions__row { display: flex; gap: 10px; align-items: stretch; }
.product-actions__note { font-size: 12.5px; color: var(--muted); margin: 6px 0 0; }

.product-perks {
  list-style: none; margin: 28px 0; padding: 22px 0; border-block: 1px solid var(--line-soft);
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px;
  font-size: 13px; color: var(--ink-2);
}
.product-perks li { position: relative; padding-left: 20px; }
.product-perks li::before {
  content: ""; position: absolute; left: 0; top: 9px; width: 9px; height: 1px; background: var(--gold);
}

.accordion details {
  border-bottom: 1px solid var(--line-soft);
}
.accordion summary {
  list-style: none; cursor: pointer; padding: 16px 0;
  font-family: var(--font-display);
  font-size: 13px; text-transform: uppercase; letter-spacing: .14em; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: "+"; font-size: 18px; color: var(--muted); transition: transform .25s var(--ease);
}
.accordion details[open] summary::after { content: "–"; }
.accordion__body { padding: 0 0 20px; font-size: 14px; }
.accordion--wide summary { font-size: 15px; text-transform: none; letter-spacing: 0; font-weight: 400; }
.accordion--wide { border-top: 1px solid var(--line-soft); }

.spec-list { list-style: none; margin: 0 0 14px; padding: 0; }
.spec-list li {
  display: flex; justify-content: space-between; gap: 18px;
  padding: 8px 0; border-bottom: 1px dashed var(--line-soft); font-size: 13.5px;
}
.spec-list span { color: var(--muted); }
.spec-list strong { font-weight: 400; color: var(--ink); text-align: right; }
.bullet-list { margin: 0; padding-left: 18px; font-size: 13.5px; }
.bullet-list li { margin-bottom: 6px; }

.buybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  display: none; align-items: center; justify-content: space-between; gap: 14px;
  padding: 12px 18px calc(12px + env(safe-area-inset-bottom));
  background: var(--ivory-soft);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px -20px rgba(33, 26, 20, .6);
}
.buybar__info { min-width: 0; display: flex; flex-direction: column; }
.buybar__info strong {
  font-size: 13px; font-weight: 400; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.buybar__info span { font-family: var(--font-display); font-size: 14px; color: var(--ink); }

/* 7. SAYFALAR ------------------------------------------------------------- */
.about-intro { display: grid; grid-template-columns: 1.2fr .8fr; gap: 58px; align-items: start; }
.about-intro__aside img { width: 100%; aspect-ratio: 7 / 8; object-fit: cover; }
.about-facts {
  list-style: none; margin: 18px 0 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line-soft);
}
.about-facts li { background: var(--ivory); padding: 18px 14px; text-align: center; }
.about-facts strong { display: block; font-family: var(--font-display); font-size: 22px; font-weight: 300; color: var(--ink); }
.about-facts span { font-size: 11px; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); }

.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value { background: var(--ivory-soft); border: 1px solid var(--line-soft); padding: 32px 28px; }
.value__num {
  font-family: var(--font-display); font-size: 12px; letter-spacing: .2em; color: var(--gold);
}
.value h3 { font-size: 20px; margin: 10px 0 10px; }
.value p { font-size: 14px; margin: 0; }

.cta-band {
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
  background: var(--tint); padding: 40px 42px;
}
.cta-band p { margin: 0; font-size: 14.5px; }
.cta-band__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-band--inline { margin-top: 48px; background: var(--ivory-soft); border: 1px solid var(--line); }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 52px; align-items: start; }
.contact-cards { display: grid; gap: 14px; }
.contact-card {
  display: block; padding: 22px 24px;
  background: var(--ivory-soft); border: 1px solid var(--line-soft);
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
a.contact-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.contact-card__label {
  display: block; font-family: var(--font-display);
  font-size: 10px; text-transform: uppercase; letter-spacing: .2em; color: var(--muted); margin-bottom: 8px;
}
.contact-card strong { display: block; font-size: 16px; font-weight: 400; color: var(--ink); }
.contact-card__meta { display: block; font-size: 12.5px; color: var(--muted); margin-top: 4px; }
.contact-card--wa { border-color: rgba(31, 168, 85, .35); background: rgba(31, 168, 85, .05); }
.contact-social { display: flex; flex-wrap: wrap; gap: 14px; font-size: 13px; }
.contact-social a { color: var(--ink-2); border-bottom: 1px solid var(--line); }
.contact-social a:hover { color: var(--gold); border-color: var(--gold); }

.contact-form-wrap { background: var(--ivory-soft); border: 1px solid var(--line-soft); padding: 38px 40px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field label {
  font-family: var(--font-display);
  font-size: 11px; text-transform: uppercase; letter-spacing: .16em; color: var(--muted);
}
.field input, .field select, .field textarea { width: 100%; padding: 13px 15px; }
.field textarea { resize: vertical; min-height: 130px; }
.field-hp { position: absolute; left: -9999px; }
.form-foot { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.form-note { font-size: 12px; color: var(--muted); margin-top: 14px; }

.alert { padding: 16px 20px; margin-bottom: 22px; border: 1px solid; font-size: 14px; }
.alert ul { margin: 6px 0 0; padding-left: 18px; }
.alert--ok { border-color: rgba(31, 168, 85, .4); background: rgba(31, 168, 85, .07); color: #14603a; }
.alert--ok a { text-decoration: underline; }
.alert--error { border-color: rgba(156, 74, 60, .4); background: rgba(156, 74, 60, .07); color: #7d3a2f; }

.map-section iframe { width: 100%; height: 420px; filter: grayscale(.35) contrast(.95); }

.cart-page { display: grid; grid-template-columns: 1.4fr .6fr; gap: 42px; align-items: start; }
.cart-page__list .cart-item { grid-template-columns: 96px 1fr auto; }
.cart-page__list .cart-item__img { width: 96px; height: 120px; }
.cart-page__summary {
  background: var(--ivory-soft); border: 1px solid var(--line); padding: 28px 26px;
  position: sticky; top: calc(var(--header-h) + 14px);
}
.cart-page__summary h2 { font-size: 18px; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 18px; }
.summary-list { margin: 0 0 16px; }
.summary-list > div { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--line-soft); }
.summary-list dt { color: var(--muted); font-size: 13.5px; }
.summary-list dd { margin: 0; font-family: var(--font-display); color: var(--ink); }
.summary-perks {
  list-style: none; margin: 20px 0 0; padding: 18px 0 0; border-top: 1px solid var(--line-soft);
  font-size: 12.5px; color: var(--muted);
}
.summary-perks li { padding-left: 16px; position: relative; margin-bottom: 6px; }
.summary-perks li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 1px; background: var(--gold); }
.cart-page__summary .btn + .btn { margin-top: 8px; }

.fav-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 38px; }

.error-page { text-align: center; padding: 40px 0 20px; }
.error-page .page-lead { margin-inline: auto; }
.error-page .page-search { margin-inline: auto; }

/* 8. ALT BİLGİ ------------------------------------------------------------ */
.site-footer { background: var(--ink); color: #C8BAAA; padding: 72px 0 0; font-size: 14px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr;
  gap: 42px;
  padding-bottom: 54px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { transition: color .25s var(--ease); }
.footer-col a:hover { color: var(--ivory); }
.footer-title {
  font-size: 11px; text-transform: uppercase; letter-spacing: .2em;
  color: var(--ivory); margin-bottom: 18px; font-weight: 400;
}
.brand--footer { align-items: flex-start; margin-bottom: 18px; }
.brand--footer .brand__mark { color: var(--ivory); font-size: 26px; }
.brand--footer .brand__sub { color: var(--gold-soft); }
.footer-about { font-size: 13.5px; line-height: 1.8; max-width: 330px; color: #B0A091; }
.footer-social { display: flex; gap: 16px; margin-top: 18px; font-size: 11px; text-transform: uppercase; letter-spacing: .16em; }
.footer-contact li { line-height: 1.7; }
.footer-hours { color: #9A8B7C; font-size: 12.5px; }

.footer-bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding: 22px 28px 30px;
  border-top: 1px solid rgba(233, 222, 208, .13);
  font-size: 12px; color: #9A8B7C;
}
.footer-bottom p { margin: 0; }

.wa-float {
  position: fixed; right: 20px; bottom: 22px; z-index: 70;
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--wa); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px -10px rgba(31, 168, 85, .8);
  transition: transform .3s var(--ease), background-color .25s var(--ease);
}
.wa-float:hover { transform: scale(1.07); background: var(--wa-dark); }
.wa-float svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.3; }

.toast {
  position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 16px);
  background: var(--ink); color: var(--ivory);
  padding: 13px 24px; border-radius: var(--radius);
  font-size: 13.5px; z-index: 200;
  opacity: 0; transition: opacity .3s var(--ease), transform .3s var(--ease);
  box-shadow: var(--shadow);
  max-width: min(92vw, 420px);
  text-align: center;
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

/* 9. RESPONSIVE ----------------------------------------------------------- */
@media (max-width: 1180px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
  .footer-col--brand { grid-column: 1 / -1; }
}

@media (max-width: 1024px) {
  .section { padding: 66px 0; }
  .hero__inner { gap: 40px; padding-block: 54px 64px; }
  .promo__inner, .story__inner, .about-intro, .contact-grid { gap: 40px; }
  .product-detail__inner { grid-template-columns: 1fr; gap: 36px; }
  .gallery { position: static; }
  .gallery__main img { aspect-ratio: 1 / 1; }
  .cart-page { grid-template-columns: 1fr; }
  .cart-page__summary { position: static; }
  .insta__grid { grid-template-columns: repeat(3, 1fr); }
  .reviews { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  :root { --header-h: 100px; }
  .container { padding-inline: 20px; }
  .header-inner { padding: 12px 20px; }
  .icon-btn__label, .hide-sm { display: none; }
  .menu-btn { width: 42px; padding: 0; }
  .brand__mark { font-size: 24px; letter-spacing: .3em; text-indent: .3em; }
  .brand__sub { font-size: 8px; letter-spacing: .34em; text-indent: .34em; }
  .catnav__list { gap: 24px; justify-content: flex-start; padding-inline: 20px; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 420px; }
  .hero__caption { display: none; }
  .hero__meta { gap: 18px; font-size: 10px; }
  .promo__inner, .story__inner, .about-intro, .contact-grid, .newsletter__inner { grid-template-columns: 1fr; }
  .promo__visual { max-width: 420px; }
  .trust__grid { grid-template-columns: 1fr 1fr; }
  .contact-form-wrap { padding: 28px 22px; }
  .product-card__add { transform: none; position: static; width: 100%; background: transparent; color: var(--ink); border-top: 1px solid var(--line); }
  .product-card__add:hover { background: var(--ink); color: var(--ivory); }
  .product-detail { padding-bottom: 110px; }
  .buybar { display: flex; }
  .wa-float { bottom: 90px; width: 48px; height: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .header-inner { padding: 10px 14px; gap: 6px; }
  .icon-btn { width: 36px; height: 36px; }
  .icon-btn svg { width: 19px; height: 19px; }
  .menu-btn { width: 36px; }
  .badge { min-width: 15px; height: 15px; font-size: 9px; top: 1px; right: -1px; }
  .brand__mark { font-size: 21px; letter-spacing: .24em; text-indent: .24em; }
  .account-menu { right: -46px; }
  .section { padding: 52px 0; }
  .section-head { margin-bottom: 26px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 14px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .product-card__title { font-size: 14px; }
  .product-card__price { font-size: 14px; }
  .fav-btn { width: 34px; height: 34px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .product-perks { grid-template-columns: 1fr; }
  .cta-band { padding: 28px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 6px; }
  .insta__grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .story__stats, .about-facts { grid-template-columns: 1fr 1fr; }
  .toolbar { padding-bottom: 18px; margin-bottom: 24px; }
  .page-head { padding-top: 26px; }
  .product-options { gap: 14px; }
  .option select { min-width: 140px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

@media print {
  .site-header, .announce, .site-footer, .wa-float, .buybar, .drawer, .backdrop, .newsletter { display: none !important; }
  body { background: #fff; color: #000; }
}
