/* ============================================================
   LİKYA — Lüks kozmetik & sağlık · 2026 tasarım sistemi
   ============================================================ */

:root {
  --ivory: #f6f2ea;
  --porcelain: #fdfbf6;
  --ink: #1d201d;
  --ink-soft: #4c524c;
  --gold: #ac8342;
  --gold-light: #cfae6f;
  --gold-pale: #efe4cd;
  --sage: #7d8a79;
  --dark: #171a17;
  --dark-2: #21251f;
  --line: rgba(29, 32, 29, 0.12);
  --line-gold: rgba(172, 131, 66, 0.35);
  --radius: 20px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", -apple-system, sans-serif;
  --shadow-soft: 0 20px 60px -24px rgba(29, 32, 29, 0.25);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* hidden özniteliği, display tanımlı sınıfları (ör. .checkout-layout{display:grid})
   ezebilsin diye — aksi halde JS ile gizlenen paneller görünür kalır. */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; overflow-x: clip; }
body { overflow-x: clip; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container { width: min(1200px, 92vw); margin-inline: auto; }

::selection { background: var(--gold-pale); color: var(--ink); }

/* ---------- Tipografi ---------- */
.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.eyebrow--gold { color: var(--gold-light); }

.section__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.section__title em { font-style: italic; color: var(--gold); }

.section__sub {
  margin-top: 1rem;
  color: var(--ink-soft);
  max-width: 46ch;
  font-size: 1.02rem;
}

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s, color 0.35s, border-color 0.35s;
}
.btn:hover { transform: translateY(-2px); }
.btn--dark { background: var(--ink); color: var(--porcelain); }
.btn--dark:hover { background: var(--dark); box-shadow: 0 14px 30px -12px rgba(23, 26, 23, 0.5); }
.btn--gold { background: linear-gradient(120deg, var(--gold), var(--gold-light)); color: var(--ink); }
.btn--gold:hover { box-shadow: 0 14px 30px -12px rgba(172, 131, 66, 0.6); }
.btn--ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--sm { min-height: 44px; padding: 0.55rem 1.2rem; font-size: 0.72rem; }

/* ---------- Üst şerit ---------- */
.topbar {
  background: var(--dark);
  color: rgba(253, 251, 246, 0.85);
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
}
.topbar strong { color: var(--gold-light); font-weight: 600; }

/* ---------- Navigasyon ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(246, 242, 234, 0.97);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.nav.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 10px 40px -30px rgba(29, 32, 29, 0.4); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}
.nav__brand { display: flex; align-items: baseline; gap: 0.5rem; }
.nav__brand-mark { color: var(--gold); font-size: 1.05rem; }
.nav__brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.55rem;
  letter-spacing: 0.34em;
}

.nav__links { display: flex; gap: 2.4rem; }
.nav__links a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.3s;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__actions { display: flex; align-items: center; gap: 0.9rem; }
.nav__icon-btn {
  position: relative;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  display: grid;
  place-items: center;
  transition: border-color 0.3s, color 0.3s;
}
.nav__icon-btn:hover { border-color: var(--gold); color: var(--gold); }
.nav__icon-btn svg { width: 18px; height: 18px; }
.nav__badge {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 18px; height: 18px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.65rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  padding: 0 4px;
}

.nav__burger {
  display: none;
  min-width: 44px;
  min-height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.nav__burger span { width: 22px; height: 1.5px; background: var(--ink); transition: transform 0.3s, opacity 0.3s; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(3rem, 7vw, 6.5rem) 0 clamp(3rem, 6vw, 5.5rem); }
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(52% 60% at 82% 20%, rgba(207, 174, 111, 0.16), transparent 70%),
    radial-gradient(40% 50% at 8% 85%, rgba(125, 138, 121, 0.12), transparent 70%);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
}
.hero__title em { font-style: italic; color: var(--gold); }
.hero__lead {
  margin-top: 1.4rem;
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 50ch;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.2rem; }
.hero__props {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
  margin-top: 2.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}
.hero__props li {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero__props li::before { content: "✦"; color: var(--gold); font-size: 0.7rem; }

.hero__visual { position: relative; }
.hero__arch {
  width: min(420px, 88%);
  margin-inline: auto;
  aspect-ratio: 4 / 5;
  border-radius: 260px 260px var(--radius) var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-gold);
  padding: 14px;
  background: var(--porcelain);
  box-shadow: var(--shadow-soft);
}
.hero__arch img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 246px 246px calc(var(--radius) - 8px) calc(var(--radius) - 8px);
}

.hero__card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(253, 251, 246, 0.97);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.8rem 1.1rem;
  box-shadow: var(--shadow-soft);
  animation: floaty 7s ease-in-out infinite;
}
.hero__card img { width: 44px; height: 44px; object-fit: cover; border-radius: 10px; }
.hero__card strong { display: block; font-size: 0.82rem; font-weight: 700; }
.hero__card span { font-size: 0.72rem; color: var(--ink-soft); }
.hero__card--1 { left: -2%; top: 14%; }
.hero__card--2 { right: 0; bottom: 12%; animation-delay: 2.2s; }
.hero__stat {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--gold);
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- Marquee ---------- */
.marquee {
  border-block: 1px solid var(--line);
  padding: 0.9rem 0;
  overflow: hidden;
  background: var(--porcelain);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  width: max-content;
  animation: scroll 36s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink-soft);
  white-space: nowrap;
}
.marquee__track i { color: var(--gold); font-style: normal; font-size: 0.7rem; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- Bölümler ---------- */
.section { padding: clamp(2.8rem, 5vw, 4.5rem) 0; }
.section__head { max-width: 640px; margin-bottom: clamp(1.8rem, 3vw, 2.6rem); }

.section--dark { background: var(--dark); color: var(--porcelain); }
.section--dark .section__title { color: var(--porcelain); }
.section--dark .section__sub { color: rgba(253, 251, 246, 0.6); }
.section--tinted { background: var(--porcelain); border-block: 1px solid var(--line); }

/* ---------- Filtreler ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2.4rem; }
.filter {
  min-height: 44px;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: all 0.3s var(--ease);
}
.filter:hover { border-color: var(--gold); color: var(--gold); }
.filter.is-active { background: var(--ink); border-color: var(--ink); color: var(--porcelain); }

/* ---------- Ürün ızgarası ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 1.6rem;
}

.card {
  background: var(--porcelain);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), opacity 0.4s, border-color 0.45s;
}
.card:hover { transform: translateY(-6px) scale(1.03); box-shadow: var(--shadow-lg, var(--shadow-soft)); border-color: var(--line-gold); z-index: 3; }
.card.is-hidden { display: none; }

.card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #fff;
}
.card__media img {
  width: 100%; height: 100%;
  object-fit: contain; /* "Made in Korea" damgası dahil görselin tamamı görünsün */
  object-position: center bottom;
  padding: 1.4rem 2.35rem 2.15rem; /* damga için sağ ve altta güvenli boşluk */
  box-sizing: border-box;
}
.card__media img[src$="premium-sampuan.jpg"] { padding-bottom: 1.8rem; }
.card__media img[src$="semo-squalene.jpg"] {
  /* Yatay ürün ve kendi damgası, komşu karttaki damga tabanına birlikte yükselir. */
  padding: 2rem 1.6rem 2.475rem;
}
.card__media-btn { display: block; width: 100%; height: 100%; border: none; background: #fff; padding: 0; margin: 0; cursor: pointer; }
.card__media-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: -2px; }

/* Kaynak JPG'lerde baskısı yer yer silik olan menşe damgasını, her ürünün
   kendi doğal damga koordinatına eksiksiz ve kesintisiz olarak bindirir. */
.seal-overlay-host { position: relative; }
.product-seal-overlay {
  position: absolute;
  z-index: 4;
  pointer-events: none;
  /* Geniş beyaz alan eski silik damgayı ve hemen üstündeki tarama lekesini kapatır;
     yeni damga kutunun içinde özgün boyutuna yakın kalır. */
  background: #fff url("../assets/img/made-in-korea-seal.png") center / 76% 76% no-repeat;
}
.product-seal-overlay--cleanup::before {
  content: "";
  position: absolute;
  left: 12%;
  top: -48%;
  width: 76%;
  height: 54%;
  background: #fff;
}
.product-seal-overlay--semo {
  /* Kaynak damganın tam üzerine oturan dairesel katman ürünün kenarını kesmez. */
  background-size: 100% 100%;
  border-radius: 50%;
  overflow: hidden;
  transform: scale(1.06);
  transform-origin: center;
}
.card__badges { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 6px; z-index: 2; }
.badge {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  width: max-content;
}
.badge--ship { background: rgba(253, 251, 246, 0.94); color: var(--gold); border: 1px solid var(--line-gold); }
.badge--best { background: linear-gradient(120deg, var(--gold), var(--gold-light)); color: #fff; }
.badge--out { background: var(--ink); color: var(--porcelain); }
.badge--soon { background: #2f4a37; color: #f4ead2; border: 1px solid var(--line-gold); }

.card__fav {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 2;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(253, 251, 246, 0.94);
  color: var(--ink-soft);
  display: grid;
  place-items: center;
  transition: color 0.3s, border-color 0.3s, transform 0.3s;
}
.card__fav:hover { transform: scale(1.1); color: var(--gold); border-color: var(--gold); }
.card__fav svg { width: 16px; height: 16px; }
.card__fav.is-fav { color: #b0483f; border-color: rgba(176, 72, 63, 0.4); }
.card__fav.is-fav svg { fill: currentColor; }

.card__quick {
  position: absolute;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 2;
  padding: 0.75rem;
  border-radius: 12px;
  border: none;
  background: rgba(29, 32, 29, 0.92);
  color: var(--porcelain);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), background 0.3s;
}
.card:hover .card__quick, .card__quick:focus-visible { opacity: 1; transform: translateY(0); }
.card__quick:hover { background: var(--gold); }

.card__body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; gap: 0.45rem; flex: 1; }
.card__cat { font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.card__name {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 600;
  line-height: 1.25;
}
.card__desc {
  font-size: 0.85rem;
  color: var(--ink-soft);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card__foot { margin-top: auto; padding-top: 0.7rem; display: flex; align-items: center; justify-content: space-between; }
.card__price { font-weight: 700; font-size: 1.05rem; }
.card__size { font-size: 0.75rem; color: var(--ink-soft); }
.card--out .card__media img { filter: grayscale(0.7); opacity: 0.75; }
.card--soon .card__media img { opacity: 0.92; }
.card--soon .card__price { color: var(--gold); font-size: 0.9rem; letter-spacing: 0.02em; }

/* ---------- İçerik kartları ---------- */
.ing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.ing-card {
  border: 1px solid rgba(253, 251, 246, 0.12);
  border-radius: var(--radius);
  padding: 2.2rem 1.9rem;
  background: var(--dark-2);
  transition: border-color 0.4s, transform 0.4s var(--ease);
}
.ing-card:hover { border-color: var(--line-gold); transform: translateY(-4px); }
.ing-card__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-light);
  display: block;
  margin-bottom: 1.4rem;
}
.ing-card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.ing-card p { font-size: 0.92rem; color: rgba(253, 251, 246, 0.65); }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(253, 251, 246, 0.12);
  text-align: center;
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--gold-light);
  display: block;
  line-height: 1;
}
.stat__label { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(253, 251, 246, 0.55); }

/* ---------- Hakkımızda ---------- */
.about {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.about__visual { position: relative; }
.about__img { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.about__img img { width: 100%; height: 100%; object-fit: cover; }
.about__img--main { aspect-ratio: 4 / 5; width: 82%; }
.about__img--small {
  position: absolute;
  right: 0; bottom: -10%;
  width: 46%;
  aspect-ratio: 1;
  box-shadow: var(--shadow-soft);
  border: 6px solid var(--ivory);
}
.about__text p { color: var(--ink-soft); margin-top: 1.1rem; }
.about__values { margin: 1.6rem 0 2rem; display: grid; gap: 0.65rem; }
.about__values li {
  font-size: 0.92rem;
  color: var(--ink-soft);
  padding-left: 1.4rem;
  position: relative;
}
.about__values li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); font-size: 0.7rem; top: 0.2rem; }
.about__values strong { color: var(--ink); }

/* ---------- Yorumlar ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.quote {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.quote:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.quote p {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-style: italic;
  line-height: 1.5;
}
.quote footer { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; color: var(--gold); margin-top: auto; }

/* ---------- Bülten ---------- */
.newsletter__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.newsletter__row { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.newsletter__row input {
  flex: 1;
  min-width: 0;
  padding: 1rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(253, 251, 246, 0.2);
  background: rgba(253, 251, 246, 0.06);
  color: var(--porcelain);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s;
}
.newsletter__row input::placeholder { color: rgba(253, 251, 246, 0.4); }
.newsletter__row input:focus { border-color: var(--gold-light); }
.newsletter__kvkk {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin-top: 1.1rem;
  font-size: 0.78rem;
  color: rgba(253, 251, 246, 0.55);
  cursor: pointer;
}
.newsletter__kvkk input { margin-top: 3px; accent-color: var(--gold); }
.newsletter__kvkk a { text-decoration: underline; text-underline-offset: 3px; }
.newsletter__msg { margin-top: 0.9rem; font-size: 0.85rem; color: var(--gold-light); min-height: 1.2em; }
.form-hp {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

/* ---------- İletişim ---------- */
.contact {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
.contact__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.contact-card {
  background: var(--porcelain);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s var(--ease);
}
a.contact-card:hover { transform: translateY(-4px); border-color: var(--line-gold); box-shadow: var(--shadow-soft); }
.contact-card__label { font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.contact-card__value { font-weight: 700; font-size: 1rem; line-height: 1.4; }
.contact-card__hint { font-size: 0.8rem; color: var(--ink-soft); }

.contact__form {
  background: var(--porcelain);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
  display: grid;
  gap: 0.9rem;
}
.contact__form h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; margin-bottom: 0.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.contact__form input, .contact__form textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--ivory);
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--ink);
  outline: none;
  resize: vertical;
  transition: border-color 0.3s;
}
.contact__form input:focus, .contact__form textarea:focus { border-color: var(--gold); }
.contact__form .newsletter__msg { color: var(--gold); }

/* ---------- Footer ---------- */
.footer { background: var(--dark); color: rgba(253, 251, 246, 0.65); padding: clamp(3rem, 6vw, 4.5rem) 0 0; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--porcelain);
  margin-bottom: 0.9rem;
}
.footer__brand p:last-child { font-size: 0.9rem; max-width: 30ch; }
.footer h4 {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.1rem;
}
.footer ul { display: grid; gap: 0.55rem; }
.footer ul a { font-size: 0.9rem; transition: color 0.3s; }
.footer ul a:hover { color: var(--porcelain); }
.footer__bottom {
  border-top: 1px solid rgba(253, 251, 246, 0.1);
  padding: 1.4rem 0;
  font-size: 0.78rem;
  color: rgba(253, 251, 246, 0.4);
}

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 90; display: grid; place-items: center; padding: 1.2rem; visibility: hidden; opacity: 0; transition: opacity 0.35s, visibility 0.35s; }
.modal.is-open { visibility: visible; opacity: 1; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(23, 26, 23, 0.6); }
.modal__panel {
  position: relative;
  width: min(880px, 100%);
  max-height: 88vh;
  overflow: auto;
  background: var(--porcelain);
  border-radius: 24px;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.5);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.4s var(--ease);
}
.modal.is-open .modal__panel { transform: translateY(0) scale(1); }
.modal__panel--text { width: min(640px, 100%); }
.modal__close {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 3;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--porcelain);
  font-size: 1.3rem;
  line-height: 1;
  color: var(--ink);
  transition: background 0.3s, color 0.3s;
}
.modal__close:hover { background: var(--ink); color: var(--porcelain); }

.qv { display: grid; grid-template-columns: 1fr 1.1fr; }
.qv__media { background: #fff; display: grid; place-items: center; }
.qv__media img {
  width: 100%; height: 100%;
  object-fit: contain;
  min-height: 380px;
  padding: 1.25rem;
  box-sizing: border-box;
}
.qv__body { padding: 2.6rem 2.4rem; display: flex; flex-direction: column; gap: 0.9rem; }
.qv__cat { font-size: 0.68rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.qv__name { font-family: var(--font-display); font-size: 2rem; font-weight: 600; line-height: 1.15; }
.qv__price { font-size: 1.4rem; font-weight: 700; }
.qv__price small { font-size: 0.75rem; font-weight: 500; color: var(--ink-soft); margin-left: 0.4rem; }
.qv__desc { color: var(--ink-soft); font-size: 0.95rem; }
.qv__list { display: grid; gap: 0.4rem; margin: 0.4rem 0; }
.qv__list li { font-size: 0.88rem; color: var(--ink-soft); padding-left: 1.3rem; position: relative; }
.qv__list li::before { content: "✦"; position: absolute; left: 0; top: 0.15rem; color: var(--gold); font-size: 0.65rem; }
.qv__usage {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.qv__usage strong { color: var(--ink); display: block; margin-bottom: 0.25rem; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; }
.qv__actions { display: flex; gap: 0.8rem; margin-top: auto; padding-top: 1rem; flex-wrap: wrap; }
.qv__actions .btn { white-space: nowrap; }

.text-doc { padding: 2.6rem 2.4rem; }
.text-doc h3 { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; margin-bottom: 1rem; }
.text-doc h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--ink); margin: 1.6rem 0 0.7rem; }
.text-doc p { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 0.9rem; }
.text-doc p strong { color: var(--ink); }
.text-doc ul { list-style: none; margin: 0 0 0.9rem; padding: 0; }
.text-doc li { font-size: 0.9rem; color: var(--ink-soft); padding-left: 1.3rem; position: relative; margin-bottom: 0.45rem; line-height: 1.5; }
.text-doc li::before { content: "✦"; position: absolute; left: 0; top: 0.2rem; color: var(--gold); font-size: 0.6rem; }
.text-doc li strong { color: var(--ink); }

/* ---------- Çerez / WhatsApp ---------- */
.cookie {
  position: fixed;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%);
  z-index: 80;
  width: min(680px, calc(100vw - 2rem));
  background: var(--porcelain);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.84rem;
  color: var(--ink-soft);
}
.cookie[hidden] { display: none; }
.cookie a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.cookie__actions { display: flex; gap: 0.6rem; flex-shrink: 0; }

.whatsapp {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 70;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--porcelain);
  display: grid;
  place-items: center;
  box-shadow: 0 16px 40px -14px rgba(23, 26, 23, 0.6);
  transition: transform 0.35s var(--ease), background 0.35s;
}
.whatsapp:hover { transform: translateY(-4px) scale(1.05); background: var(--gold); }
.whatsapp svg { width: 22px; height: 22px; }

/* WhatsApp sohbet butonu — telefonun üstünde */
.wa-chat {
  position: fixed;
  right: 1.4rem;
  bottom: 5.6rem;
  z-index: 70;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 40px -14px rgba(37, 211, 102, 0.55);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.wa-chat:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 20px 46px -14px rgba(37, 211, 102, 0.7); }
.wa-chat svg { width: 30px; height: 30px; }

/* ---------- Reveal animasyonları ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal--delay { transition-delay: 0.15s; }
.reveal--delay2 { transition-delay: 0.3s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee__track { animation: none; }
  .hero__card { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 480px; margin-inline: auto; }
  .ing-grid, .quotes { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; }
  .about__visual { max-width: 440px; }
  .newsletter__inner { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

/* Tablet ve altı: menü çekmeceye geçer (masaüstü menü 920px altında sığmıyor) */
@media (max-width: 920px) {
  .nav__links {
    position: fixed;
    top: 0; right: 0;
    height: 100dvh;
    width: min(320px, 82vw);
    background: var(--porcelain);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 3rem 2.4rem;
    gap: 1.8rem;
    box-shadow: -30px 0 80px -30px rgba(0, 0, 0, 0.35);
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
    z-index: 100;
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a { display: flex; align-items: center; min-height: 44px; font-size: 1rem; }
  .nav__burger { display: flex; z-index: 110; }
  .nav__cta { display: none; }
}

/* Çok dar ekranlar: nav sıkıştırma */
@media (max-width: 400px) {
  .topbar { font-size: 0.64rem; letter-spacing: 0.08em; }
  .nav__actions { gap: 0.45rem; }
  .nav__icon-btn { width: 44px; height: 44px; }
  .nav__icon-btn svg { width: 16px; height: 16px; }
  .nav__brand img { height: 40px; }
  .nav__actions a[aria-label="Instagram"] { display: none; } /* footer'da zaten var */
}

@media (max-width: 760px) {
  .hero__card--1 { left: -4px; top: 6%; }
  .hero__card--2 { right: -4px; bottom: 6%; }
  .form-row { grid-template-columns: 1fr; }
  .contact__cards { grid-template-columns: 1fr; }
  .qv { grid-template-columns: 1fr; }
  .qv__media img { min-height: 280px; max-height: 340px; }
  .cookie { flex-direction: column; align-items: flex-start; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }

  /* Mobilde sabit iletişim düğmelerini içerikten daha az alan kaplayacak şekilde küçült. */
  .whatsapp {
    right: 1rem;
    bottom: calc(1rem + env(safe-area-inset-bottom));
    width: 46px;
    height: 46px;
  }
  .wa-chat {
    right: 1rem;
    bottom: calc(4.6rem + env(safe-area-inset-bottom));
    width: 50px;
    height: 50px;
  }
  .wa-chat svg { width: 27px; height: 27px; }

  /* Çerez bandı görünürken FAB'ları bandın üstüne al (çakışma önleme) */
  body.has-cookie .whatsapp { bottom: calc(1.4rem + var(--cookie-h, 150px) + 0.9rem); }
  body.has-cookie .wa-chat  { bottom: calc(5.6rem + var(--cookie-h, 150px) + 0.9rem); }
  body.has-cookie .to-top   { bottom: calc(9.8rem + var(--cookie-h, 150px) + 0.9rem); }
}

/* ============================================================
   v2 — logo, araç çubuğu, sepet & ödeme ekranları
   ============================================================ */

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

.skip-link { position: fixed; top: -70px; left: 16px; z-index: 200; background: var(--ink); color: var(--porcelain); padding: 0.7rem 1.2rem; border-radius: 10px; font-size: 0.8rem; transition: top 0.3s; }
.skip-link:focus { top: 12px; }

:where(a, button, select, input, textarea):focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.nav__brand img { height: 58px; width: auto; display: block; }
.footer__logo-img { height: 84px; width: auto; margin-bottom: 1rem; }

.nav__links a.is-active { color: var(--ink); }
.nav__links a.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav__icon-btn.is-on { background: var(--ink); border-color: var(--ink); color: var(--porcelain); }

/* Araç çubuğu (filtre + sıralama) */
.toolbar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.2rem; }
.toolbar .filters { margin-bottom: 0; }
.toolbar__right { display: flex; align-items: center; gap: 1.1rem; }
.grid-count { font-size: 0.75rem; color: var(--ink-soft); letter-spacing: 0.1em; text-transform: uppercase; }
.sort select {
  appearance: none; -webkit-appearance: none;
  padding: 0.62rem 2.5rem 0.62rem 1.3rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--porcelain) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6' fill='none' stroke='%231d201d' stroke-width='1.4'%3E%3Cpath d='M1 1l4 4 4-4'/%3E%3C/svg%3E") no-repeat right 1.05rem center / 10px;
  font: inherit; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em;
  color: var(--ink); cursor: pointer;
}
.sort select:hover { border-color: var(--gold); }

/* Kart: sepete ekle + isim butonu */
.card__add {
  margin-top: 0.9rem; width: 100%; padding: 0.8rem;
  border-radius: 12px; border: 1px solid var(--ink);
  background: var(--ink); color: var(--porcelain);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  transition: background 0.3s, border-color 0.3s;
}
.card__add:hover { background: var(--gold); border-color: var(--gold); }
.card__add[disabled] { background: transparent; color: var(--ink-soft); border-color: var(--line); cursor: not-allowed; }
.card__add svg { width: 15px; height: 15px; }
.card__name-btn { all: unset; cursor: pointer; font: inherit; color: inherit; }
.card__name-btn:hover { color: var(--gold); }
.grid__empty { grid-column: 1 / -1; text-align: center; padding: 4rem 1.5rem; color: var(--ink-soft); font-size: 0.95rem; background: var(--porcelain); border: 1px dashed var(--line); border-radius: var(--radius); }

/* Toast */
.toast {
  position: fixed; left: 50%; bottom: 5.8rem; z-index: 120;
  transform: translate(-50%, 16px);
  background: var(--ink); color: var(--porcelain);
  padding: 0.85rem 1.5rem; border-radius: 999px;
  font-size: 0.85rem; text-align: center;
  max-width: min(90vw, 480px);
  opacity: 0; pointer-events: none;
  box-shadow: var(--shadow-soft);
  transition: opacity 0.35s, transform 0.35s var(--ease);
}
.toast.is-show { opacity: 1; transform: translate(-50%, 0); }

/* Yukarı dön */
.to-top {
  position: fixed; right: 1.4rem; bottom: 9.8rem; z-index: 69;
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--porcelain); color: var(--ink);
  display: grid; place-items: center;
  opacity: 0; pointer-events: none;
  box-shadow: var(--shadow-soft);
  transition: opacity 0.3s, transform 0.3s var(--ease), color 0.3s, border-color 0.3s;
}
.to-top.is-show { opacity: 1; pointer-events: auto; }
.to-top:hover { transform: translateY(-3px); color: var(--gold); border-color: var(--gold); }
.to-top svg { width: 16px; height: 16px; }

/* Sayfa iskeleti (sepet / ödeme) */
.page { padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(4rem, 7vw, 6rem); min-height: 55vh; }
.crumbs { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 0.9rem; display: flex; gap: 0.6rem; }
.crumbs a:hover { color: var(--gold); }
.page__head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.page__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(2rem, 4vw, 2.8rem); }
.page__meta { color: var(--ink-soft); font-size: 0.85rem; }

/* Sepet */
.cart-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 2rem; align-items: start; }
.cart-list { display: grid; gap: 1rem; }
.cart-item {
  display: grid; grid-template-columns: 96px 1fr auto; gap: 1.2rem;
  background: var(--porcelain); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.1rem; align-items: center;
}
.cart-item__img { width: 96px; height: 96px; object-fit: contain; padding: 4px; background: #fff; border-radius: 12px; border: 1px solid var(--line); }
.cart-item__name { font-family: var(--font-display); font-size: 1.18rem; font-weight: 600; line-height: 1.25; }
.cart-item__name a:hover { color: var(--gold); }
.cart-item__meta { font-size: 0.78rem; color: var(--ink-soft); margin-top: 0.2rem; }
.cart-item__unit { font-size: 0.8rem; color: var(--ink-soft); margin-top: 0.45rem; }
.cart-item__right { display: flex; flex-direction: column; align-items: flex-end; gap: 0.7rem; }
.cart-item__total { font-weight: 700; font-size: 1.02rem; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; background: var(--ivory); }
.qty button { width: 44px; height: 44px; border: none; background: transparent; font-size: 1.05rem; color: var(--ink); border-radius: 999px; }
.qty button:hover { color: var(--gold); }
.qty span { min-width: 30px; text-align: center; font-weight: 700; font-size: 0.9rem; }
.link-danger { background: none; border: none; color: #a4463d; font-size: 0.78rem; display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.5rem 0.4rem; margin: -0.5rem -0.4rem; min-height: 44px; }
.link-danger:hover { text-decoration: underline; }
.link-danger svg { width: 14px; height: 14px; }
.cart-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 1.4rem; flex-wrap: wrap; gap: 1rem; }

/* Sipariş özeti */
.summary {
  background: var(--porcelain); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.8rem 1.6rem;
  position: sticky; top: 96px; display: grid; gap: 0.95rem;
}
.summary h3 { font-family: var(--font-display); font-size: 1.55rem; font-weight: 600; }
.summary__row { display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem; color: var(--ink-soft); }
.summary__row strong { color: var(--ink); }
.summary__row--total { border-top: 1px solid var(--line); padding-top: 1rem; font-size: 1.08rem; color: var(--ink); font-weight: 700; }
.summary .btn { width: 100%; }
.gift { border-top: 1px solid var(--line); padding-top: 1rem; }
.gift summary { cursor: pointer; font-size: 0.84rem; font-weight: 600; display: flex; align-items: center; gap: 0.5rem; list-style: none; }
.gift summary::-webkit-details-marker { display: none; }
.gift summary::before { content: "🎁"; font-size: 0.9rem; }
.gift__row { display: flex; gap: 0.6rem; margin-top: 0.9rem; }
.gift__row input { flex: 1; padding: 0.7rem 1rem; border-radius: 10px; border: 1px solid var(--line); background: var(--ivory); font: inherit; font-size: 0.85rem; text-transform: uppercase; }
.gift__msg { font-size: 0.78rem; margin-top: 0.5rem; color: var(--gold); min-height: 1em; }
.tag-code { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--gold-pale); color: var(--gold); border-radius: 999px; padding: 0.22rem 0.75rem; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; }
.tag-code button { background: none; border: none; color: inherit; font-size: 0.95rem; padding: 0; line-height: 1; }

/* Adım göstergesi */
.steps { display: flex; gap: 0.7rem; align-items: center; margin-bottom: 2.2rem; flex-wrap: wrap; }
.step { display: flex; align-items: center; gap: 0.55rem; font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }
.step__num { width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; font-size: 0.72rem; font-weight: 700; }
.step.is-active { color: var(--ink); font-weight: 700; }
.step.is-active .step__num { background: var(--ink); border-color: var(--ink); color: var(--porcelain); }
.step.is-done .step__num { background: var(--gold); border-color: var(--gold); color: #fff; }
.steps__sep { width: 28px; height: 1px; background: var(--line); }

/* Ödeme */
.checkout-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 2rem; align-items: start; }
.panel { background: var(--porcelain); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem 1.7rem; }
.panel h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; margin-bottom: 1.2rem; }
.panel + .panel { margin-top: 1.4rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.form-grid .full { grid-column: 1 / -1; }
.panel input, .panel textarea, .panel select {
  width: 100%; padding: 0.85rem 1.05rem; border-radius: 12px;
  border: 1px solid var(--line); background: var(--ivory);
  font: inherit; font-size: 0.9rem; color: var(--ink);
}
.panel input:focus, .panel textarea:focus, .panel select:focus { border-color: var(--gold); outline: none; }
.pay-opts { display: grid; gap: 0.8rem; }
.pay-opt {
  display: flex; gap: 0.9rem; align-items: flex-start;
  border: 1px solid var(--line); border-radius: 14px;
  padding: 1rem 1.1rem; cursor: pointer; background: var(--ivory);
  transition: border-color 0.3s, background 0.3s;
}
.pay-opt:has(input:checked) { border-color: var(--gold); background: var(--gold-pale); }
.pay-opt input { width: auto; accent-color: var(--gold); margin-top: 0.2rem; }
.pay-opt strong { display: block; font-size: 0.92rem; }
.pay-opt span { font-size: 0.8rem; color: var(--ink-soft); }
.agree { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.8rem; color: var(--ink-soft); margin: 1.2rem 0; cursor: pointer; }
.agree input { width: auto; margin-top: 2px; accent-color: var(--gold); }
.agree a { text-decoration: underline; text-underline-offset: 3px; }

/* Checkout alan doğrulaması */
.field { display: flex; flex-direction: column; gap: 0.3rem; }
.field__err { font-size: 0.72rem; line-height: 1.3; color: #c0392b; }
.field__err:empty { display: none; }
.panel input.is-invalid, .panel textarea.is-invalid { border-color: #c0392b; background: #fdf3f2; }
.panel input.is-invalid:focus, .panel textarea.is-invalid:focus { border-color: #c0392b; }

.mini-list { display: grid; gap: 0.85rem; max-height: 330px; overflow: auto; padding-right: 0.2rem; }
.mini-item { display: flex; gap: 0.8rem; align-items: center; font-size: 0.85rem; }
.mini-item img { width: 52px; height: 52px; border-radius: 10px; object-fit: contain; padding: 3px; background: #fff; border: 1px solid var(--line); }
.mini-item__name { font-weight: 600; line-height: 1.3; }
.mini-item__qty { color: var(--ink-soft); font-size: 0.78rem; }
.mini-item__price { margin-left: auto; font-weight: 700; white-space: nowrap; }
.note { font-size: 0.78rem; color: var(--ink-soft); background: var(--ivory); border: 1px dashed var(--line); padding: 0.8rem 1rem; border-radius: 12px; line-height: 1.55; }

/* Sipariş onayı */
.success { text-align: center; max-width: 560px; margin: 0 auto; padding: 2.5rem 1rem; }
.success__mark { width: 76px; height: 76px; border-radius: 50%; background: var(--gold-pale); color: var(--gold); display: grid; place-items: center; font-size: 2rem; margin: 0 auto 1.5rem; }
.success h2 { font-family: var(--font-display); font-size: 2.3rem; font-weight: 600; margin-bottom: 0.7rem; }
.success p { color: var(--ink-soft); margin-bottom: 0.5rem; }
.success__no { font-weight: 700; color: var(--ink); letter-spacing: 0.06em; }
.success .btn { margin-top: 1.5rem; }


/* ============================================================
   v3 — arama, ürün detay, siparişlerim, SSS
   ============================================================ */

@keyframes badgePop { 0% { transform: scale(1); } 45% { transform: scale(1.4); } 100% { transform: scale(1); } }
.nav__badge.is-pop { animation: badgePop 0.45s var(--ease); }

/* Arama */
.modal--search { place-items: start center; padding-top: min(12vh, 120px); }
.modal__panel--search { width: min(620px, 100%); }
.search__box { display: flex; align-items: center; gap: 0.8rem; padding: 1.05rem 1.25rem; border-bottom: 1px solid var(--line); }
.search__box > svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.search__box input { flex: 1; border: none; background: transparent; font: inherit; font-size: 1.05rem; color: var(--ink); outline: none; }
.search__box .modal__close { position: static; flex-shrink: 0; }
.search__results { max-height: 55vh; overflow: auto; padding: 0.6rem; display: grid; gap: 0.2rem; }
.search-row { display: flex; gap: 0.9rem; align-items: center; padding: 0.6rem 0.7rem; border-radius: 12px; transition: background 0.2s; }
.search-row:hover { background: var(--ivory); }
.search-row img { width: 48px; height: 48px; object-fit: contain; padding: 3px; background: #fff; border-radius: 10px; border: 1px solid var(--line); }
.search-row__name { font-weight: 600; font-size: 0.92rem; line-height: 1.3; }
.search-row__meta { font-size: 0.75rem; color: var(--ink-soft); }
.search-row__price { margin-left: auto; font-weight: 700; white-space: nowrap; }
.search__empty { padding: 1.4rem 1.2rem; font-size: 0.88rem; color: var(--ink-soft); text-align: center; }

.badge--low { background: #8c3a31; color: #fff; }

/* Video hero — tam ekran */
.hero--video {
  position: relative;
  overflow: hidden;
  min-height: min(90vh, 820px);
  display: flex;
  align-items: center;
  padding: clamp(4rem, 8vw, 6rem) 0;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(20, 17, 12, 0.82) 0%, rgba(20, 17, 12, 0.55) 40%, rgba(20, 17, 12, 0.1) 72%, rgba(20, 17, 12, 0.05) 100%),
    linear-gradient(180deg, rgba(20, 17, 12, 0.3) 0%, transparent 24%, transparent 82%, rgba(20, 17, 12, 0.38) 100%);
}
.hero__content { position: relative; z-index: 2; }
.hero--video .hero__text { max-width: 540px; }
.hero--video .hero__title { color: var(--porcelain); }
.hero--video .hero__title em { color: var(--gold-light); }
.hero--video .hero__lead { color: rgba(253, 251, 246, 0.82); }
.hero--video .hero__props { border-top-color: rgba(253, 251, 246, 0.22); }
.hero--video .hero__props li { color: rgba(253, 251, 246, 0.85); }
.hero--video .hero__props li::before { color: var(--gold-light); }
.btn--ghost-light { border: 1px solid rgba(253, 251, 246, 0.45); color: var(--porcelain); background: transparent; }
.btn--ghost-light:hover { border-color: var(--gold-light); color: var(--gold-light); }

/* Ürün etiketi — köşeye sabit kart (hareketli kamerada nokta takibi yapılmaz) */
/* Şişe (şampuan) üzerindeki görünmez etkileşim bölgesi — sadece hover cihazlarda aktif */
.hero__hotzone {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 52%;
  z-index: 3;
  pointer-events: none; /* JS hover cihazlarda açar (mobilde beklenmedik gezinme olmasın) */
}

/* İmleci takip eden ürün kartı — varsayılan gizli, JS konumlandırır */
.hero__tag {
  position: absolute;
  left: 0; top: 0;
  z-index: 4;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s var(--ease), transform 0.12s ease-out;
  will-change: transform;
}
.hero__tag.is-on { opacity: 1; }
.hero__tag-dot {
  position: absolute;
  top: -6px; left: -6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold-light);
  border: 2px solid rgba(253, 251, 246, 0.9);
  animation: tagPulse 2.6s ease-out infinite;
}
.hero__tag-body {
  position: absolute;
  left: 22px; top: 16px;   /* varsayılan: imlecin sağ-altında */
}
.hero__tag.flip-x .hero__tag-body { left: auto; right: 22px; }  /* sağ kenara yakın → sola aç */
.hero__tag.flip-y .hero__tag-body { top: auto; bottom: 16px; }  /* alt kenara yakın → yukarı aç */
@media (max-width: 1180px) {
  .hero__tag { display: none; }
}
@keyframes tagPulse {
  0% { box-shadow: 0 0 0 0 rgba(207, 174, 111, 0.55); }
  70% { box-shadow: 0 0 0 16px rgba(207, 174, 111, 0); }
  100% { box-shadow: 0 0 0 0 rgba(207, 174, 111, 0); }
}
.hero__tag-body {
  display: grid;
  gap: 3px;
  min-width: 224px;
  background: rgba(253, 251, 246, 0.96);
  border: 1px solid var(--line-gold);
  border-radius: 16px;
  padding: 1.05rem 1.2rem;
  box-shadow: var(--shadow-soft);
  text-align: left;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.hero__tag:hover .hero__tag-body { transform: translateY(-3px); box-shadow: 0 26px 60px -22px rgba(23, 19, 13, 0.5); }
.hero__tag-body small {
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
}
.hero__tag-body strong {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 600;
  color: var(--ink); line-height: 1.2;
}
.hero__tag-body em {
  font-style: normal;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
}
.hero__tag:hover .hero__tag-body em { text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 760px) {
  .hero--video {
    min-height: min(720px, 100svh);
    padding: 2.75rem 0 2.25rem;
  }
  .hero__video { object-position: 56% center; }
  .hero__veil {
    background:
      linear-gradient(90deg, rgba(20, 17, 12, 0.74) 0%, rgba(20, 17, 12, 0.56) 68%, rgba(20, 17, 12, 0.34) 100%),
      linear-gradient(180deg, rgba(20, 17, 12, 0.34) 0%, transparent 48%, rgba(20, 17, 12, 0.55) 100%);
  }
  .hero--video .hero__text { max-width: 100%; }
  .hero--video .eyebrow {
    max-width: 31ch;
    margin-bottom: 0.8rem;
    font-size: 0.67rem;
    line-height: 1.65;
    letter-spacing: 0.24em;
  }
  .hero--video .hero__title {
    font-size: clamp(2.25rem, 10.5vw, 2.75rem);
    line-height: 1;
  }
  .hero--video .hero__lead {
    max-width: 35ch;
    margin-top: 1rem;
    font-size: 0.94rem;
    line-height: 1.58;
  }
  .hero--video .hero__cta {
    flex-wrap: nowrap;
    gap: 0.6rem;
    margin-top: 1.4rem;
  }
  .hero--video .hero__cta .btn {
    min-height: 48px;
    padding: 0.75rem 0.9rem;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    white-space: nowrap;
  }
  .hero--video .hero__props {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
    margin-top: 1.35rem;
    padding-top: 1rem;
  }
  .hero--video .hero__props li {
    align-items: flex-start;
    gap: 0.3rem;
    font-size: 0.6rem;
    line-height: 1.45;
    letter-spacing: 0.06em;
  }
  .hero__tag { display: none; } /* mobilde CTA butonları zaten bu bölgeyi örtüyor */
}
@media (prefers-reduced-motion: reduce) {
  .hero__video { display: none; }
  .hero--video { background: #17130d url("../assets/img/hero-poster.jpg") center / cover no-repeat; }
  .hero__tag-dot { animation: none; }
}

/* Güvenli ödeme notu (sepet özeti) */
.summary__secure {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  font-size: 0.76rem;
  color: var(--ink-soft);
  margin-top: -0.2rem;
}
.summary__secure svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; }
.btn.is-loading { opacity: 0.7; pointer-events: none; }

/* Ticimax sepet devri örtüsü */
.ticimax-transfer {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background: rgba(20, 17, 12, 0.72);
  backdrop-filter: blur(4px);
}
.ticimax-transfer__box {
  background: var(--porcelain);
  border-radius: 20px;
  padding: 2.4rem 2.6rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  max-width: 340px;
}
.ticimax-transfer__box p { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; margin: 1.1rem 0 0.3rem; }
.ticimax-transfer__box small { color: var(--ink-soft); font-size: 0.82rem; }
.ticimax-transfer__spin {
  width: 44px; height: 44px;
  margin: 0 auto;
  border: 3px solid var(--gold-pale);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: ticimaxSpin 0.8s linear infinite;
}
@keyframes ticimaxSpin { to { transform: rotate(360deg); } }

/* Dokunmatik cihazlarda İncele butonu her zaman görünür */
@media (hover: none) {
  .card__quick { opacity: 1; transform: none; background: rgba(29, 32, 29, 0.85); }
}

/* Güven şeridi */
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
  padding-top: 0.4rem;
}
.trust li {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.trust li::before { content: "✦"; color: var(--gold); font-size: 0.62rem; }

/* Mobil sabit satın alma çubuğu (ürün sayfası) */
.buybar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 75;
  display: none;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1.1rem calc(0.8rem + env(safe-area-inset-bottom));
  background: var(--porcelain);
  border-top: 1px solid var(--line);
  box-shadow: 0 -14px 40px -20px rgba(29, 32, 29, 0.35);
}
.buybar__price { font-weight: 700; font-size: 1.1rem; white-space: nowrap; }
.buybar__price small { display: block; font-size: 0.66rem; font-weight: 500; color: var(--ink-soft); }
.buybar .btn { flex: 1; padding: 0.85rem 1rem; }
@media (max-width: 760px) {
  body.has-buybar .buybar { display: flex; }
  body.has-buybar main { padding-bottom: 86px; }
  body.has-buybar .whatsapp { bottom: calc(78px + env(safe-area-inset-bottom)); }
  body.has-buybar .wa-chat { bottom: calc(140px + env(safe-area-inset-bottom)); }
  body.has-buybar .to-top { bottom: calc(202px + env(safe-area-inset-bottom)); }
}

/* Video arka planlı bölüm (İmza İçerikler) */
.section--video { position: relative; overflow: hidden; }
.section-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.section-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(18, 20, 17, 0.92) 0%, rgba(18, 20, 17, 0.78) 45%, rgba(18, 20, 17, 0.92) 100%);
}
.section--video > .container { position: relative; z-index: 2; }
.section--video .ing-card { background: rgba(27, 30, 25, 0.82); }
.section--video .ing-card:hover { background: rgba(27, 30, 25, 0.92); }
@media (prefers-reduced-motion: reduce) {
  .section-video { display: none; }
}

/* Güney Kore vurgusu */
.hero__stamp {
  position: absolute;
  left: 3%;
  bottom: 4%;
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--porcelain);
  border: 1.5px solid var(--gold);
  color: var(--gold);
  display: grid; place-items: center;
  text-align: center;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  line-height: 1.45;
  transform: rotate(-8deg);
  box-shadow: var(--shadow-soft);
  animation: floaty 7s ease-in-out infinite;
  animation-delay: 1.1s;
}
.hero__stamp b { display: block; font-weight: 700; }
.hero__stamp span::first-line { font-size: 1.05rem; }
.origin-line {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* SSS — editoryal akordeon */
.faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 5vw, 5.5rem);
  align-items: start;
}
.faq-intro { position: sticky; top: 110px; }
.faq-contact { display: flex; gap: 0.7rem; flex-wrap: wrap; margin-top: 1.8rem; }

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 2rem 1fr auto;
  align-items: center;
  gap: 1.1rem;
  padding: 1.4rem 0.2rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold);
}
.faq__q {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.25;
  transition: color 0.3s;
}
.faq summary:hover .faq__q { color: var(--gold); }
.faq__icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  position: relative;
  flex-shrink: 0;
  transition: background 0.35s, border-color 0.35s, transform 0.35s var(--ease);
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: var(--ink);
  transition: background 0.35s, transform 0.35s var(--ease);
}
.faq__icon::before { width: 12px; height: 1.5px; }
.faq__icon::after { width: 1.5px; height: 12px; }
.faq summary:hover .faq__icon { border-color: var(--gold); }
.faq details[open] .faq__icon { background: var(--ink); border-color: var(--ink); transform: rotate(180deg); }
.faq details[open] .faq__icon::before, .faq details[open] .faq__icon::after { background: var(--porcelain); }
.faq details[open] .faq__icon::after { transform: rotate(90deg); }
.faq__a {
  padding: 0 3.4rem 1.5rem 3.1rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  max-width: 58ch;
}
.faq details[open] .faq__a { animation: faqIn 0.5s var(--ease); }
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}
.faq a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

/* Ürün detay */
.pd { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 4vw, 4rem); align-items: start; }
.pd__media { position: sticky; top: 96px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem; }
.pd__media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  padding: 0.5rem;
  box-sizing: border-box;
  border-radius: calc(var(--radius) - 6px);
}
.pd__body { display: flex; flex-direction: column; gap: 1rem; }
.pd__badges { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.pd__title { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.9rem, 3.5vw, 2.6rem); line-height: 1.12; }
.pd__price { font-size: 1.5rem; font-weight: 700; }
.pd__price small { font-size: 0.78rem; font-weight: 500; color: var(--ink-soft); margin-left: 0.5rem; }
.pd__buy { display: flex; gap: 0.8rem; flex-wrap: wrap; align-items: center; padding: 1.15rem 0; border-block: 1px solid var(--line); }
.qv__more { font-size: 0.82rem; font-weight: 600; color: var(--gold); }
.qv__more:hover { text-decoration: underline; text-underline-offset: 3px; }

/* Siparişlerim */
.orders { display: grid; gap: 1rem; max-width: 860px; }
.order-card { background: var(--porcelain); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.5rem; display: grid; gap: 0.8rem; }
.order-card__head { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; align-items: baseline; }
.order-card__no { font-weight: 700; letter-spacing: 0.04em; }
.order-card__date { font-size: 0.8rem; color: var(--ink-soft); }
.order-card__items { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.7; }
.order-card__foot { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--line); padding-top: 0.9rem; flex-wrap: wrap; gap: 0.6rem; }
.order-card__total { font-weight: 700; }
.pill { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.35rem 0.8rem; border-radius: 999px; background: var(--gold-pale); color: var(--gold); }

/* 404 */
.notfound { min-height: 55vh; display: grid; place-items: center; text-align: center; padding: 3rem 1rem; }
.notfound h1 { font-family: var(--font-display); font-size: clamp(3rem, 8vw, 5rem); font-weight: 500; }
.notfound p { color: var(--ink-soft); margin: 0.6rem 0 1.6rem; }

@media (max-width: 1020px) {
  .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
  .summary { position: static; }
  .pd { grid-template-columns: 1fr; }
  .pd__media { position: static; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-intro { position: static; }
  .faq__a { padding-right: 0.5rem; }
}
@media (max-width: 760px) {
  .nav__brand img { height: 46px; }
  .footer__logo-img { height: 64px; }
  .toolbar { flex-direction: column; align-items: flex-start; }
  .cart-item { grid-template-columns: 72px 1fr; }
  .cart-item__img { width: 72px; height: 72px; }
  .cart-item__right { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; align-items: center; }
  .form-grid { grid-template-columns: 1fr; }
}
