/* =========================================================
   KAYI CEVİZ — Stil Dosyası
   Renk paleti, tipografi ve tüm bileşen stilleri burada.
   Renkleri değiştirmek için aşağıdaki :root değişkenlerini düzenleyin.
   ========================================================= */

:root {
  /* Ana renkler — ceviz teması */
  --brown-900: #3a2417;
  --brown-800: #4a2f1e;
  --brown-700: #5a3d2b;
  --brown-600: #6f4a33;
  --brown-500: #8a5c3d;
  --tan-300:   #c9a37a;
  --tan-200:   #e2c9a8;
  --cream-100: #f7efe3;
  --cream-50:  #fbf6ee;
  --olive-600: #5f6b3a;
  --olive-500: #7c8a4c;
  --gold-500:  #c8892e;
  --gold-400:  #dda84a;

  --ink:       #2c2016;
  --muted:     #7a6a5b;
  --white:     #ffffff;
  --line:      # e7dcc9;
  --line:      #e7dcc9;

  --radius:    16px;
  --radius-sm: 10px;
  --radius-lg: 26px;
  --shadow-sm: 0 2px 8px rgba(58, 36, 23, .06);
  --shadow:    0 12px 30px rgba(58, 36, 23, .10);
  --shadow-lg: 0 24px 60px rgba(58, 36, 23, .16);

  --font-head: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --container: 1180px;
  --header-h: 68px;
}

/* ===== TEMEL ===== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream-50);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
/* Dar ekranlarda kenarlara nefes payı */
@media (max-width: 720px) {
  .container { padding-inline: 28px; }
}

.section { padding: 90px 0; }
.section--tint { background: var(--cream-100); }

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 14px;
}

.section__title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.15;
  color: var(--brown-800);
  letter-spacing: -.01em;
}

.section__head { max-width: 640px; margin: 0 auto 54px; text-align: center; }
.section__lead { color: var(--muted); font-size: 1.06rem; margin-top: 14px; }

/* ===== BUTONLAR ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: .96rem;
  padding: 13px 26px;
  border-radius: 50px;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--brown-700); color: var(--cream-50); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--brown-800); box-shadow: 0 12px 28px rgba(90, 61, 43, .32); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--brown-700); border: 1.5px solid var(--tan-300); }
.btn--ghost:hover { background: var(--cream-100); border-color: var(--brown-500); }
.btn--wa { background: #25d366; color: #fff; }
.btn--wa:hover { background: #1eb457; }
.btn--block { width: 100%; }

/* ===== ÜST ŞERİT ===== */
.topbar {
  background: var(--brown-900);
  color: var(--tan-200);
  font-size: .82rem;
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; height: 38px; }
.topbar__lang { display: flex; align-items: center; gap: 8px; }
.lang-btn { color: var(--tan-200); font-size: .82rem; font-weight: 600; opacity: .6; padding: 2px 4px; }
.lang-btn.is-active { opacity: 1; color: var(--gold-400); }
.lang-sep { opacity: .35; }

/* ===== HEADER ===== */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 246, 238, .88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.header.is-scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 20px; }

.brand { display: flex; align-items: center; gap: 11px; }
.brand__mark { height: 46px; width: auto; }
.brand__text { font-family: var(--font-head); font-size: 1.35rem; color: var(--brown-800); font-weight: 500; }
.brand__text strong { color: var(--gold-500); font-weight: 700; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav__link { font-weight: 500; font-size: .96rem; color: var(--brown-700); position: relative; padding: 6px 0; }
.nav__link::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: var(--gold-500); transition: width .25s ease;
}
.nav__link:hover::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: 12px; }
.cart-toggle {
  position: relative; font-size: 1.3rem; width: 44px; height: 44px;
  border-radius: 12px; display: grid; place-items: center; transition: background .2s;
}
.cart-toggle:hover { background: var(--cream-100); }
.cart-count {
  position: absolute; top: 4px; right: 4px;
  background: var(--gold-500); color: #fff; font-size: .68rem; font-weight: 700;
  min-width: 18px; height: 18px; border-radius: 9px; display: grid; place-items: center;
  padding: 0 4px; transform: scale(0); transition: transform .2s;
}
.cart-count.is-visible { transform: scale(1); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; }
.nav-toggle span { width: 22px; height: 2px; background: var(--brown-700); border-radius: 2px; transition: .25s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero { position: relative; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(200, 137, 46, .18), transparent 45%),
    radial-gradient(circle at 15% 80%, rgba(95, 107, 58, .16), transparent 50%),
    linear-gradient(160deg, var(--cream-50) 0%, var(--cream-100) 100%);
}
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%236f4a33' stroke-opacity='0.05' stroke-width='2'%3E%3Cpath d='M60 20c14 0 24 12 24 28s-10 32-24 44C46 80 36 64 36 48s10-28 24-28z'/%3E%3Cpath d='M60 24v68'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 180px;
  opacity: .5;
}
.hero__inner {
  position: relative; z-index: 2; min-height: min(82vh, 720px);
  display: grid; grid-template-columns: 1.08fr .92fr;
  align-items: center; gap: 48px; padding-block: 70px;
}
.hero__content { max-width: 620px; }

/* Baskı fotoğraf (polaroid) efekti: beyaz paspartu + hafif eğim + tamga imza */
.hero__media { position: relative; justify-self: center; }
.hero__media::before {
  content: ""; position: absolute; inset: -16px;
  border: 1.5px solid var(--gold-400); opacity: .5;
  border-radius: 22px; transform: rotate(2.2deg);
}
.hero__frame {
  width: min(370px, 33vw); aspect-ratio: 4 / 4.95;
  background: var(--white); padding: 13px 13px 46px;
  border-radius: 12px; box-shadow: var(--shadow-lg);
  transform: rotate(-2.2deg); position: relative;
  transition: transform .45s ease;
}
.hero__media:hover .hero__frame { transform: rotate(-0.8deg); }
.hero__frame img { width: 100%; height: 100%; object-fit: cover; border-radius: 7px; }
.hero__frame::after {
  /* alt paspartuda altın tamga: imza/mühür */
  content: ""; position: absolute; bottom: 13px; left: 50%; transform: translateX(-50%);
  width: 34px; height: 16px; opacity: .9;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 44 20' fill='none' stroke='%23c8892e' stroke-width='2.6' stroke-linecap='round'%3E%3Cpath d='M6 3 L6 17'/%3E%3Cpath d='M22 17 L22 8 M22 8 L15 3 M22 8 L29 3'/%3E%3Cpath d='M38 3 L38 17'/%3E%3C/svg%3E") no-repeat center / contain;
}
.hero__chip {
  position: absolute; bottom: 84px; left: -34px;
  display: flex; align-items: center; gap: 10px;
  background: var(--white); padding: 10px 18px 10px 12px;
  border-radius: 14px; box-shadow: var(--shadow);
  font-weight: 600; font-size: .84rem; color: var(--brown-700);
  border: 1px solid var(--line);
}
.hero__chip img { width: 34px; height: auto; }
.hero__title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(2.3rem, 5.6vw, 4rem);
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--brown-900);
  margin-bottom: 22px;
}
.hero__text { font-size: 1.15rem; color: var(--brown-600); max-width: 540px; margin-bottom: 32px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero__badges { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 12px 26px; }
.hero__badges li { display: flex; align-items: center; gap: 8px; font-size: .92rem; font-weight: 500; color: var(--brown-700); }
.hero__badges span:first-child { font-size: 1.1rem; }

/* ===== İSTATİSTİKLER ===== */
.stats { background: var(--brown-800); color: var(--cream-100); position: relative; overflow: hidden; }
.stats::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}
.stats::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cg fill='none' stroke='%23dda84a' stroke-opacity='0.07' stroke-width='2'%3E%3Cellipse cx='100' cy='100' rx='34' ry='40'/%3E%3Cpath d='M100 60 C106 78 106 122 100 140'/%3E%3Cpath d='M78 74 C72 90 72 110 78 126 M122 74 C128 90 128 110 122 126'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 190px;
}
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; padding: 46px 22px; position: relative; z-index: 1;
}
.stat { text-align: center; }
.stat__num { display: block; font-family: var(--font-head); font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 600; color: var(--gold-400); }
.stat__label { font-size: .9rem; color: var(--tan-200); }

/* ===== HİKAYEMİZ ===== */
.about__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.about__media { position: relative; }
/* fotoğrafın arkasında ofsetli altın çerçeve */
.about__media::after {
  content: ""; position: absolute; inset: -14px 14px 14px -14px;
  border: 1.5px solid var(--gold-400); border-radius: var(--radius-lg);
  opacity: .5; pointer-events: none;
}
.about__img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.about__badge {
  position: absolute; bottom: -18px; right: -18px;
  background: var(--white); border-radius: var(--radius); padding: 16px 22px;
  box-shadow: var(--shadow); text-align: center;
}
.about__badge strong { display: block; font-family: var(--font-head); color: var(--brown-800); font-size: 1.1rem; }
.about__badge span { font-size: .82rem; color: var(--muted); }
.about__content p { color: var(--brown-600); margin-top: 16px; }
.ticks { list-style: none; padding: 0; margin-top: 26px; display: grid; gap: 12px; }
.ticks li { position: relative; padding-left: 32px; color: var(--brown-700); font-weight: 500; }
.ticks li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--olive-500); color: #fff; font-size: .72rem; font-weight: 700;
  display: grid; place-items: center;
}

/* Fotoğraf yer tutucular (placeholder) */
.ph {
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(45deg, var(--tan-200) 0 12px, var(--cream-100) 12px 24px);
  background-blend-mode: multiply;
  display: grid; place-items: center;
  font-size: 3rem; color: var(--brown-500);
  position: relative; overflow: hidden; min-height: 240px;
  border: 1px solid var(--line);
}
.ph::after {
  content: attr(data-ph);
  position: absolute; bottom: 12px; left: 12px; right: 12px;
  font-family: var(--font-body); font-size: .72rem; font-weight: 600;
  color: var(--brown-700); background: rgba(255,255,255,.82);
  padding: 5px 10px; border-radius: 20px; text-align: center;
}
.ph--tall { min-height: 420px; }

/* ===== ÜRÜNLER ===== */
.product-grid {
  display: grid; gap: 28px;
  /* Ürün sayısına uyum sağlar ve ortalar (2 ürün varken de dengeli durur) */
  grid-template-columns: repeat(auto-fit, minmax(280px, 400px));
  justify-content: center;
}
.pcard {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .25s ease;
}
.pcard:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pcard__media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.pcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.pcard:hover .pcard__media img { transform: scale(1.05); }
.pcard__media .ph { border-radius: 0; border: none; height: 100%; min-height: 0; }
.pcard__tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--olive-600); color: #fff; font-size: .72rem; font-weight: 600;
  padding: 4px 12px; border-radius: 20px;
}
.pcard__body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.pcard__title { font-family: var(--font-head); font-size: 1.28rem; color: var(--brown-800); font-weight: 600; }
.pcard__desc { color: var(--muted); font-size: .92rem; margin: 8px 0 18px; flex: 1; }
.pcard__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.pcard__price { font-family: var(--font-head); font-size: 1.3rem; font-weight: 600; color: var(--brown-700); }
.pcard__price small { font-size: .82rem; color: var(--muted); font-weight: 400; }
.pcard__add {
  background: var(--gold-500); color: #fff; font-weight: 600; font-size: .88rem;
  padding: 10px 18px; border-radius: 50px; transition: background .2s, transform .15s;
  display: inline-flex; align-items: center; gap: 6px;
}
.pcard__add:hover { background: var(--gold-400); }
.pcard__add:active { transform: scale(.96); }
.products__note { text-align: center; color: var(--muted); font-size: .86rem; margin-top: 34px; }

/* Paket (varyant) seçimi */
.pcard__variants { margin-bottom: 16px; }
.pcard__variants-label { display: block; font-size: .78rem; font-weight: 600; color: var(--muted); margin-bottom: 8px; letter-spacing: .02em; }
.pcard__pills { display: flex; gap: 8px; flex-wrap: wrap; }
.pill {
  padding: 7px 16px; border-radius: 50px; font-size: .88rem; font-weight: 600;
  border: 1.5px solid var(--line); color: var(--brown-600); background: var(--white);
  transition: border-color .15s, background .15s, color .15s;
}
.pill:hover { border-color: var(--tan-300); }
.pill.is-active { background: var(--brown-700); border-color: var(--brown-700); color: var(--cream-50); }

/* Stokta olmayan ürün */
.pcard--soldout .pcard__media img,
.pcard--soldout .pcard__media .ph { filter: grayscale(.55) opacity(.75); }
.pcard__soldout {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(-6deg);
  background: rgba(58, 36, 23, .88); color: var(--cream-100);
  font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 6px; white-space: nowrap;
  border: 1px solid rgba(247, 239, 227, .35); box-shadow: var(--shadow-sm);
}
.pcard--soldout .pcard__title { color: var(--muted); }
.pcard__add--disabled { background: var(--line); color: var(--muted); cursor: not-allowed; }
.pcard__add--disabled:hover { background: var(--line); }
.pcard--soldout .pcard__price small { color: var(--muted); font-style: italic; }

/* ===== KALİTE ===== */
.quality__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 70px; }
.qcard {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 24px; box-shadow: var(--shadow-sm); transition: transform .2s;
}
.qcard:hover { transform: translateY(-4px); }
.qcard__icon {
  width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center;
  background: var(--cream-100); margin-bottom: 18px;
  color: var(--brown-600); border: 1px solid var(--line);
}
.qcard__icon svg { width: 30px; height: 30px; }
.qcard h3 { font-family: var(--font-head); font-size: 1.16rem; color: var(--brown-800); font-weight: 600; margin-bottom: 8px; }
.qcard p { color: var(--muted); font-size: .92rem; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
/* adımları birbirine bağlayan kesikli çizgi */
.steps::before {
  content: ""; position: absolute; top: 27px; left: 13%; right: 13%;
  border-top: 2px dashed var(--tan-300);
}
.step { position: relative; }
.step { text-align: center; padding: 0 10px; }
.step__no {
  display: grid; place-items: center; width: 54px; height: 54px; margin: 0 auto 16px;
  border-radius: 50%; background: var(--brown-700); color: var(--cream-50);
  font-family: var(--font-head); font-size: 1.4rem; font-weight: 600;
  border: 4px solid var(--cream-100); box-shadow: 0 0 0 1px var(--tan-300);
}
.step h4 { font-family: var(--font-head); color: var(--brown-800); font-size: 1.08rem; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: .88rem; }

/* ===== GALERİ ===== */
.gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gitem {
  position: relative; margin: 0; border-radius: var(--radius);
  overflow: hidden; aspect-ratio: 1; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.gitem img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gitem:hover img { transform: scale(1.06); }
.gitem figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 22px 14px 12px; font-size: .82rem; font-weight: 600; color: #fff;
  background: linear-gradient(transparent, rgba(58, 36, 23, .78));
}
.gitem:nth-child(1) { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }

/* ===== İLETİŞİM ===== */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact__info p { color: var(--muted); margin: 14px 0 26px; }
.contact__list { list-style: none; padding: 0; display: grid; gap: 16px; }
.contact__list li { display: flex; align-items: center; gap: 14px; font-size: 1rem; color: var(--brown-700); }
.contact__ic {
  width: 42px; height: 42px; border-radius: 12px; background: var(--cream-100);
  display: grid; place-items: center; font-size: 1.15rem; flex-shrink: 0;
}
.contact__list a:hover { color: var(--gold-500); }

.contact__form {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .86rem; font-weight: 600; color: var(--brown-700); margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: inherit; font-size: .96rem; color: var(--ink); background: var(--cream-50);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--gold-500); box-shadow: 0 0 0 3px rgba(200, 137, 46, .15);
}
.field textarea { resize: vertical; }

/* ===== FOOTER ===== */
.footer { background: var(--brown-900); color: var(--tan-200); padding: 46px 0 30px; }
.footer__inner { display: grid; grid-template-columns: 1fr auto; gap: 24px 40px; align-items: center; }
.footer__brand { display: flex; align-items: center; gap: 14px; }
.footer__brand img { height: 46px; width: auto; }
.footer__brand strong { display: block; font-family: var(--font-head); color: var(--cream-100); font-size: 1.15rem; }
.footer__brand span { font-size: .85rem; opacity: .8; }
.footer__nav { display: flex; gap: 24px; }
.footer__nav a { font-size: .92rem; opacity: .85; transition: opacity .2s, color .2s; }
.footer__nav a:hover { opacity: 1; color: var(--gold-400); }
.footer__copy {
  grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 40px; font-size: .82rem; opacity: .7; position: relative; text-align: center;
}
.footer__copy::before {
  content: ""; position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 36px; height: 16px; opacity: .85;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 44 20' fill='none' stroke='%23dda84a' stroke-width='2.6' stroke-linecap='round'%3E%3Cpath d='M6 3 L6 17'/%3E%3Cpath d='M22 17 L22 8 M22 8 L15 3 M22 8 L29 3'/%3E%3Cpath d='M38 3 L38 17'/%3E%3C/svg%3E") no-repeat center / contain;
}

/* ===== SEPET PANELİ ===== */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(44, 32, 22, .5);
  opacity: 0; visibility: hidden; transition: .3s; z-index: 90;
}
.cart-overlay.is-open { opacity: 1; visibility: visible; }
.cart {
  position: fixed; top: 0; right: 0; height: 100%; width: min(400px, 90vw);
  background: var(--cream-50); z-index: 100; box-shadow: var(--shadow-lg);
  transform: translateX(100%); transition: transform .32s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
}
.cart.is-open { transform: translateX(0); }
.cart__head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.cart__head h3 { font-family: var(--font-head); font-size: 1.3rem; color: var(--brown-800); }
.cart__close { font-size: 1.2rem; width: 38px; height: 38px; border-radius: 10px; color: var(--brown-700); transition: background .2s; }
.cart__close:hover { background: var(--cream-100); }
.cart__body { flex: 1; overflow-y: auto; padding: 18px 24px; }
.cart__empty { text-align: center; color: var(--muted); padding: 50px 20px; }
.cart__empty span { font-size: 2.4rem; display: block; margin-bottom: 12px; }

.citem { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.citem__thumb { width: 60px; height: 60px; border-radius: 12px; background: var(--cream-100); display: grid; place-items: center; font-size: 1.5rem; flex-shrink: 0; }
.citem__info { flex: 1; min-width: 0; }
.citem__name { font-weight: 600; font-size: .95rem; color: var(--brown-800); }
.citem__price { font-size: .85rem; color: var(--muted); }
.citem__ctrls { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.qty { display: flex; align-items: center; gap: 0; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.qty button { width: 28px; height: 28px; font-size: 1rem; color: var(--brown-700); background: var(--white); transition: background .15s; }
.qty button:hover { background: var(--cream-100); }
.qty span { min-width: 30px; text-align: center; font-weight: 600; font-size: .9rem; }
.citem__remove { font-size: .78rem; color: #b34a3a; opacity: .8; }
.citem__remove:hover { opacity: 1; text-decoration: underline; }

.cart__foot { padding: 20px 24px; border-top: 1px solid var(--line); background: var(--white); }
.cart__total { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.cart__total strong { font-family: var(--font-head); font-size: 1.5rem; color: var(--brown-800); }
.cart__hint { font-size: .78rem; color: var(--muted); margin-bottom: 16px; }
.cart__foot .btn { margin-bottom: 10px; }

/* ===== SABİT WHATSAPP ===== */
.wa-float {
  position: fixed; bottom: 24px; left: 24px; z-index: 80;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .45);
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 12px 30px rgba(37, 211, 102, .55); }

/* ===== ANİMASYON ===== */
[data-animate] { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
[data-animate].is-in { opacity: 1; transform: none; }

/* =========================================================
   ESTETİK CİLA — doku, başlık vurgusu, şerit, söz bandı
   ========================================================= */

/* İnce kağıt/grain dokusu — içeriğin hafifçe üstünde, tıklamayı engellemez */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 40; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.035; mix-blend-mode: multiply;
}

/* Hero başlıkta italik vurgu */
.hero__title em {
  font-style: italic; font-weight: 500; color: var(--gold-500);
  position: relative; white-space: nowrap;
}
.hero__title em::after {
  content: ""; position: absolute; left: 2%; right: 2%; bottom: 4px; height: 8px;
  background: var(--gold-400); opacity: 0.22; border-radius: 6px; z-index: -1;
}

/* Butonlarda ince harf aralığı */
.btn { letter-spacing: .01em; }

/* ---- GÜVEN ŞERİDİ ---- */
.marquee {
  background: var(--brown-900); overflow: hidden; padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track { display: inline-flex; align-items: center; white-space: nowrap; animation: marquee 34s linear infinite; }
.marquee__item { font-family: var(--font-head); font-size: 1.02rem; color: var(--cream-100); padding: 0 22px; font-weight: 500; }
.marquee__dot { color: var(--gold-500); font-size: .7rem; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ---- SÖZÜMÜZ BANDI ---- */
.promise {
  position: relative; padding: 96px 0; text-align: center; color: var(--cream-100);
  background: linear-gradient(150deg, var(--brown-800), var(--brown-900));
  overflow: hidden;
}
.promise::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cg fill='none' stroke='%23dda84a' stroke-opacity='0.06' stroke-width='2'%3E%3Cpath d='M100 40c22 0 38 20 38 46s-16 52-38 70c-22-18-38-44-38-70s16-46 38-46z'/%3E%3Cpath d='M100 46v104'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 260px;
}
.promise__inner { position: relative; max-width: 820px; }
.promise__logo { width: 210px; height: auto; display: block; margin: 0 auto 26px; }
.promise__quote {
  font-family: var(--font-head); font-weight: 500; font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.15rem); line-height: 1.35; margin: 10px 0 22px;
  letter-spacing: -.01em;
}
.promise__sign { color: var(--tan-200); font-size: .98rem; letter-spacing: .04em; }

/* ---- HİKAYE ROZETİ (sertifika) ---- */
.about__badge--cert { display: flex; align-items: center; gap: 12px; text-align: left; }
.about__badge--cert img { width: 58px; height: auto; flex-shrink: 0; }

/* ---- SERTİFİKA BANDI ---- */
.certband { background: var(--cream-100); padding: 70px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.certband__inner { display: grid; grid-template-columns: auto 1fr; gap: 40px; align-items: center; }
.certband__logo { width: 132px; height: auto; filter: drop-shadow(0 10px 20px rgba(63, 102, 38, .18)); }
.certband__text .section__title { font-size: clamp(1.4rem, 2.6vw, 2rem); margin-bottom: 12px; }
.certband__text p { color: var(--brown-600); max-width: 640px; }

/* ---- CEVİZİN FAYDALARI ---- */
.benefits__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.bcard {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .25s;
}
.bcard:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.bcard__icon {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: var(--cream-100); margin-bottom: 16px;
  color: var(--brown-600); border: 1px solid var(--line);
}
.bcard__icon svg { width: 29px; height: 29px; }
.bcard h3 { font-family: var(--font-head); font-size: 1.14rem; color: var(--brown-800); font-weight: 600; margin-bottom: 6px; }
.bcard p { color: var(--muted); font-size: .93rem; }

/* ---- Bölüm başlıklarında Kayı tamgası süsü ---- */
.section__head::before {
  content: ""; display: block; width: 42px; height: 19px;
  margin: 0 auto 12px; opacity: .95;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 44 20' fill='none' stroke='%23c8892e' stroke-width='2.6' stroke-linecap='round'%3E%3Cpath d='M6 3 L6 17'/%3E%3Cpath d='M22 17 L22 8 M22 8 L15 3 M22 8 L29 3'/%3E%3Cpath d='M38 3 L38 17'/%3E%3C/svg%3E") no-repeat center / contain;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 940px) {
  .hero__inner { grid-template-columns: 1fr; gap: 44px; min-height: 0; padding-block: 56px 64px; }
  .hero__media { justify-self: center; }
  .hero__frame { width: min(320px, 78vw); }
  .hero__chip { left: -6px; bottom: 20px; }
}

@media (max-width: 940px) {
  .about__grid, .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__media { max-width: 480px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .quality__grid { grid-template-columns: repeat(2, 1fr); }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .certband__inner { grid-template-columns: 1fr; text-align: center; gap: 22px; justify-items: center; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 34px 20px; }
  .steps::before { display: none; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .nav {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream-50); border-bottom: 1px solid var(--line);
    padding: 10px 22px 20px; box-shadow: var(--shadow);
    transform: translateY(-140%); transition: transform .3s ease; z-index: 40;
  }
  .nav.is-open { transform: translateY(0); }
  .nav__link { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav__link::after { display: none; }
  .nav-toggle { display: flex; }
  .topbar__inner span:first-child { max-width: 62%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .hero__badges { gap: 10px 18px; }
  .footer__inner { grid-template-columns: 1fr; text-align: center; }
  .footer__brand { justify-content: center; }
  .footer__nav { justify-content: center; flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .quality__grid { grid-template-columns: 1fr; }
  .benefits__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gitem:nth-child(1) { grid-column: span 2; grid-row: auto; }
  .about__badge { right: 12px; bottom: -14px; padding: 12px 16px; }
  .wa-float { bottom: 18px; left: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  [data-animate] { opacity: 1; transform: none; transition: none; }
  .marquee__track { animation: none; }
}
