/* ============================================================
   byperice.atelier — Stil Dosyası
   Palet: sıcak fildişi zemin, kahve mürekkep, amber vurgu
   ============================================================ */

:root {
  --bg: #FBF7F1;
  --bg-2: #F3EBDF;
  --card: #FFFFFF;
  --ink: #2E241D;
  --ink-soft: #7A6A5C;
  --line: #E8DECF;
  --accent: #C4763B;
  --accent-deep: #9C5423;
  --accent-soft: #F6E3D2;
  --green: #6F7F5E;
  --wa: #1FAF57;
  --wa-deep: #168A43;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(46, 36, 29, 0.08);
  --shadow-lg: 0 24px 60px rgba(46, 36, 29, 0.16);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, system-ui, sans-serif;
}

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

[hidden] { display: none !important; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container { width: min(1160px, 100% - 48px); margin-inline: auto; }

/* ---------- Tipografi ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.12; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.6rem, 5.2vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
h1 em, h2 em { font-style: italic; color: var(--accent); }

.overline {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

/* ---------- Üst duyuru ---------- */
.topbar {
  background: var(--ink);
  color: #EFE6D9;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 8px 16px;
  white-space: nowrap;
  overflow: hidden;
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 241, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.header.scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 24px rgba(46,36,29,0.06); }

.header-in { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 72px; }

.logo {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 600; letter-spacing: -0.01em;
}
.logo i { font-style: italic; font-weight: 400; color: var(--accent); }
.logo-flame { color: var(--accent); flex-shrink: 0; }

.nav { display: flex; gap: 28px; }
.nav a {
  font-size: 0.92rem; font-weight: 500; color: var(--ink-soft);
  transition: color 0.2s; position: relative; padding: 4px 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: var(--accent); border-radius: 2px; transition: width 0.25s;
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 8px; }

.cart-btn {
  position: relative; display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  transition: background 0.2s;
}
.cart-btn:hover { background: var(--accent-soft); }
.cart-count {
  position: absolute; top: 2px; right: 0;
  background: var(--accent); color: #fff;
  font-size: 0.68rem; font-weight: 700;
  min-width: 18px; height: 18px; border-radius: 9px;
  display: grid; place-items: center; padding: 0 5px;
}

.menu-btn { display: none; flex-direction: column; gap: 6px; width: 44px; height: 44px; align-items: center; justify-content: center; }
.menu-btn span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.25s, opacity 0.25s; }
.menu-btn.open span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-btn.open span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { padding: 72px 0 88px; overflow: hidden; position: relative; }
.hero::before {
  content: ""; position: absolute; top: -180px; right: -160px;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,118,59,0.14), transparent 65%);
  pointer-events: none;
}
.hero-in { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }

.hero-sub { color: var(--ink-soft); font-size: 1.08rem; max-width: 46ch; margin-top: 20px; }

.hero-cta { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: 36px; list-style: none; margin-top: 44px;
  padding-top: 28px; border-top: 1px solid var(--line);
}
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--accent-deep); }
.hero-stats span { font-size: 0.82rem; color: var(--ink-soft); }

.nowrap { white-space: nowrap; }

.flame-dot {
  display: inline-block; width: 14px; height: 20px; margin-left: 10px;
  background: radial-gradient(ellipse at 50% 75%, #F2B33D 0%, #E07B2F 55%, transparent 75%);
  border-radius: 50% 50% 50% 50% / 62% 62% 38% 38%;
  animation: flicker 2.2s ease-in-out infinite;
  transform-origin: bottom center;
  vertical-align: baseline;
}
@keyframes flicker {
  0%, 100% { transform: scaleY(1) rotate(-2deg); opacity: 0.95; }
  30%      { transform: scaleY(1.14) rotate(2deg); opacity: 1; }
  55%      { transform: scaleY(0.92) rotate(-1deg); opacity: 0.85; }
  75%      { transform: scaleY(1.08) rotate(1.5deg); opacity: 1; }
}

.hero-collage { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: end; }
.arch { border-radius: 200px 200px var(--radius) var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.arch img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.arch:hover img { transform: scale(1.05); }
.arch-1 { height: 400px; }
.arch-2 { height: 330px; margin-bottom: 34px; }
.arch-3 { height: 370px; margin-bottom: 10px; }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--ink); color: #EFE6D9;
  overflow: hidden; padding: 13px 0;
  font-family: var(--font-display); font-size: 0.95rem; letter-spacing: 0.06em;
}
.marquee-track { display: flex; width: max-content; animation: scroll 38s linear infinite; }
.marquee-track span { white-space: nowrap; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- Bölümler ---------- */
.section { padding: 88px 0; }
.section-tint { background: var(--bg-2); }

.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; margin-bottom: 40px;
}
.link-more { font-weight: 600; font-size: 0.95rem; color: var(--accent-deep); white-space: nowrap; padding-bottom: 6px; }
.link-more:hover { text-decoration: underline; }

/* ---------- Öne çıkanlar ---------- */
.featured-row {
  display: grid; grid-auto-flow: column; grid-auto-columns: 300px;
  gap: 22px; overflow-x: auto; padding: 4px 4px 20px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin; scrollbar-color: var(--line) transparent;
}
.featured-row .product-card { scroll-snap-align: start; }

/* ---------- Kategori kartları ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(10, 1fr); gap: 18px; }
.cat-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  height: 240px; box-shadow: var(--shadow); text-align: left;
  grid-column: span 2;
}
.cat-grid .cat-card:nth-child(1), .cat-grid .cat-card:nth-child(2) { grid-column: span 5; height: 280px; }
.cat-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.cat-card:hover img { transform: scale(1.06); }
.cat-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30, 20, 12, 0.72) 0%, rgba(30,20,12,0.05) 55%);
}
.cat-card-label {
  position: absolute; z-index: 2; left: 20px; right: 20px; bottom: 18px; color: #FDF9F3;
}
.cat-card-label strong { display: block; font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; }
.cat-card-label small { font-size: 0.82rem; opacity: 0.85; }

/* ---------- Filtre ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.chip {
  padding: 9px 20px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--card);
  font-size: 0.9rem; font-weight: 500; color: var(--ink-soft);
  transition: all 0.2s;
}
.chip:hover { border-color: var(--accent); color: var(--accent-deep); }
.chip.active { background: var(--ink); border-color: var(--ink); color: #FDF9F3; }

/* ---------- Ürün kartları ---------- */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 26px; }

.product-card {
  background: var(--card); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.pc-img { position: relative; aspect-ratio: 4 / 4.6; overflow: hidden; cursor: pointer; }
.pc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.product-card:hover .pc-img img { transform: scale(1.06); }

.pc-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(46, 36, 29, 0.82); color: #F6EDE0;
  backdrop-filter: blur(4px);
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
}

.pc-quick {
  position: absolute; left: 14px; right: 14px; bottom: 14px; z-index: 2;
  background: rgba(253, 249, 243, 0.94); color: var(--ink);
  backdrop-filter: blur(6px);
  font-weight: 600; font-size: 0.88rem;
  padding: 11px; border-radius: 12px; text-align: center;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.28s, transform 0.28s, background 0.2s;
}
.pc-quick:hover { background: var(--ink); color: #FDF9F3; }
.product-card:hover .pc-quick { opacity: 1; transform: translateY(0); }

.pc-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.pc-cat { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }
.pc-name { font-family: var(--font-display); font-size: 1.12rem; font-weight: 500; cursor: pointer; line-height: 1.25; }
.pc-name:hover { color: var(--accent-deep); }
.pc-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 10px; }
.pc-price { font-weight: 700; font-size: 1.06rem; }
.pc-add {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent-deep);
  display: grid; place-items: center; font-size: 1.25rem; font-weight: 500;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.pc-add:hover { background: var(--accent); color: #fff; transform: scale(1.08); }

/* ---------- Hakkımızda ---------- */
.about-in { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
.about-img { position: relative; border-radius: 240px 240px var(--radius) var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img img { width: 100%; height: 560px; object-fit: cover; }
.about-tag {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  background: rgba(253, 249, 243, 0.92); backdrop-filter: blur(6px);
  font-family: var(--font-display); font-style: italic; font-size: 0.95rem;
  padding: 10px 22px; border-radius: 999px; white-space: nowrap;
}
.about-text p:not(.overline) { color: var(--ink-soft); margin-top: 18px; }
.about-list { list-style: none; margin: 22px 0 30px; display: flex; flex-direction: column; gap: 10px; color: var(--ink); font-weight: 500; }

/* ---------- Adımlar ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 28px; position: relative; transition: transform 0.3s, box-shadow 0.3s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step-no {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent-deep);
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 600;
  margin-bottom: 18px;
}
.step h3 { font-size: 1.25rem; margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- SSS ---------- */
.sss-in { max-width: 780px; }
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq details {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 14px; padding: 0; overflow: hidden;
  transition: box-shadow 0.25s;
}
.faq details[open] { box-shadow: var(--shadow); }
.faq summary {
  list-style: none; cursor: pointer;
  font-weight: 600; font-size: 1.02rem;
  padding: 20px 52px 20px 24px; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; color: var(--accent);
  transition: transform 0.25s;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { padding: 0 24px 22px; color: var(--ink-soft); }

/* ---------- CTA bant ---------- */
.cta-band {
  background: linear-gradient(135deg, #33261B 0%, #4A3323 55%, #6B4526 100%);
  color: #F6EDE0; padding: 84px 0; text-align: center;
}
.cta-in h2 em { color: #E8A96B; }
.cta-in p { opacity: 0.85; margin: 14px 0 30px; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #CBBBA9; }
.footer-in {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 40px; padding: 64px 0 40px;
}
.logo-light { color: #F6EDE0; }
.footer-brand p { margin-top: 14px; font-size: 0.92rem; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 {
  color: #F6EDE0; font-family: var(--font-display); font-weight: 500;
  font-size: 1.05rem; margin-bottom: 6px;
}
.footer-col a { font-size: 0.92rem; transition: color 0.2s; }
.footer-col a:hover { color: #F6EDE0; }
.footer-note { font-size: 0.85rem; line-height: 1.7; }
.footer-base { border-top: 1px solid rgba(246, 237, 224, 0.12); padding: 22px 0; font-size: 0.82rem; }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 30px; border-radius: 999px;
  font-weight: 600; font-size: 0.96rem;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--ink); color: #FDF9F3; }
.btn-primary:hover { background: var(--accent-deep); box-shadow: 0 10px 26px rgba(156, 84, 35, 0.35); }
.btn-ghost { border: 1.5px solid var(--line); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-deep); background: var(--accent-soft); }
.btn-light { background: #F6EDE0; color: var(--ink); }
.btn-light:hover { background: #fff; box-shadow: 0 10px 26px rgba(0,0,0,0.25); }
.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: var(--wa-deep); box-shadow: 0 10px 26px rgba(31, 175, 87, 0.35); }
.btn-block { width: 100%; }

.icon-btn {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  font-size: 1rem; transition: background 0.2s;
}
.icon-btn:hover { background: var(--bg-2); }

/* ---------- Sepet çekmecesi ---------- */
.drawer-overlay, .modal-overlay {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(30, 20, 12, 0.5);
  backdrop-filter: blur(3px);
  opacity: 0; transition: opacity 0.3s;
}
.drawer-overlay.show, .modal-overlay.show { opacity: 1; }

.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 100;
  width: min(420px, 92vw);
  background: var(--bg); box-shadow: -20px 0 60px rgba(0,0,0,0.2);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}
.drawer.open { transform: translateX(0); }

.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; border-bottom: 1px solid var(--line);
}
.drawer-head h3 { font-size: 1.4rem; }

.drawer-items { flex: 1; overflow-y: auto; padding: 18px 24px; display: flex; flex-direction: column; gap: 16px; }

.cart-empty { text-align: center; color: var(--ink-soft); padding: 60px 20px; }
.cart-empty span { font-size: 2.4rem; display: block; margin-bottom: 12px; }

.cart-item { display: grid; grid-template-columns: 72px 1fr auto; gap: 14px; align-items: center; }
.cart-item img { width: 72px; height: 72px; object-fit: cover; border-radius: 12px; }
.ci-name { font-weight: 600; font-size: 0.92rem; line-height: 1.3; }
.ci-price { color: var(--ink-soft); font-size: 0.85rem; margin-top: 3px; }
.ci-controls { display: flex; align-items: center; gap: 6px; }

.qty { display: inline-flex; align-items: center; gap: 4px; border: 1px solid var(--line); border-radius: 999px; padding: 3px; background: var(--card); }
.qty button {
  width: 30px; height: 30px; border-radius: 50%; font-size: 1.05rem;
  display: grid; place-items: center; transition: background 0.15s;
}
.qty button:hover { background: var(--accent-soft); }
.qty span { min-width: 26px; text-align: center; font-weight: 600; font-size: 0.92rem; }

.ci-remove { color: var(--ink-soft); font-size: 0.8rem; padding: 4px; }
.ci-remove:hover { color: #C0392B; }

.drawer-foot { border-top: 1px solid var(--line); padding: 20px 24px 26px; background: var(--card); }

/* Ücretsiz kargo ilerlemesi */
.kargo-kutu {
  background: var(--accent-soft); border-radius: 12px;
  padding: 12px 14px; margin-bottom: 14px;
}
.kargo-kutu.tamam { background: #E6F5EC; }
.kargo-metin { font-size: 0.86rem; color: var(--accent-deep); margin-bottom: 8px; }
.kargo-kutu.tamam .kargo-metin { color: #1B6B3A; }
.kargo-cubuk { height: 6px; background: rgba(46, 36, 29, 0.1); border-radius: 999px; overflow: hidden; }
.kargo-cubuk span {
  display: block; height: 100%; border-radius: 999px;
  background: var(--accent); transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.kargo-kutu.tamam .kargo-cubuk span { background: var(--wa); }

/* Ara toplam / indirim satırları */
.ozet { margin-bottom: 12px; display: flex; flex-direction: column; gap: 6px; }
.ozet-satir { display: flex; justify-content: space-between; font-size: 0.9rem; color: var(--ink-soft); }
.ozet-satir.indirim { color: var(--wa-deep); font-weight: 600; }

.drawer-total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; }
.drawer-total strong { font-family: var(--font-display); font-size: 1.6rem; }
.drawer-note { text-align: center; font-size: 0.78rem; color: var(--ink-soft); margin-top: 12px; }

/* ---------- Ürün modalı ---------- */
.modal-overlay { display: grid; place-items: center; padding: 24px; overflow-y: auto; }
.modal {
  background: var(--bg); border-radius: 24px; box-shadow: var(--shadow-lg);
  width: min(880px, 100%); max-height: calc(100vh - 48px);
  display: grid; grid-template-columns: 1.05fr 1fr;
  overflow: hidden; position: relative;
  transform: translateY(16px) scale(0.98); opacity: 0;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s;
}
.modal-overlay.show .modal { transform: translateY(0) scale(1); opacity: 1; }

.modal-close { position: absolute; top: 14px; right: 14px; z-index: 5; background: rgba(253,249,243,0.9); }

.modal-gallery { display: flex; flex-direction: column; background: var(--bg-2); }
.modal-img { flex: 1; min-height: 380px; max-height: 520px; display: grid; place-items: center; }
.modal-img img { width: 100%; height: 100%; max-height: 520px; object-fit: contain; }
.modal-thumbs { display: flex; gap: 8px; padding: 12px; overflow-x: auto; }
.modal-thumbs img {
  width: 60px; height: 60px; object-fit: cover; border-radius: 10px;
  cursor: pointer; opacity: 0.55; border: 2px solid transparent; transition: opacity 0.2s, border-color 0.2s;
}
.modal-thumbs img.active, .modal-thumbs img:hover { opacity: 1; border-color: var(--accent); }

.modal-info { padding: 36px 32px; overflow-y: auto; display: flex; flex-direction: column; }
.modal-info h3 { font-size: 1.7rem; margin-bottom: 8px; }
.modal-price { font-weight: 700; font-size: 1.35rem; color: var(--accent-deep); margin-bottom: 16px; }
.modal-desc { color: var(--ink-soft); font-size: 0.96rem; }
.modal-qty { display: flex; align-items: center; justify-content: space-between; margin: 24px 0 16px; font-weight: 600; }
.modal-actions { display: flex; flex-direction: column; gap: 10px; }
.modal-note { margin-top: 16px; font-size: 0.8rem; color: var(--ink-soft); }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translate(-50%, 80px);
  background: var(--ink); color: #F6EDE0;
  padding: 14px 26px; border-radius: 999px;
  font-weight: 500; font-size: 0.92rem;
  box-shadow: var(--shadow-lg); z-index: 120;
  opacity: 0; transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s;
  pointer-events: none;
}
.toast.show { transform: translate(-50%, 0); opacity: 1; }

/* ---------- WhatsApp yüzen buton ---------- */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 80;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--wa); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(31, 175, 87, 0.4);
  transition: transform 0.25s, box-shadow 0.25s;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 16px 38px rgba(31, 175, 87, 0.5); }
.wa-float-count {
  position: absolute; top: -2px; right: -2px;
  background: var(--ink); color: #FDF9F3;
  font-size: 0.7rem; font-weight: 700;
  min-width: 22px; height: 22px; border-radius: 11px;
  display: grid; place-items: center; padding: 0 6px;
  border: 2px solid var(--bg);
}

/* ---------- Reveal animasyonu ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-in { grid-template-columns: 1fr; gap: 44px; }
  .hero-collage { max-width: 560px; }
  .arch-1 { height: 300px; } .arch-2 { height: 250px; } .arch-3 { height: 280px; }
  .cat-grid { grid-template-columns: repeat(6, 1fr); }
  .cat-grid .cat-card:nth-child(-n+2) { grid-column: span 3; }
  .cat-card { grid-column: span 2; }
  .about-in { grid-template-columns: 1fr; gap: 40px; }
  .about-img img { height: 420px; }
  .steps { grid-template-columns: 1fr; }
  .footer-in { grid-template-columns: 1fr 1fr; }
  .modal { grid-template-columns: 1fr; max-height: calc(100vh - 32px); overflow-y: auto; }
  .modal-img { min-height: 300px; }
}

@media (max-width: 720px) {
  .container { width: calc(100% - 36px); }
  .nav {
    position: fixed; top: 0; right: 0; bottom: 0; z-index: 60;
    background: var(--bg); box-shadow: -20px 0 60px rgba(0,0,0,0.15);
    width: min(300px, 80vw); padding: 96px 32px;
    flex-direction: column; gap: 8px;
    transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .nav.open { transform: translateX(0); }
  .nav a { font-size: 1.15rem; font-family: var(--font-display); padding: 10px 0; }
  .menu-btn { display: flex; z-index: 70; }
  .hero { padding: 48px 0 64px; }
  .hero-stats { gap: 24px; }
  .section { padding: 64px 0; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .cat-grid .cat-card, .cat-grid .cat-card:nth-child(-n+2) { grid-column: span 1; height: 200px; }
  .featured-row { grid-auto-columns: 250px; }
  .pc-quick { opacity: 1; transform: none; }
  .footer-in { grid-template-columns: 1fr; gap: 28px; }
}
