/* =========================================================
   LIANY — ANASAYFA
   Tasarım sistemi: DESIGN.md (Atelier Loungewear & Couture)
   - Sıcak fildişi zemin, obsidyen siyah vurgu, taş rengi ince çizgiler
   - Bodoni Moda (başlık) + Inter (gövde)
   - Keskin 0px köşeler, gölge yerine ton katmanları
   ========================================================= */

:root {
  /* Renkler */
  --surface: #faf9f6;
  --surface-white: #ffffff;
  --surface-low: #f4f3f1;
  --surface-container: #efeeeb;
  --surface-high: #e9e8e5;
  --on-surface: #1a1c1a;
  --on-surface-variant: #444748;
  --primary: #111111;
  --primary-hover: #2b2d31;
  --on-primary: #ffffff;
  --muted: #6e7072;
  --stone: #e5e3dc;
  --error: #ba1a1a;
  --slate: #668eb6;

  /* Tipografi */
  --font-display: 'Bodoni Moda', 'Didot', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Boşluklar */
  --space-xs: 0.375rem;
  --space-sm: 0.75rem;
  --space-md: 1.25rem;
  --space-lg: 2.25rem;
  --space-xl: 4rem;
  --gutter: 1.5rem;
  --margin: 1.25rem;

  --header-h: 4.5rem;
  --announce-h: 2rem;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 768px) {
  :root { --margin: 2.5rem; --gutter: 1.5rem; --header-h: 5rem; }
}
@media (min-width: 1200px) {
  :root { --margin: 4.5rem; --gutter: 2rem; }
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background: var(--surface);
  color: var(--on-surface);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 22px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; }
::selection { background: var(--primary); color: var(--on-primary); }

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
  font-size: 20px;
  line-height: 1;
  user-select: none;
}

.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; top: -100%; left: var(--margin); z-index: 100;
  background: var(--primary); color: var(--on-primary);
  padding: 0.5rem 1rem; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
}
.skip-link:focus { top: 0.5rem; }

/* ---------- Yardımcılar ---------- */
.container { padding-left: var(--margin); padding-right: var(--margin); }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--on-surface-variant);
}
.eyebrow--light { color: rgba(255, 255, 255, 0.9); }

.headline-lg {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  line-height: 34px;
  letter-spacing: 0;
  color: var(--on-surface);
}
@media (min-width: 768px) {
  .headline-lg { font-size: 36px; line-height: 44px; letter-spacing: -0.01em; }
}

.section { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }
.section--tinted { background: var(--surface-low); }

.section-head { margin-bottom: var(--space-lg); }
.section-head .eyebrow { margin-bottom: 0.35rem; }
.section-head--split {
  display: flex; flex-direction: column; gap: 1rem;
}
.section-head--center { text-align: center; max-width: 36rem; margin-left: auto; margin-right: auto; }
@media (min-width: 768px) {
  .section-head--split { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 48px; padding: 0 1.75rem;
  font-family: var(--font-body); font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; line-height: 1;
  border: 1px solid transparent; border-radius: 0;
  transition: background-color 250ms ease, color 250ms ease, border-color 250ms ease;
  white-space: nowrap;
}
.btn--primary { background: var(--primary); color: var(--on-primary); border-color: var(--primary); }
.btn--primary:hover { background: var(--primary-hover); border-color: var(--primary-hover); }
.btn--ghost {
  background: rgba(255, 255, 255, 0.1); color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: #fff; color: var(--primary); border-color: #fff; }
.btn--block { width: 100%; height: 42px; }
.btn--compact { height: 40px; padding: 0 1.25rem; }
.btn:focus-visible, .action-link:focus-visible, .icon-btn:focus-visible,
.text-link:focus-visible, .product__wish:focus-visible, .category:focus-visible {
  outline: 2px solid var(--primary); outline-offset: 3px;
}

.text-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--on-surface); transition: color 200ms ease;
}
.text-link .material-symbols-outlined { font-size: 18px; transition: transform 200ms ease; }
.text-link:hover { color: var(--primary-hover); }
.text-link:hover .material-symbols-outlined { transform: translateX(4px); }
.text-link--underline { padding-bottom: 4px; border-bottom: 1px solid var(--primary); }

.input {
  width: 100%; height: 48px; padding: 0 1rem;
  font-family: var(--font-body); font-size: 14px; color: var(--on-surface);
  background: var(--surface); border: 1px solid var(--stone); border-radius: 0;
  transition: border-color 200ms ease;
}
.input::placeholder { color: var(--muted); }
.input:focus { outline: none; border-color: var(--primary); }
.input--compact { height: 40px; background: var(--surface-white); }
.input[aria-invalid="true"] { border-color: var(--error); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(250, 249, 246, 0.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 250ms ease, box-shadow 250ms ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--stone);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}

.announcement {
  height: var(--announce-h);
  display: flex; align-items: center; justify-content: center;
  padding: 0 var(--margin);
  background: #1c1b1b; color: var(--on-primary);
  font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  text-align: center; overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
}
.announcement strong { font-weight: 600; }

.header-bar {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.header-left { display: flex; align-items: center; gap: var(--space-md); min-width: 0; }

.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; margin-left: -8px;
  color: var(--on-surface-variant); transition: color 200ms ease;
}
.icon-btn:hover { color: var(--on-surface); }
.icon-btn .material-symbols-outlined { font-size: 24px; }
.nav-toggle { display: inline-flex; }

.brand { display: inline-flex; align-items: center; flex: none; }
.brand-logo { height: 34px; width: auto; }
.brand-name {
  font-family: var(--font-display); font-size: 18px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--on-surface);
}
.brand:hover .brand-logo { opacity: 0.8; }
.brand-logo { transition: opacity 200ms ease; }

.primary-nav { display: none; align-items: center; gap: var(--space-md); margin-left: var(--space-sm); min-width: 0; }
.primary-nav a {
  position: relative; padding: 4px 0;
  font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--on-surface-variant); transition: color 200ms ease; white-space: nowrap;
}
.primary-nav a::after {
  content: ''; position: absolute; left: 50%; right: 50%; bottom: 0;
  height: 1px; background: var(--primary); transition: left 250ms var(--ease-out), right 250ms var(--ease-out);
}
.primary-nav a:hover { color: var(--on-surface); }
.primary-nav a:hover::after { left: 0; right: 0; }

.header-actions { display: flex; align-items: center; gap: var(--space-sm); flex: none; }
.action-link {
  position: relative;
  display: inline-flex; align-items: center; gap: 0.375rem; padding: 4px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--on-surface-variant); transition: color 200ms ease; white-space: nowrap;
}
.action-link:hover { color: var(--on-surface); }
.action-label { display: none; }
.action-badge {
  position: absolute; top: -2px; right: -4px;
  min-width: 16px; height: 16px; padding: 0 4px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--primary); color: var(--on-primary);
  font-size: 9px; font-weight: 600; letter-spacing: 0; line-height: 1;
}
.action-badge[hidden] { display: none; }

/* Etiketler: menü gizliyken (1024–1279) ve geniş ekranda (≥1536) görünür */
@media (min-width: 1024px) and (max-width: 1279px), (min-width: 1536px) {
  .action-label { display: inline; }
  .action-badge { display: none !important; }
  .header-actions { gap: var(--space-md); }
}
@media (min-width: 1280px) {
  .primary-nav { display: flex; }
  .nav-toggle { display: none; }
}

/* ---------- Mobil çekmece ---------- */
.drawer-backdrop {
  position: fixed; inset: 0; z-index: 60;
  background: rgba(17, 17, 17, 0.4);
  opacity: 0; transition: opacity 250ms ease;
}
.drawer-backdrop[hidden] { display: none; }
.drawer-backdrop.is-open { opacity: 1; }

.mobile-nav {
  position: fixed; top: 0; bottom: 0; left: 0; z-index: 70;
  width: min(85vw, 340px);
  display: flex; flex-direction: column;
  background: var(--surface-white); border-right: 1px solid var(--stone);
  transform: translateX(-100%); transition: transform 300ms var(--ease-out);
  overflow-y: auto;
}
.mobile-nav[hidden] { display: none; }
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav__head {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); padding: 0 var(--space-md);
  border-bottom: 1px solid var(--stone);
}
.mobile-nav__head .icon-btn { margin: 0 -8px 0 0; }
.mobile-nav > a {
  padding: 1rem var(--space-md);
  font-family: var(--font-display); font-size: 20px; letter-spacing: 0.02em;
  border-bottom: 1px solid var(--stone);
  transition: background-color 200ms ease;
}
.mobile-nav > a:hover { background: var(--surface-low); }
.mobile-nav__foot {
  margin-top: auto; padding: var(--space-md);
  display: flex; flex-direction: column; gap: 0.75rem;
  background: var(--surface-low);
}
.mobile-nav__foot a {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--on-surface-variant);
}
body.nav-open { overflow: hidden; }

/* =========================================================
   MAIN
   ========================================================= */
main { padding-top: calc(var(--header-h) + var(--announce-h)); }

/* ---------- 1. Hero ---------- */
.hero {
  position: relative; width: 100%; overflow: hidden;
  height: 78vh; min-height: 560px; max-height: 880px;
  background: var(--surface-high);
}
.hero__image {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: saturate(0.9) brightness(0.97);
  animation: heroReveal 1.8s var(--ease-out) both;
}
.hero__scrim {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; justify-content: center;
  padding: 0 var(--margin) var(--space-xl);
  background: linear-gradient(to top, rgba(17, 17, 17, 0.72) 0%, rgba(17, 17, 17, 0.2) 45%, transparent 100%);
  color: #fff; text-align: center;
}
.hero__content {
  max-width: 56rem;
  animation: fadeUp 1.4s var(--ease-out) 0.2s both;
}
.hero__content .eyebrow { margin-bottom: var(--space-xs); letter-spacing: 0.25em; }
.hero__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: 36px; line-height: 44px; letter-spacing: -0.01em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}
.hero__lead {
  max-width: 42rem; margin: var(--space-sm) auto var(--space-lg);
  font-size: 16px; line-height: 26px; font-weight: 300; letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.9);
}
.hero__cta { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-md); }
@media (min-width: 768px) {
  .hero__title { font-size: 56px; line-height: 64px; letter-spacing: -0.02em; }
}

/* ---------- 2. Şerit ---------- */
.strip {
  background: var(--surface-container);
  border-bottom: 1px solid rgba(229, 227, 220, 0.6);
  padding: var(--space-sm) 0;
}
.strip__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.75rem 1.5rem;
}
.strip__item {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--on-surface-variant);
}
.strip__item::before { content: ''; width: 6px; height: 6px; background: var(--primary); border-radius: 50%; flex: none; }
.strip__item--md, .strip__item--lg { display: none; }
@media (min-width: 768px) { .strip__item--md { display: inline-flex; } }
@media (min-width: 1024px) { .strip__item--lg { display: inline-flex; } }

/* ---------- 3. Ürün kartları ---------- */
.product-grid {
  display: grid; grid-template-columns: 1fr;
  column-gap: var(--gutter); row-gap: var(--space-xl);
}
@media (min-width: 640px) { .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.product { display: flex; flex-direction: column; cursor: pointer; min-width: 0; }
.product__media {
  position: relative; width: 100%; aspect-ratio: 3 / 4;
  background: var(--surface-container); overflow: hidden; margin-bottom: var(--space-sm);
}
.product__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
  transition: transform 700ms var(--ease-out);
}
.product:hover .product__media img { transform: scale(1.05); }

.product__badge {
  position: absolute; top: 1rem; left: 1rem;
  padding: 0.25rem 0.625rem;
  background: rgba(250, 249, 246, 0.9); backdrop-filter: blur(4px);
  font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--on-surface);
}
.product__wish {
  position: absolute; top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(250, 249, 246, 0.85); backdrop-filter: blur(4px);
  color: var(--on-surface); transition: background-color 200ms ease, color 200ms ease;
}
.product__wish .material-symbols-outlined { font-size: 19px; }
.product__wish:hover { background: var(--surface); color: var(--error); }
.product__wish[aria-pressed="true"] { color: var(--error); }
.product__wish[aria-pressed="true"] .material-symbols-outlined { font-variation-settings: 'FILL' 1, 'wght' 300; }

.product__quick {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 0.75rem;
  background: linear-gradient(to top, rgba(17, 17, 17, 0.6), transparent);
  opacity: 0; transform: translateY(6px);
  transition: opacity 300ms ease, transform 300ms var(--ease-out);
}
.product:hover .product__quick,
.product:focus-within .product__quick { opacity: 1; transform: translateY(0); }
@media (hover: none) {
  .product__quick { opacity: 1; transform: none; }
}

.product__category {
  font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.25rem;
}
.product__title {
  font-family: var(--font-body); font-size: 14px; font-weight: 500; line-height: 22px;
  color: var(--on-surface); margin-bottom: 0.25rem;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  transition: color 200ms ease;
}
.product__price { font-size: 13px; font-weight: 600; letter-spacing: 0.02em; font-variant-numeric: tabular-nums; margin-bottom: 0.5rem; }

.swatches { display: flex; align-items: center; gap: 0.375rem; margin-top: auto; padding-top: 0.25rem; }
.swatch {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--c); border: 1px solid var(--stone);
}

/* ---------- 4. Hikâye ---------- */
.story { display: grid; grid-template-columns: 1fr; gap: var(--gutter); align-items: center; }
.story__media { position: relative; }
.story__frame { width: 100%; aspect-ratio: 4 / 5; overflow: hidden; background: var(--surface-container); }
.story__frame img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.95); }
.story__tag {
  display: none; position: absolute; right: 1.5rem; bottom: -1.5rem;
  max-width: 20rem; padding: var(--space-md);
  background: var(--surface); box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--stone);
}
.story__tag .eyebrow { margin-bottom: 0.25rem; letter-spacing: 0.2em; }
.story__tag p { font-family: var(--font-display); font-style: italic; font-size: 13px; line-height: 20px; }
.story__body { display: flex; flex-direction: column; justify-content: center; margin-top: var(--space-lg); }
.story__body .eyebrow { margin-bottom: 0.5rem; letter-spacing: 0.25em; }
.story__body .headline-lg { margin-bottom: var(--space-sm); }
.story__text { font-size: 16px; line-height: 26px; font-weight: 300; color: var(--on-surface-variant); margin-bottom: var(--space-md); }
.highlights { margin-bottom: var(--space-lg); }
.highlights li {
  display: flex; align-items: center; gap: var(--space-sm);
  padding: 0.6rem 0; border-bottom: 1px solid rgba(229, 227, 220, 0.8);
  font-size: 14px; font-weight: 500;
}
.highlights .material-symbols-outlined { color: var(--primary); }
@media (min-width: 768px) { .story__tag { display: block; } }
@media (min-width: 1024px) {
  .story { grid-template-columns: 7fr 5fr; }
  .story__body { margin-top: 0; padding-left: var(--space-md); }
}

/* ---------- 5. Kategoriler ---------- */
.category-grid { display: grid; grid-template-columns: 1fr; gap: var(--gutter); }
@media (min-width: 768px) { .category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.category { position: relative; display: block; aspect-ratio: 3 / 4; overflow: hidden; background: var(--surface-container); }
.category img {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
  filter: brightness(0.96); transition: transform 700ms var(--ease-out);
}
.category:hover img { transform: scale(1.05); }
.category__overlay {
  position: absolute; inset: 0; padding: var(--space-md);
  display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(to top, rgba(17, 17, 17, 0.8) 0%, rgba(17, 17, 17, 0.2) 50%, transparent 100%);
  color: #fff;
}
.category__index { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255, 255, 255, 0.8); margin-bottom: 0.25rem; }
.category__title { font-family: var(--font-display); font-weight: 400; font-size: 24px; line-height: 32px; margin-bottom: 0.5rem; }
.category__cta {
  display: inline-flex; align-items: center; gap: 0.25rem;
  font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  transition: transform 200ms ease;
}
.category__cta .material-symbols-outlined { font-size: 16px; }
.category:hover .category__cta { transform: translateX(4px); }

/* ---------- 6. Güven şeridi ---------- */
.trust {
  background: var(--surface-low);
  border-top: 1px solid rgba(229, 227, 220, 0.8); border-bottom: 1px solid rgba(229, 227, 220, 0.8);
  padding: var(--space-lg) 0;
}
.trust__grid { display: grid; grid-template-columns: 1fr; gap: var(--gutter); }
@media (min-width: 640px) { .trust__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .trust__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.trust__item { display: flex; align-items: flex-start; gap: 0.75rem; }
.trust__item .material-symbols-outlined { font-size: 28px; color: var(--primary); margin-top: 2px; flex: none; }
.trust__item h4 { font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.25rem; }
.trust__item p { font-size: 12px; line-height: 18px; color: var(--on-surface-variant); }

/* ---------- 7. Bülten ---------- */
.newsletter {
  max-width: 48rem; margin: 0 auto; padding: var(--space-lg);
  background: var(--surface-container); text-align: center;
}
.newsletter .eyebrow { margin-bottom: 0.5rem; letter-spacing: 0.25em; }
.newsletter .headline-lg { margin-bottom: var(--space-xs); }
.newsletter__text { max-width: 32rem; margin: 0 auto var(--space-md); color: var(--on-surface-variant); }
.newsletter__text strong { color: var(--on-surface); font-weight: 600; }
.newsletter__form { display: flex; flex-direction: column; gap: 0.5rem; max-width: 28rem; margin: 0 auto; }
.newsletter__note {
  margin-top: var(--space-sm);
  font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
  min-height: 14px;
}
.newsletter__note.is-success, .footer-form__note.is-success { color: var(--on-surface); }
.newsletter__note.is-error, .footer-form__note.is-error { color: var(--error); }
@media (min-width: 640px) {
  .newsletter { padding: var(--space-xl); }
  .newsletter__form { flex-direction: row; }
  .newsletter__form .input { flex: 1; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  margin-top: var(--space-xl);
  padding: var(--space-xl) 0 var(--space-lg);
  background: var(--surface-low); border-top: 1px solid var(--stone);
}
.footer-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); margin-bottom: var(--space-xl); }
.footer-brand .brand-name { display: block; margin-bottom: var(--space-sm); }
.footer-brand > p { font-size: 12px; line-height: 20px; color: var(--on-surface-variant); margin-bottom: var(--space-md); max-width: 28rem; }
.footer-form .eyebrow { letter-spacing: 0.14em; margin-bottom: 0.5rem; }
.footer-form__row { display: flex; gap: 0.375rem; max-width: 26rem; }
.footer-form__row .input { flex: 1; }
.footer-form__note { margin-top: 0.5rem; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); min-height: 14px; }

.footer-links { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); }
.footer-links h4 { color: var(--on-surface); margin-bottom: var(--space-sm); }
.footer-links ul { display: flex; flex-direction: column; gap: 0.375rem; }
.footer-links a { font-size: 12px; line-height: 18px; color: var(--on-surface-variant); transition: color 200ms ease; }
.footer-links a:hover { color: var(--on-surface); }
@media (min-width: 640px) { .footer-links { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--gutter); } }
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 4fr 8fr; gap: var(--gutter); }
  .footer-brand { padding-right: var(--space-lg); }
}

.footer-bottom {
  padding-top: var(--space-md); border-top: 1px solid var(--stone);
  display: flex; flex-direction: column; align-items: center; gap: var(--space-sm);
  font-size: 11px; letter-spacing: 0.08em; color: var(--on-surface-variant);
}
.footer-payments { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-sm); text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }

/* ---------- Toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 1.5rem; z-index: 80;
  transform: translate(-50%, 12px);
  padding: 0.75rem 1.25rem;
  background: var(--primary); color: var(--on-primary);
  font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  opacity: 0; transition: opacity 250ms ease, transform 250ms var(--ease-out);
  pointer-events: none; max-width: calc(100vw - 2rem); text-align: center;
}
.toast[hidden] { display: none; }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

/* ---------- Görünüm animasyonları ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 900ms var(--ease-out), transform 900ms var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
@keyframes heroReveal {
  from { transform: scale(1.06); }
  to { transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
