:root {
  --ink: #1a1613;
  --ink-soft: #47403a;
  --cream: #f3f1ec;
  --cream-2: #ebe8e1;
  --paper: #faf9f7;
  --caramel: #a9754e;
  --caramel-deep: #7c5237;
  --gold: #c2a05a;
  --muted: #8c8178;
  --line: rgba(26, 20, 16, 0.08);
  --radius: 22px;
  --shadow-sm: 0 4px 20px rgba(26, 20, 16, 0.06);
  --shadow-lg: 0 30px 70px rgba(26, 20, 16, 0.14);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

em { font-style: italic; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Reveal animation (yalnızca JS aktifse gizle, aksi halde içerik görünür kalır) */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
  padding: 10px 0;
}
.site-header.scrolled {
  background: rgba(251, 247, 240, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
}

.navbar {
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
}

.logo { display: flex; align-items: center; }
.logo-img {
  height: 84px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
  transition: height 0.4s var(--ease);
}
.site-header.scrolled .logo-img { height: 68px; }

.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links > li > a {
  display: inline-block;
  padding: 10px 16px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: 30px;
  transition: color 0.2s, background 0.2s;
}
.nav-links > li > a:hover { color: var(--ink); background: rgba(26, 20, 16, 0.05); }

.nav-cta {
  background: var(--ink) !important;
  color: var(--paper) !important;
  padding: 10px 22px !important;
}
.nav-cta:hover { background: var(--caramel) !important; color: #fff !important; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: 0.3s; }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 32px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 78% 18%, rgba(169, 117, 78, 0.28), transparent 60%),
    radial-gradient(760px 620px at 12% 92%, rgba(124, 82, 55, 0.24), transparent 58%),
    linear-gradient(160deg, #261c14 0%, #17110d 55%, #120d0a 100%);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 50% 40%, transparent 55%, rgba(10, 7, 5, 0.55) 100%);
}
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  will-change: transform;
}
.glow.g1 {
  width: 600px; height: 600px;
  top: -12%; right: 2%;
  background: radial-gradient(circle, rgba(217, 164, 65, 0.55), transparent 70%);
  animation: glow-drift-1 11s ease-in-out infinite;
}
.glow.g2 {
  width: 560px; height: 560px;
  bottom: -18%; left: -4%;
  background: radial-gradient(circle, rgba(169, 117, 78, 0.6), transparent 70%);
  animation: glow-drift-2 14s ease-in-out infinite;
}
.glow.g3 {
  width: 420px; height: 420px;
  top: 28%; left: 40%;
  background: radial-gradient(circle, rgba(124, 82, 55, 0.5), transparent 70%);
  animation: glow-drift-3 17s ease-in-out infinite;
}
@keyframes glow-drift-1 {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(-160px, 130px) scale(1.25); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes glow-drift-2 {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(180px, -120px) scale(1.3); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes glow-drift-3 {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(-130px, -90px) scale(1.2); }
  66%  { transform: translate(120px, 90px) scale(0.85); }
  100% { transform: translate(0, 0) scale(1); }
}

/* Yukarı süzülen ışıltılı parçacıklar */
.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}
.particle {
  position: absolute;
  bottom: -24px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 205, 145, 0.95), rgba(233, 205, 145, 0) 70%);
  opacity: 0;
  animation: particle-rise linear infinite;
}
@keyframes particle-rise {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  12%  { opacity: 0.85; }
  88%  { opacity: 0.85; }
  100% { transform: translateY(-108vh) translateX(40px); opacity: 0; }
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 30px) scale(1.08); }
}

.hero-content { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; text-align: center; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.9);
  padding: 9px 18px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 28px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(194, 160, 90, 0.25); }

.hero h1 {
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  color: #fdfbf7;
  margin-bottom: 24px;
}
.hero h1 em { color: var(--gold); }

.hero p {
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 620px;
  margin: 0 auto 40px;
}

.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 64px; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--paper);
  padding: 16px 32px;
  border-radius: 40px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.98rem;
  border: none;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--caramel); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(201, 138, 61, 0.35); }
.btn-primary .arrow { transition: transform 0.3s var(--ease); }
.btn-primary:hover .arrow { transform: translateX(4px); }
.btn-primary.full { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink);
  border: 1.5px solid rgba(26, 20, 16, 0.18);
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: var(--ink); background: rgba(26, 20, 16, 0.04); }

.hero-stats { display: inline-flex; gap: 48px; flex-wrap: wrap; justify-content: center; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-family: 'Fraunces', serif; font-size: 2.2rem; font-weight: 600; color: #fff; }
.hero-stats span { font-size: 0.85rem; color: rgba(255, 255, 255, 0.62); margin-top: 2px; }

/* Koyu hero üzerinde butonlar */
.hero .btn-primary { background: var(--gold); color: #201811; }
.hero .btn-primary:hover { background: #fff; box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3); }
.hero .btn-ghost { color: #fff; border-color: rgba(255, 255, 255, 0.4); }
.hero .btn-ghost:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; }

/* Koyu hero üzerinde header (kaydırılmadan önce açık renk) */
.site-header:not(.scrolled) .nav-links > li > a { color: rgba(255, 255, 255, 0.88); }
.site-header:not(.scrolled) .nav-links > li > a:hover { color: #fff; background: rgba(255, 255, 255, 0.14); }
.site-header:not(.scrolled) .nav-cta {
  background: rgba(255, 255, 255, 0.14) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.site-header:not(.scrolled) .nav-cta:hover { background: var(--gold) !important; color: #201811 !important; border-color: var(--gold); }
.site-header:not(.scrolled) .logo-img { filter: brightness(0) invert(1); mix-blend-mode: normal; }
.site-header:not(.scrolled) .menu-toggle span { background: #fff; }

/* Section basics */
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 16px;
}
.eyebrow.center { display: block; text-align: center; }
.eyebrow.light { color: var(--gold); }

.section-head { max-width: 640px; margin: 0 auto 60px; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--ink); margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* Referans şeridi (marquee) */
.marquee-section {
  padding: 44px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.marquee-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 24px;
}
.marquee {
  overflow: hidden;
  -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: flex;
  align-items: center;
  width: max-content;
  animation: marquee-scroll 34s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.ref-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  margin-right: 34px;
  width: 190px;
  height: 96px;
  padding: 20px 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}
.ref-chip img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* About */
.about { padding: 120px 32px; max-width: 1220px; margin: 0 auto; }
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 72px; align-items: center; }

.about-visual { position: relative; }
.visual-card {
  height: 460px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(150deg, var(--caramel), var(--gold) 55%, #e8c98a);
  box-shadow: var(--shadow-lg);
}
.visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.visual-badge {
  position: absolute;
  bottom: -24px;
  right: -20px;
  background: var(--ink);
  color: var(--paper);
  padding: 22px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.visual-badge strong { display: block; font-family: 'Fraunces', serif; font-size: 2rem; color: var(--gold); }
.visual-badge span { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(247,241,232,0.7); }

.about-text h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); margin-bottom: 22px; }
.about-text h2 em { color: var(--caramel); }
.about-text p { color: var(--ink-soft); margin-bottom: 18px; font-size: 1.04rem; }

.feature-list { margin-top: 28px; display: grid; gap: 14px; }
.feature-list li { display: flex; align-items: center; gap: 14px; font-weight: 500; color: var(--ink); }
.feature-list span {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 8px;
  background: rgba(201, 138, 61, 0.15);
  color: var(--caramel-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700;
}

/* Products */
.products { padding: 120px 32px; max-width: 1220px; margin: 0 auto; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-img { height: 210px; position: relative; }
.product-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(26,20,16,0.06));
}
.sutlac { background: linear-gradient(140deg, #f3e2c8, #e9cfa0); }
.kazandibi { background: linear-gradient(140deg, #ecd3ad, #d9a85f); }
.muhallebi { background: linear-gradient(140deg, #f6ede0, #ecd9bd); }
.tavukgogsu { background: linear-gradient(140deg, #efdcc0, #dcb87e); }
.supangle { background: linear-gradient(140deg, #c9a27a, #8a5a34); }
.gullac { background: linear-gradient(140deg, #f5e7de, #e6c3c0); }

.product-body { padding: 26px 26px 28px; }
.product-body h3 { font-size: 1.4rem; margin-bottom: 8px; }
.product-body p { color: var(--muted); font-size: 0.94rem; margin-bottom: 18px; }
.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--caramel-deep);
  background: rgba(201, 138, 61, 0.12);
  padding: 6px 14px;
  border-radius: 30px;
}

.catalog-note { text-align: center; color: var(--muted); margin-top: 48px; font-size: 1rem; }
.catalog-note a { color: var(--caramel); font-weight: 600; border-bottom: 1px solid currentColor; }

/* Quality (dark section) */
.quality {
  background: var(--ink);
  color: var(--paper);
  padding: 120px 32px;
  position: relative;
  overflow: hidden;
}
.quality::before {
  content: "";
  position: absolute; top: -30%; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(217,164,65,0.12), transparent 60%);
}
.quality .section-head { position: relative; }
.quality .section-head h2 { color: var(--paper); }
.quality-grid {
  position: relative;
  max-width: 1220px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.quality-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 34px 30px;
  backdrop-filter: blur(6px);
  transition: transform 0.4s var(--ease), background 0.4s;
}
.quality-card:hover { transform: translateY(-6px); background: rgba(255, 255, 255, 0.07); }
.quality-num {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}
.quality-card h3 { font-size: 1.3rem; color: var(--paper); margin-bottom: 10px; }
.quality-card p { color: rgba(247, 241, 232, 0.62); font-size: 0.92rem; }

/* Hijyen — beyaz zeminli ayrı bölüm */
.hygiene { background: #fff; padding: 100px 32px; }
.hygiene-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.hygiene-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); color: var(--ink); margin: 12px 0 16px; }
.hygiene-head p { color: var(--muted); font-size: 1.02rem; line-height: 1.7; }
.hygiene-list { list-style: none; display: grid; gap: 22px; }
.hygiene-list li { display: flex; gap: 16px; align-items: flex-start; }
.hygiene-list .check {
  flex-shrink: 0;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(169,117,78,0.1);
  color: var(--caramel-deep);
}
.hygiene-list .check svg { width: 20px; height: 20px; }
.hygiene-list strong { display: block; color: var(--ink); font-size: 1.05rem; margin-bottom: 4px; }
.hygiene-list p { color: var(--muted); font-size: 0.92rem; line-height: 1.6; }
@media (max-width: 820px) {
  .hygiene-inner { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 640px) {
  .hygiene { padding: 64px 20px; }
}

/* Reviews */
.reviews { padding: 120px 32px; max-width: 1220px; margin: 0 auto; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.review-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 34px 32px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.quote { font-family: 'Fraunces', serif; font-size: 4rem; line-height: 0.4; color: var(--caramel); opacity: 0.35; margin-bottom: 22px; }
.review-card p { color: var(--ink-soft); font-size: 1.06rem; margin-bottom: 22px; }
.reviewer { font-size: 0.86rem; font-weight: 600; color: var(--muted); }

/* Contact */
.contact { padding: 40px 32px 120px; }
.contact-grid {
  max-width: 1160px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 34px;
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}
.contact-grid::before {
  content: "";
  position: absolute; top: -40%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(217,164,65,0.16), transparent 60%);
}
.contact-left { position: relative; }
.contact-left h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); color: var(--paper); margin-bottom: 18px; }
.contact-lead { color: rgba(247, 241, 232, 0.65); margin-bottom: 32px; font-size: 1.02rem; }
.contact-info { display: grid; gap: 16px; }
.contact-info li { color: var(--paper); font-size: 0.98rem; display: grid; grid-template-columns: 90px 1fr; gap: 12px; align-items: baseline; }
.contact-info span { font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.contact-info a { color: var(--paper); transition: color 0.2s; }
.contact-info a:hover { color: var(--gold); }

.contact-form { position: relative; display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--paper);
  font-family: inherit;
  font-size: 0.95rem;
  resize: none;
  transition: border-color 0.2s, background 0.2s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(247, 241, 232, 0.45); }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
}
.contact-form .btn-primary { background: var(--gold); color: var(--ink); margin-top: 6px; }
.contact-form .btn-primary:hover { background: #fff; }

/* Sepet butonu (header) */
.nav-right { display: flex; align-items: center; gap: 12px; }
.cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.cart-btn:hover { background: rgba(26, 20, 16, 0.06); }
.cart-count {
  position: absolute;
  top: -3px;
  right: -3px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  background: var(--caramel);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: transform 0.25s var(--ease);
}
.cart-count.show { transform: scale(1); }
.site-header:not(.scrolled) .cart-btn { color: #fff; border-color: rgba(255, 255, 255, 0.3); }
.site-header:not(.scrolled) .cart-btn:hover { background: rgba(255, 255, 255, 0.12); }

/* Ürün kartı "Sepete Ekle" */
.product-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.add-btn {
  flex: none;
  border: none;
  cursor: pointer;
  background: var(--ink);
  color: var(--paper);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.84rem;
  padding: 10px 18px;
  border-radius: 30px;
  transition: background 0.2s, transform 0.1s;
}
.add-btn:hover { background: var(--caramel); }
.add-btn:active { transform: scale(0.95); }

/* Sepet çekmecesi */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 7, 5, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 200;
}
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 410px;
  max-width: 90vw;
  background: var(--paper);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.22);
}
.cart-drawer.open { transform: translateX(0); }
.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 26px 18px;
  border-bottom: 1px solid var(--line);
}
.cart-head h3 { font-size: 1.4rem; }
.cart-close { background: none; border: none; font-size: 2rem; line-height: 1; cursor: pointer; color: var(--muted); transition: color 0.2s; }
.cart-close:hover { color: var(--ink); }
.cart-items { flex: 1; overflow-y: auto; padding: 8px 26px; }
.cart-item { display: flex; align-items: center; gap: 12px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cart-item-name { flex: 1; font-weight: 600; font-size: 0.98rem; color: var(--ink); }
.qty { display: flex; align-items: center; gap: 10px; }
.qty button {
  width: 30px; height: 30px;
  border-radius: 9px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--ink);
  transition: background 0.2s;
}
.qty button:hover { background: var(--cream); }
.qty-input {
  width: 48px;
  height: 30px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  color: var(--ink);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  -moz-appearance: textfield;
  appearance: textfield;
}
.qty-input:focus { outline: none; border-color: var(--caramel); }
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.cart-remove { background: none; border: none; cursor: pointer; font-size: 1.1rem; opacity: 0.55; transition: opacity 0.2s; }
.cart-remove:hover { opacity: 1; }
.cart-empty { padding: 48px 26px; text-align: center; color: var(--muted); line-height: 1.7; }
.cart-empty-btn { display: inline-flex; margin-top: 22px; }
.cart-foot { padding: 20px 26px 26px; border-top: 1px solid var(--line); }
.cart-note { font-size: 0.82rem; color: var(--muted); margin-bottom: 14px; }
.whatsapp-btn { background: #25D366 !important; color: #fff !important; }
.whatsapp-btn:hover { background: #1eb457 !important; }

/* Ürün seçim pop-up */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 7, 5, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 202;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.product-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%) scale(0.98);
  width: 760px;
  max-width: 92vw;
  max-height: 90vh;
  overflow: hidden;
  background: var(--paper);
  border-radius: 24px;
  z-index: 203;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  display: grid;
  grid-template-columns: 300px 1fr;
  box-shadow: var(--shadow-lg);
}
.product-modal.open { opacity: 1; visibility: visible; transform: translate(-50%, -50%) scale(1); }
.modal-media { position: relative; }
.modal-img { width: 100%; height: 100%; min-height: 340px; }
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.modal-body { padding: 32px 34px; overflow-y: auto; }
.modal-body h3 { font-size: 1.75rem; margin-bottom: 8px; }
.modal-body > p { color: var(--muted); margin-bottom: 24px; font-size: 0.98rem; }
.modal-label { font-size: 0.76rem !important; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--caramel); margin-bottom: 12px !important; }
.pack-options { display: grid; gap: 10px; margin-bottom: 26px; }
.pack-opt {
  text-align: left;
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: border-color 0.2s, background 0.2s;
}
.pack-opt strong { font-size: 1rem; color: var(--ink); font-weight: 600; }
.pack-opt span { font-size: 0.85rem; color: var(--muted); }
.pack-opt:hover { border-color: var(--caramel); }
.pack-opt.selected { border-color: var(--caramel); background: rgba(201, 138, 61, 0.07); }
.modal-foot { display: flex; align-items: center; gap: 14px; }
.modal-foot .btn-primary { flex: 1; justify-content: center; }
@media (max-width: 640px) {
  .product-modal { grid-template-columns: 1fr; max-height: 92vh; }
  .modal-img { min-height: 190px; }
  .modal-body { padding: 24px; }
}

/* Yüzen WhatsApp butonu */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 190;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 14px 36px rgba(37, 211, 102, 0.5); }
.wa-float svg { width: 33px; height: 33px; position: relative; z-index: 1; }
.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  z-index: 0;
  animation: wa-pulse 2.2s ease-out infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(1.9); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float::before { animation: none; }
}

/* Footer */
.site-footer { background: var(--ink); border-top: 1px solid rgba(255,255,255,0.08); padding: 44px 32px; }
.footer-inner { max-width: 1220px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-logo-img {
  height: 48px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.site-footer p { color: rgba(247, 241, 232, 0.55); font-size: 0.86rem; }

/* Responsive */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .visual-card { height: 340px; }
  .contact-grid { grid-template-columns: 1fr; padding: 44px; }
}

@media (max-width: 720px) {
  .menu-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 20px;
    left: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 12px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 0.3s var(--ease);
  }
  .nav-links.open { opacity: 1; visibility: visible; transform: none; }
  .nav-links > li > a { display: block; text-align: center; padding: 13px 16px; }
  /* açık menü zemininde yazılar her zaman koyu okunur olsun */
  .site-header .nav-links > li > a,
  .site-header:not(.scrolled) .nav-links > li > a { color: var(--ink); }
  .site-header .nav-links > li > a:hover,
  .site-header:not(.scrolled) .nav-links > li > a:hover { color: var(--ink); background: rgba(26, 20, 16, 0.06); }
  .site-header .nav-links > li > a.nav-cta,
  .site-header:not(.scrolled) .nav-links > li > a.nav-cta {
    color: var(--paper) !important;
    background: var(--ink) !important;
    border: none !important;
    margin-top: 6px;
  }
  .nav-cta { text-align: center; }
  .hero-stats { gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-info li { grid-template-columns: 80px 1fr; }
}

/* Alt sayfa başlık şeridi (Hakkımızda vb.) */
.page-hero {
  position: relative;
  padding: 170px 32px 90px;
  overflow: hidden;
  text-align: center;
}
.page-hero-content { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.page-crumb { display: inline-block; color: rgba(255, 255, 255, 0.6); font-size: 0.85rem; margin-bottom: 16px; }
.page-crumb a { color: var(--gold); }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.7rem); color: #fdfbf7; margin-bottom: 14px; }
.page-hero p { color: rgba(255, 255, 255, 0.8); font-size: 1.12rem; }

/* Alt sayfa CTA */
.page-cta { text-align: center; padding: 20px 32px 120px; }
.page-cta h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 14px; }
.page-cta p { color: var(--muted); max-width: 560px; margin: 0 auto 32px; }
.page-cta .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Ana sayfa vitrin kartları */
.highlights { padding: 100px 32px; max-width: 1220px; margin: 0 auto; }
.highlight-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.highlight-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.highlight-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.hl-icon { font-size: 2rem; display: block; margin-bottom: 14px; }
.highlight-card h3 { font-size: 1.4rem; margin-bottom: 8px; }
.highlight-card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 16px; }
.hl-link { font-weight: 600; color: var(--caramel); }

/* Süreç bölümü — modern bağlantılı timeline */
.process { padding: 100px 32px; max-width: 1180px; margin: 0 auto; }
.section-sub { max-width: 560px; margin: 0 auto; }
.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
/* adımları birbirine bağlayan çizgi (rozet merkezinden geçer) */
.process-grid::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--caramel) 0%, rgba(169,117,78,0.25) 100%);
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 6px;
}
.step-badge {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--line);
  color: var(--caramel-deep);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.step-badge svg { width: 30px; height: 30px; }
.process-step:hover .step-badge {
  transform: translateY(-4px);
  border-color: var(--caramel);
  box-shadow: 0 12px 28px rgba(169,117,78,0.18);
}
.step-kicker {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 8px;
}
.process-step h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--ink); }
.process-step p { color: var(--muted); font-size: 0.92rem; line-height: 1.65; max-width: 240px; margin: 0 auto; }
.process-cta { text-align: center; margin-top: 56px; }

@media (max-width: 860px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 44px 28px; }
  .process-grid::before { display: none; }
}
@media (max-width: 640px) {
  .process { padding: 64px 22px; }
  /* mobilde sola hizalı dikey timeline: rozet solda, metin sağda */
  .process-grid { grid-template-columns: 1fr; gap: 34px; }
  .process-step {
    display: grid;
    grid-template-columns: 56px 1fr;
    column-gap: 20px;
    text-align: left;
    padding: 0;
  }
  .step-badge {
    grid-column: 1;
    grid-row: 1 / span 3;
    width: 56px;
    height: 56px;
    margin: 0;
  }
  .step-badge svg { width: 24px; height: 24px; }
  .step-kicker, .process-step h3, .process-step p { grid-column: 2; }
  .step-kicker { margin-top: 4px; }
  .process-step h3 { font-size: 1.15rem; }
  .process-step p { max-width: none; margin: 0; }
  /* adımları birbirine bağlayan dikey çizgi (rozet merkezinden) */
  .process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 56px;
    bottom: -38px;
    left: 28px;
    width: 2px;
    background: linear-gradient(180deg, var(--caramel) 0%, rgba(169,117,78,0.3) 100%);
  }
}

/* Ürün kartı gerçek görsel + tam genişlik buton */
.product-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.add-btn.full { width: 100%; justify-content: center; margin-top: 6px; }
.product-body h3 { margin-bottom: 14px; }

/* Katalog CTA (Ürünler sayfası) */
.catalog-cta { text-align: center; margin-top: 54px; }
.catalog-cta.catalog-top { margin-top: 0; margin-bottom: 48px; padding-bottom: 40px; border-bottom: 1px solid var(--line); }
.catalog-cta p { color: var(--muted); max-width: 560px; margin: 0 auto 20px; font-size: 0.98rem; }

/* İletişim haritası */
.contact-map { max-width: 1160px; margin: 0 auto; padding: 0 32px 100px; text-align: center; }
.map-wrap { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line); line-height: 0; }
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }
.map-link { display: inline-block; margin-top: 18px; color: var(--caramel); font-weight: 600; }
.map-link:hover { color: var(--caramel-deep); }

/* İletişim: formsuz tek sütun */
.contact-grid.contact-solo { grid-template-columns: 1fr; max-width: 780px; }
.contact-wa { display: inline-flex; margin-top: 28px; }
@media (max-width: 900px) { .contact-grid.contact-solo { max-width: 100%; } }

/* İletişim sosyal butonlar */
.contact-socials { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.insta-btn {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) !important;
  color: #fff !important;
  gap: 9px;
}
.insta-btn:hover { filter: brightness(1.08); }
.insta-btn svg { width: 20px; height: 20px; }

/* Hero'da dönen kelime */
.rotate-word { display: inline-block; transition: opacity 0.32s var(--ease), transform 0.32s var(--ease); }
.rotate-word.swap { opacity: 0; transform: translateY(-10px); }

/* Referans şeridi: "Burayı sizin için ayırdık" kutusu */
.ref-reserved {
  border: 1.5px dashed var(--caramel);
  color: var(--caramel);
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 0.98rem;
  text-align: center;
  line-height: 1.25;
  background: rgba(201, 138, 61, 0.04);
  transition: background 0.2s, transform 0.2s;
}
.ref-reserved:hover { background: rgba(201, 138, 61, 0.1); transform: translateY(-3px); }

/* Rezerve kutusu kahverengi kalp */
.reserved-heart { display: block; font-size: 1.35rem; line-height: 1; margin-bottom: 4px; }
.ref-reserved { font-size: 0.9rem; }

/* Yasal sayfalar */
.legal { max-width: 820px; margin: 0 auto; padding: 70px 32px 110px; }
.legal h2 { font-size: 1.5rem; margin: 34px 0 12px; color: var(--ink); }
.legal p, .legal li { color: var(--ink-soft); font-size: 1rem; line-height: 1.75; margin-bottom: 12px; }
.legal ul { padding-left: 22px; list-style: disc; margin-bottom: 16px; }
.legal a { color: var(--caramel); font-weight: 600; }
.legal .legal-updated { color: var(--muted); font-size: 0.85rem; margin-bottom: 24px; }

/* Footer yasal linkler */
.footer-right { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; justify-content: flex-end; }
.footer-links a { color: rgba(247, 241, 232, 0.7); font-size: 0.82rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
@media (max-width: 720px) { .footer-right { align-items: center; } .footer-links { justify-content: center; } }

/* Form KVKK onayı */
.form-consent { display: flex; align-items: flex-start; gap: 9px; font-size: 0.85rem; color: rgba(247,241,232,0.72); margin-top: 4px; line-height: 1.5; }
.form-consent input { margin-top: 3px; flex: none; width: 16px; height: 16px; accent-color: var(--gold); cursor: pointer; }
.form-consent a { color: var(--gold); text-decoration: underline; }

/* ---- Mobil ince ayarlar ---- */
@media (max-width: 640px) {
  .navbar { padding: 12px 18px; }
  .logo-img { height: 52px; }
  .site-header.scrolled .logo-img { height: 46px; }
  .cart-btn { width: 42px; height: 42px; }
  .nav-right { gap: 8px; }

  .hero { padding: 108px 20px 56px; }
  .hero h1 { font-size: clamp(2rem, 8.5vw, 2.6rem); margin-bottom: 18px; }
  .hero p { font-size: 1rem; margin-bottom: 30px; }
  .hero-actions { margin-bottom: 44px; }
  .hero-stats { gap: 22px; }
  .hero-stats strong { font-size: 1.7rem; }

  .page-hero { padding: 120px 20px 56px; }
  .page-hero h1 { font-size: clamp(1.9rem, 8vw, 2.5rem); }

  .about, .products, .quality, .reviews, .highlights { padding-top: 64px; padding-bottom: 64px; padding-left: 20px; padding-right: 20px; }
  .marquee-section { padding: 34px 0; }
  .section-head { margin-bottom: 38px; }
  .section-head h2, .about-text h2, .contact-left h2 { font-size: clamp(1.6rem, 7vw, 2.1rem); }
  .about-grid { gap: 36px; }
  .visual-card { height: 300px; }

  .contact { padding: 30px 18px 80px; }
  .contact-grid { padding: 30px 22px; border-radius: 22px; }
  .contact-map { padding: 0 18px 70px; }
  .map-wrap iframe { height: 320px; }

  .legal { padding: 46px 20px 72px; }
  .legal h2 { font-size: 1.3rem; }
  .btn-primary, .btn-ghost { padding: 14px 26px; font-size: 0.94rem; }
  .wa-float { width: 54px; height: 54px; bottom: 18px; right: 18px; }
}

/* Grid taşma düzeltmesi (mobilde form daralabilsin) */
.contact-grid { min-width: 0; }
.contact-grid > *, .contact-left, .contact-form, .form-row,
.contact-form input, .contact-form textarea { min-width: 0; max-width: 100%; }
.contact-info a { word-break: break-word; }

/* 404 sayfası */
.notfound-hero { text-align: center; }
.notfound-code {
  display: block;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(4.5rem, 16vw, 9rem);
  line-height: 1;
  color: var(--gold);
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.notfound-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }
.notfound-count { margin-top: 26px; color: rgba(247,241,232,0.6); font-size: 0.9rem; }
.notfound-count span { color: var(--gold); font-weight: 600; }
