/* ============================================================
   PofuClub — Pop Mart / blind-box hype teması
   Sticker kartlar, chunky butonlar, koleksiyon renkleriyle canlı bloklar.
   ============================================================ */

/* Kendi sunucumuzdan servis edilir (Google Fonts CDN'i CSP style-src'yi
   genişletmeden kullanılamaz) — lisans: SIL Open Font License. */
@font-face {
  font-family: "Baloo 2";
  font-weight: 800;
  font-style: normal;
  font-display: swap;
  src: url("/fonts/Baloo2-800-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: "Baloo 2";
  font-weight: 800;
  font-style: normal;
  font-display: swap;
  src: url("/fonts/Baloo2-800-latinext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02FF, U+1E00-1EFF; /* çğıöşü dahil */
}

:root {
  --ink: #241c1a;
  --ink-soft: #6b5f5a;
  --ink-faint: #a89d97;
  --paper: #fffdf8;
  --paper-warm: #fff4de;
  --paper-card: #eafbf6;
  --line: #ece3d6;
  --brand: #ee2e24;
  --brand-dark: #c21f17;
  --turquoise: #18dcb4;
  --orange: #ff9000;
  --sun: #ffcc34;
  --accent: var(--brand);
  --green: #2e8b57;
  --danger: #e0355c;
  --ok: #1e7e46;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 14px 34px rgba(23, 17, 35, 0.12);
  --pop: 5px 5px 0 rgba(23, 17, 35, 0.92);
  --pop-sm: 3px 3px 0 rgba(23, 17, 35, 0.9);
  --font: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Baloo 2", var(--font);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
  /* Fotoğraf kopyalamayı zorlaştır: sürükleme ve uzun basışla seçim kapalı */
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
/* hidden özniteliği her zaman kazanır — display:grid/flex tanımlı bölümler
   (sepet/ödeme içeriği) JS ile gizlendiğinde gerçekten gizlensin */
[hidden] { display: none !important; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------- Duyuru + üst menü ---------- */
.announce {
  background: var(--ink);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 11px 0;
  overflow: hidden;
  white-space: nowrap;
}
.announce-track {
  display: inline-flex;
  align-items: center;
  gap: 56px;
  padding-right: 56px;
  /* Süre değişirse main.js'teki 30000 ms de güncellenmeli (kesintisiz akış) */
  animation: announce-scroll 30s linear infinite;
  will-change: transform;
}
.announce-track span { flex-shrink: 0; }
.announce-track .sep {
  width: 6px;
  height: 6px;
  background: var(--sun);
  border-radius: 2px;
  transform: rotate(45deg);
}
.announce:hover .announce-track { animation-play-state: paused; }
@keyframes announce-scroll {
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .announce-track { animation: none; }
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 243, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--ink);
}
.nav-row {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 16px 0;
}
/* Rolex tarzı: sol menü düğmesi — ortalanmış logo — sağ ikon grubu (3 eşit sütun) */
.nav-row--split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}
.brand { display: inline-flex; align-items: center; font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: 0.01em; color: var(--ink); }
.brand img { height: 30px; width: auto; }
.brand--center { grid-column: 2; justify-self: center; }
@media (max-width: 640px) {
  .brand img { height: 24px; }
  .brand { font-size: 18px; }
}
.menu-toggle {
  grid-column: 1;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  background: none;
  color: var(--ink);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 6px;
  border-radius: 999px;
}
.menu-toggle:hover { background: var(--paper-card); }
.menu-toggle svg { width: 21px; height: 21px; }
.menu-toggle span { display: none; }
@media (min-width: 641px) {
  .menu-toggle span { display: inline; }
}
.nav-icons {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 4px;
}
.icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  border-radius: 50%;
  color: var(--ink);
}
.icon-btn:hover { background: var(--paper-card); }
.icon-btn svg { width: 21px; height: 21px; }
.icon-btn--label {
  width: auto;
  height: auto;
  border-radius: 999px;
  padding: 8px 12px;
  gap: 7px;
  flex-direction: row;
}
.icon-btn--label span:not(.cart-badge) {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
@media (max-width: 900px) {
  .icon-btn--label span:not(.cart-badge) { display: none; }
  .icon-btn--label { padding: 8px; width: 40px; justify-content: center; }
}
.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 17px;
  height: 17px;
  border-radius: 9px;
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 1.5px solid var(--ink);
}
.cart-badge.show { display: inline-flex; }

/* ---------- Açılır menü paneli ---------- */
.menu-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--paper);
  border-bottom: 3px solid var(--ink);
  box-shadow: var(--pop);
  z-index: 45;
  padding: 30px 0;
}
.menu-panel.open { display: block; }
.menu-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 260px));
  gap: 40px;
}
.menu-col-title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 14px;
}
.menu-links { list-style: none; display: grid; gap: 12px; }
.menu-links a { font-size: 16px; font-weight: 700; color: var(--ink); }
.menu-links a:hover { color: var(--brand); }
.menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(23, 17, 35, 0.35);
}
.menu-backdrop.open { display: block; }
.search-bar {
  display: none;
  padding: 0 0 14px;
}
.search-bar.open { display: block; }
.search-bar form { display: flex; gap: 8px; }
.search-bar input {
  flex: 1;
  padding: 11px 16px;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
}
.search-bar input:focus { outline: none; border-color: var(--brand); }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2.5px solid var(--ink);
  background: var(--brand);
  color: #fff;
  box-shadow: var(--pop);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { background: #ff4d40; transform: translate(-2px, -2px); box-shadow: 7px 7px 0 rgba(23, 17, 35, 0.92); }
.btn:active { transform: translate(1px, 1px); box-shadow: 2px 2px 0 rgba(23, 17, 35, 0.92); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: var(--pop-sm); }
.btn-ghost { background: transparent; color: var(--ink); box-shadow: none; }
.btn-ghost:hover { background: var(--ink); color: #fff; transform: none; box-shadow: none; }
.btn-light { background: #fff; color: var(--ink); border-color: var(--ink); }
.btn-light:hover { background: var(--sun); color: var(--ink); }
.btn-sm { padding: 9px 20px; font-size: 12px; box-shadow: var(--pop-sm); }
.btn-sm:hover { box-shadow: 5px 5px 0 rgba(23, 17, 35, 0.92); }
.btn-block { width: 100%; }
.btn-disabled { pointer-events: none; opacity: 0.5; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(125deg, var(--turquoise) 0%, #0fc9a3 42%, var(--brand) 128%);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero-bg {
  /* Video yoksa: konfeti benzeri dekoratif dairelerle grafik bir sahne kuruluyor. */
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    radial-gradient(circle at 88% 18%, var(--sun) 0, var(--sun) 58px, transparent 59px),
    radial-gradient(circle at 95% 62%, rgba(255,255,255,0.9) 0, rgba(255,255,255,0.9) 26px, transparent 27px),
    radial-gradient(circle at 76% 82%, var(--orange) 0, var(--orange) 40px, transparent 41px),
    radial-gradient(circle at 8% 20%, rgba(255,255,255,0.85) 0, rgba(255,255,255,0.85) 20px, transparent 21px),
    radial-gradient(circle at 15% 78%, var(--sun) 0, var(--sun) 34px, transparent 35px),
    radial-gradient(circle at 4% 55%, rgba(255,255,255,0.6) 0, rgba(255,255,255,0.6) 12px, transparent 13px);
  opacity: 0.9;
}
.hero.has-video::before {
  /* Video üstünde metin okunaklı kalsın diye alta doğru koyulaşan katman */
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(20, 16, 12, 0.25) 0%, rgba(20, 16, 12, 0.15) 45%, rgba(20, 16, 12, 0.65) 100%);
}
.hero-content {
  padding: 72px 0 60px;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-kicker {
  display: inline-block;
  background: var(--sun);
  color: var(--ink);
  border: 2px solid var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11.5px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5.4vw, 64px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
  text-wrap: balance;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}
.hero p {
  font-size: clamp(14px, 1.6vw, 17px);
  letter-spacing: 0.01em;
  opacity: 0.95;
  margin-bottom: 30px;
  max-width: 560px;
}
.hero-scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  opacity: 0.85;
  animation: hero-scroll-bounce 1.8s ease-in-out infinite;
}
.hero-scroll svg { width: 26px; height: 26px; }
@keyframes hero-scroll-bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scroll { animation: none; }
}

/* ---------- Bölüm başlıkları ---------- */
section { padding: 84px 0; }
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
}
.section-head h2, .section-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: clamp(21px, 2.6vw, 29px);
  font-weight: 800;
  letter-spacing: 0.01em;
}
.section-head h2::before, .section-title::before {
  content: "";
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
}
.section-head .see-all {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-bottom: 2px solid var(--line);
  padding-bottom: 2px;
  white-space: nowrap;
}
.section-head .see-all:hover { color: var(--brand); border-color: var(--brand); }
.section-sub {
  color: var(--ink-soft);
  max-width: 620px;
  margin-top: 10px;
  font-size: 16px;
}

/* ---------- Koleksiyon şeridi (tam genişlik, Rolex tarzı) ---------- */
.collection-strip {
  display: flex;
  min-height: 62vh;
  border-bottom: 3px solid var(--ink);
}
.strip-tile {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  color: #fff;
  background: var(--ink);
  border-right: 3px solid var(--ink);
  overflow: hidden;
  transition: flex 0.35s ease;
}
.strip-tile:last-child { border-right: none; }
/* Koleksiyon sırası sabit (labubu, macipupu, wakuku, bebek, surpriz) — bkz. catalog.js COLLECTIONS */
.strip-tile:nth-child(1) { background: #e8484f; }
.strip-tile:nth-child(2) { background: #7cb84c; }
.strip-tile:nth-child(3) { background: #8467bd; }
.strip-tile:nth-child(4) { background: #4daf8c; }
.strip-tile:nth-child(5) { background: var(--sun); color: var(--ink); }
.strip-tile:nth-child(5) .strip-label { color: var(--ink); opacity: 0.7; }
.strip-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 16, 12, 0) 35%, rgba(20, 16, 12, 0.6) 100%);
}
.strip-label, .strip-title, .strip-arrow { position: relative; z-index: 1; }
.strip-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 6px;
  opacity: 0.9;
}
.strip-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 800;
  margin-bottom: 10px;
}
.strip-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.strip-tile:hover { flex: 1.35; }
.strip-tile:hover .strip-arrow { opacity: 1; transform: translateY(0); }
@media (max-width: 900px) {
  .collection-strip { flex-direction: column; min-height: auto; }
  .strip-tile { min-height: 200px; border-right: none; border-bottom: 3px solid var(--ink); padding: 22px; }
  .strip-tile:last-child { border-bottom: none; }
  .strip-tile:hover { flex: 1; }
  .strip-arrow { opacity: 1; transform: none; }
}

/* ---------- Ürün grid ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 20px;
}
.product-card { display: block; }
.thumb {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--tcolor, var(--paper-card));
  border: 2.5px solid var(--ink);
  box-shadow: var(--pop-sm);
  margin-bottom: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.product-card:hover .thumb {
  transform: translate(-3px, -3px) rotate(-1.2deg);
  box-shadow: 7px 7px 0 rgba(23, 17, 35, 0.85);
}
.product-card:hover .thumb img { transform: scale(1.045); }
.product-card h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 4px;
  padding: 0 6px;
}
.product-card .price {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--brand);
  text-align: center;
}
.price-was {
  color: var(--ink-faint);
  text-decoration: line-through;
  font-weight: 600;
  margin-right: 6px;
  font-size: 0.92em;
}
.price-now { color: var(--danger); }
.sale-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--danger);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  border-radius: 999px;
  border: 2px solid #fff;
  padding: 5px 11px;
}

/* ---------- Yatay ürün şeridi (ana sayfa) ---------- */
.product-row-wrap { position: relative; }
.product-row {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 2px 12px;
  scrollbar-width: none;
}
.product-row::-webkit-scrollbar { display: none; }
.product-row .product-card {
  flex: 0 0 262px;
  scroll-snap-align: start;
}
.row-arrow {
  position: absolute;
  top: 118px;
  z-index: 5;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2.5px solid var(--ink);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--pop-sm);
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.row-arrow:hover { transform: translate(-2px, -2px); }
.row-arrow svg { width: 20px; height: 20px; }
.row-arrow-left { left: -14px; }
.row-arrow-right { right: -14px; }
.row-arrow[disabled] { opacity: 0.25; cursor: default; transform: none; }
@media (max-width: 640px) {
  .product-row .product-card { flex-basis: 200px; }
  .row-arrow { display: none; }
}

/* ---------- Kampanya ---------- */
.campaign { background: var(--paper-warm); }
.bundle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.bundle-card {
  display: block;
  background: #fff;
  border: 2.5px solid var(--ink);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  position: relative;
  box-shadow: var(--pop-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.bundle-card:hover { transform: translate(-3px, -3px); box-shadow: 7px 7px 0 rgba(23, 17, 35, 0.85); }
.bundle-card.best { border-color: var(--brand); background: #fff2f1; }
.bundle-card .b-cta {
  display: inline-block;
  margin-top: 14px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 2px;
}
.bundle-flag {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  background: var(--brand);
  color: #fff;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 2px solid var(--ink);
  padding: 4px 14px;
  white-space: nowrap;
}
.bundle-card .b-qty {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-faint);
  font-weight: 700;
  margin-bottom: 6px;
}
.bundle-card .b-tag { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 14px; }
.bundle-card .b-price { font-family: var(--font-display); font-size: 31px; font-weight: 800; letter-spacing: -0.01em; }
.bundle-card .b-note { font-size: 13px; color: var(--ok); font-weight: 700; margin-top: 6px; min-height: 20px; }

/* ---------- Kullanım kılavuzu ---------- */
.guide { background: #fff8e6; }
.guide-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  text-align: center;
}
.guide-step {
  background: #fff;
  border: 2.5px solid var(--ink);
  border-radius: var(--radius);
  padding: 38px 26px;
  box-shadow: var(--pop-sm);
}
.guide-step .g-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--sun);
  border: 2px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}
.guide-step:nth-child(2) .g-icon { background: var(--brand); color: #fff; }
.guide-step:nth-child(3) .g-icon { background: var(--turquoise); color: #fff; }
.guide-step .g-icon svg { width: 34px; height: 34px; }
.guide-step .g-num {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 700;
  margin-bottom: 6px;
}
.guide-step h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.guide-step p { color: var(--ink-soft); font-size: 14.5px; }

/* ---------- Hikaye + toptan ---------- */
.story .story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.story .story-text h2 { margin-bottom: 18px; }
.story .story-text p { color: var(--ink-soft); font-size: 16.5px; margin-bottom: 14px; }
.story img { border-radius: var(--radius); border: 2.5px solid var(--ink); box-shadow: var(--pop); }
.badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.badge-pill {
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  background: #fff;
}

.wholesale {
  background: var(--ink);
  color: #fff;
}
.wholesale .story-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.wholesale img { border-radius: var(--radius); border: 2.5px solid rgba(255,255,255,0.25); }
.wholesale h2 { font-family: var(--font-display); font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; letter-spacing: -0.01em; margin-bottom: 16px; }
.wholesale h2::before { background: var(--sun); }
.wholesale p { opacity: 0.85; margin-bottom: 26px; font-size: 16.5px; }

/* ---------- SSS ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 2px solid var(--line);
}
.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 20px 4px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 24px;
  font-weight: 700;
  color: var(--brand);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 4px 22px; color: var(--ink-soft); font-size: 15.5px; max-width: 720px; }
.faq-cta { text-align: center; margin-top: 34px; }
.faq-cta a { font-weight: 700; border-bottom: 2px solid var(--brand); color: var(--brand); }

/* ---------- Ürün detay ---------- */
.product-page { padding: 56px 0 84px; }
.product-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: start;
}
.gallery-main {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--tcolor, var(--paper-card));
  border: 2.5px solid var(--ink);
  box-shadow: var(--pop);
  margin-bottom: 12px;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 10px; flex-wrap: wrap; }
.gallery-thumbs button {
  width: 76px;
  height: 76px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid var(--line);
  padding: 0;
  background: var(--paper-card);
}
.gallery-thumbs button.active { border-color: var(--brand); }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }

.pd-info .crumbs { font-size: 13.5px; color: var(--ink-faint); margin-bottom: 14px; }
.pd-info .crumbs a:hover { color: var(--brand); }
.pd-info h1 { font-family: var(--font-display); font-size: clamp(27px, 3.2vw, 38px); font-weight: 800; letter-spacing: -0.01em; line-height: 1.15; margin-bottom: 10px; }
.pd-info .pd-price { font-family: var(--font-display); font-size: 24px; font-weight: 800; color: var(--brand); margin-bottom: 6px; }
.pd-info .pd-desc { color: var(--ink-soft); margin: 14px 0 26px; font-size: 16px; }

.option-list { display: grid; gap: 10px; margin-bottom: 22px; }
.option-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  cursor: pointer;
  background: #fff;
  transition: border-color 0.15s ease;
}
.option-item:hover { border-color: var(--ink-faint); }
.option-item input { accent-color: var(--brand); width: 18px; height: 18px; }
.option-item .o-label { font-weight: 700; font-size: 15px; }
.option-item .o-tag { font-size: 13px; color: var(--ink-faint); }
.option-item .o-price { margin-left: auto; text-align: right; font-weight: 800; }
.option-item .o-save { display: block; font-size: 12.5px; color: var(--ok); font-weight: 700; }
.option-item:has(input:checked) { border-color: var(--brand); background: #fff2f1; }
.option-item .o-flag {
  position: absolute;
  top: -10px;
  right: 14px;
  background: var(--brand);
  color: #fff;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  border-radius: 999px;
  border: 2px solid var(--ink);
  padding: 2px 10px;
  text-transform: uppercase;
}
.pd-note { font-size: 13.5px; color: var(--ink-faint); margin-top: 14px; }

/* Paket içi karakter seçici */
.design-slots { margin: 4px 0 22px; }
.ds-title { font-size: 13.5px; font-weight: 700; margin-bottom: 10px; }
.ds-grid {
  position: relative; /* açılır panel bu alanın tam genişliğinde konumlanır */
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}
.design-slot {
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
}
.ds-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  padding: 10px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  -webkit-appearance: none;
  appearance: none;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: inherit;
  text-align: left;
}
.ds-toggle .ds-name {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ds-toggle:hover { background: var(--paper-card); }
.ds-caret {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
  flex-shrink: 0;
  border-bottom: 1px solid var(--ink-faint);
}

/* Karakter seçim penceresi (ekran ortası) */
.ds-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(23, 17, 35, 0.6);
  padding: 18px;
}
.ds-modal.open { display: flex; align-items: center; justify-content: center; }
.ds-sheet {
  background: #fff;
  width: min(640px, 100%);
  max-height: 84vh;
  display: flex;
  flex-direction: column;
  border: 2.5px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--pop);
}
.ds-sheet-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 2px solid var(--ink);
}
.ds-sheet-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ds-close {
  border: none;
  background: none;
  font-size: 16px;
  line-height: 1;
  padding: 6px;
  color: var(--ink);
}
.ds-sheet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 1px;                 /* aradaki ince çizgiler */
  background: var(--line);  /* gap'lerden görünür */
  overflow-y: auto;
}
@media (max-width: 640px) {
  .ds-sheet-grid { grid-template-columns: repeat(3, 1fr); }
}
.ds-opt {
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: 100%;
  padding: 10px 8px;
  border: none;
  background: #fff;
  color: var(--ink);
  -webkit-appearance: none;
  appearance: none;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: inherit;
  cursor: pointer;
}
.ds-opt span {
  width: 100%;
  text-align: center;
  line-height: 1.35;
  overflow-wrap: break-word;
}
.ds-opt:hover { background: var(--paper-card); }
.ds-opt img {
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  object-fit: cover;
  background: var(--paper-card);
}
.ds-opt:disabled { opacity: 0.45; cursor: not-allowed; }
/* Ödeme özetinde ürün küçük resmi */
.sum-item { display: flex; align-items: center; gap: 10px; }
.sum-thumb { width: 40px; height: 40px; border-radius: 10px; object-fit: cover; background: var(--paper-card); flex-shrink: 0; }
/* Yalnızca slot'un büyük önizleme görseli (paneldeki küçük resimlere karışmasın) */
.design-slot > img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
  background: var(--paper-card);
}
.design-slot select {
  width: 100%;
  padding: 8px 10px;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 13.5px;
  background: #fff;
}
.design-slot select:focus { outline: none; border-color: var(--brand); }
.pd-features {
  list-style: none;
  margin-top: 28px;
  border-top: 2px solid var(--line);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pd-features li {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 8px 14px;
}

/* ---------- Sepet ---------- */
.cart-page { padding: 56px 0 84px; min-height: 55vh; }
.cart-layout { display: grid; grid-template-columns: 1.4fr 0.85fr; gap: 44px; align-items: start; }
.cart-lines { display: grid; gap: 0; }
.cart-line {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 2px solid var(--line);
  align-items: center;
}
.cart-line img { width: 92px; height: 92px; border-radius: var(--radius-sm); object-fit: cover; background: var(--paper-card); border: 2px solid var(--line); }
.cart-line .cl-name { font-weight: 700; font-size: 15px; }
.cart-line .cl-unit { font-size: 13.5px; color: var(--ink-faint); margin-top: 2px; }
.qty-ctrl { display: inline-flex; align-items: center; border: 2px solid var(--ink); border-radius: 999px; margin-top: 10px; }
.qty-ctrl button {
  width: 32px; height: 32px;
  border: none; background: none;
  font-size: 16px; font-weight: 700;
  color: var(--ink);
  border-radius: 50%;
}
.qty-ctrl button:hover { background: var(--paper-card); }
.qty-ctrl .q { min-width: 34px; text-align: center; font-weight: 700; font-size: 14.5px; }
.cl-right { text-align: right; }
.cl-right .cl-total { font-weight: 800; }
.cl-remove { border: none; background: none; color: var(--ink-faint); font-size: 13px; text-decoration: underline; margin-top: 8px; }
.cl-remove:hover { color: var(--danger); }

.summary-card {
  background: var(--paper-card);
  border: 2.5px solid var(--ink);
  border-radius: var(--radius);
  padding: 26px;
  position: sticky;
  top: 92px;
  box-shadow: var(--pop-sm);
}
.summary-card h2 { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 18px; }
.sum-row { display: flex; justify-content: space-between; font-size: 15px; padding: 7px 0; color: var(--ink-soft); }
.sum-row.discount { color: var(--ok); font-weight: 700; }
.sum-row.total { border-top: 2px solid var(--line); margin-top: 10px; padding-top: 14px; font-size: 19px; font-weight: 800; color: var(--ink); }
.sum-hint {
  background: #fff;
  border: 2px dashed var(--brand);
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  color: var(--ink-soft);
  padding: 12px 14px;
  margin: 14px 0 18px;
}
.sum-hint strong { color: var(--ok); }

.empty-state { text-align: center; padding: 60px 0; }
.empty-state h2 { font-family: var(--font-display); font-size: 25px; font-weight: 700; margin-bottom: 10px; }
.empty-state p { color: var(--ink-soft); margin-bottom: 24px; }

/* ---------- Ödeme ---------- */
.checkout-page { padding: 56px 0 84px; }
.checkout-layout { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 44px; align-items: start; }
.form-grid { display: grid; gap: 16px; }
.form-field label { display: block; font-size: 13.5px; font-weight: 700; margin-bottom: 6px; }
.form-field input, .form-field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  background: #fff;
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--brand); }
.form-field textarea { min-height: 96px; resize: vertical; }
.form-error {
  display: none;
  background: #fdecea;
  color: var(--danger);
  border: 2px solid #f5c6c0;
  border-radius: var(--radius-sm);
  padding: 12px 15px;
  font-size: 14.5px;
  margin-bottom: 6px;
}
.form-error.show { display: block; }
.secure-note { display: flex; gap: 10px; align-items: center; font-size: 13.5px; color: var(--ink-faint); margin-top: 16px; }
.secure-note svg { width: 17px; height: 17px; flex-shrink: 0; }
#paytr-wrap { display: none; }
#paytr-wrap.show { display: block; }
#paytriframe { width: 100%; min-height: 620px; border: none; border-radius: var(--radius); background: #fff; }
.pay-loading { display: none; text-align: center; padding: 30px; color: var(--ink-soft); }
.pay-loading.show { display: block; }

/* ---------- Sonuç / takip ---------- */
.result-page { padding: 90px 0; text-align: center; min-height: 55vh; }
.result-icon { width: 84px; height: 84px; margin: 0 auto 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 2.5px solid var(--ink); }
.result-icon.ok { background: #e6f4ec; color: var(--ok); }
.result-icon.bad { background: #fdecea; color: var(--danger); }
.result-icon svg { width: 40px; height: 40px; }
.result-page h1 { font-family: var(--font-display); font-size: clamp(27px, 3.4vw, 38px); font-weight: 800; margin-bottom: 12px; }
.result-page p { color: var(--ink-soft); max-width: 520px; margin: 0 auto 10px; }
.result-page .oid { font-family: ui-monospace, Consolas, monospace; background: var(--paper-card); border-radius: 8px; padding: 3px 10px; font-size: 14px; }
.result-actions { margin-top: 30px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.status-chip { display: inline-block; border-radius: 999px; padding: 4px 14px; font-size: 13px; font-weight: 700; border: 1.5px solid transparent; }
.status-pending { background: #fff6e0; color: #9a6d00; border-color: #f2d78e; }
.status-paid { background: #e6f4ec; color: var(--ok); border-color: #bfe3cd; }
.status-shipped { background: #e8f0fd; color: #2456a6; border-color: #bfd6fb; }
.status-failed, .status-cancelled { background: #fdecea; color: var(--danger); border-color: #f5c6c0; }

.track-box { max-width: 520px; margin: 0 auto; }
.track-box .form-field { margin-bottom: 14px; }
#track-result { margin-top: 26px; }

/* ---------- Hakkımızda: dekoratif şerit (gerçek fotoğraf yerine) ---------- */
.about-banner {
  border-radius: var(--radius);
  border: 3px solid var(--ink);
  background: linear-gradient(120deg, var(--turquoise), var(--sun) 85%);
  padding: 30px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin: 26px 0;
  flex-wrap: wrap;
  box-shadow: var(--pop);
}
.about-banner.alt { background: linear-gradient(120deg, var(--orange), var(--brand) 90%); }
.about-banner .ab-dot {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 3px solid var(--ink);
  background: #fff;
  flex-shrink: 0;
}
.about-banner .ab-dot:nth-child(2) { background: var(--brand); }
.about-banner .ab-dot:nth-child(3) { background: var(--ink); }
.about-banner .ab-dot:nth-child(4) { background: var(--turquoise); }
.about-banner.alt .ab-dot:nth-child(2) { background: var(--sun); }
.about-banner.alt .ab-dot:nth-child(3) { background: #fff; }
.about-banner.alt .ab-dot:nth-child(4) { background: var(--ink); }
.about-banner strong {
  font-family: var(--font-display);
  font-size: clamp(17px, 2.4vw, 22px);
  font-weight: 800;
  color: var(--ink);
  text-align: center;
}

/* ---------- Statik sayfalar ---------- */
.page-narrow { max-width: 780px; margin: 0 auto; padding: 64px 24px 90px; }
.page-narrow h1 { font-family: var(--font-display); font-size: clamp(30px, 4vw, 44px); font-weight: 800; letter-spacing: -0.01em; margin-bottom: 22px; }
.page-narrow h2 { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin: 34px 0 12px; }
.page-narrow p { color: var(--ink-soft); font-size: 16.5px; margin-bottom: 14px; }
.page-narrow img { border-radius: var(--radius); margin: 26px 0; }

/* ---------- Tükendi / yakında rozetleri + stok uyarısı ---------- */
.soldout-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  transform: rotate(-5deg);
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 2px solid #fff;
  padding: 5px 13px;
}
.soon-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  transform: rotate(-5deg);
  background: var(--sun);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 2px solid var(--ink);
  padding: 5px 13px;
}
.stock-warn { margin-top: 10px; font-size: 14px; font-weight: 700; color: #b45309; }

/* ---------- Drop geri sayımı ---------- */
.drop-timer {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  padding: 8px 18px 8px 8px;
  font-weight: 700;
  border: 2px solid var(--ink);
}
.drop-timer .dt-label {
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--brand);
  border-radius: 999px;
  padding: 5px 12px;
}
.drop-timer .dt-clock { font-variant-numeric: tabular-nums; font-size: 14px; letter-spacing: 0.04em; }

/* ---------- Yakında / Talep Et ---------- */
.soon-card {
  background: #fff;
  border: 2.5px dashed var(--ink);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.soon-card .thumb { border-style: dashed; }
.request-btn {
  margin-top: 10px;
  width: 100%;
  padding: 11px 16px;
}
.request-btn.requested { background: var(--ok); border-color: var(--ok); pointer-events: none; }
.request-count { display: block; margin-top: 8px; font-size: 12.5px; color: var(--ink-faint); font-weight: 600; }

/* ---------- Favoriler ---------- */
.fav-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.fav-btn svg { width: 17px; height: 17px; }
.fav-btn:hover { transform: scale(1.08); }
.fav-btn.active { background: var(--brand); color: #fff; border-color: var(--ink); }
.fav-btn.active svg { fill: currentColor; }

/* ---------- Sürpriz kutu rozeti ---------- */
.mystery-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--turquoise);
  color: #fff;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  box-shadow: var(--pop-sm);
}

/* ---------- Yorumlar ---------- */
.reviews-section { margin-top: 80px; border-top: 2px solid var(--line); padding-top: 56px; }
.review-stars { color: #f2b01e; letter-spacing: 2px; font-size: 15px; white-space: nowrap; }
.review-stars.big { font-size: 19px; }
.review-stars .stars-off { color: var(--line); }
.review-list { display: grid; gap: 0; max-width: 820px; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card {
  padding: 22px 0;
  border-bottom: 2px solid var(--line);
}
.review-grid .review-card {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.review-card header {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 8px;
  font-size: 14.5px;
}
.review-card header time { color: var(--ink-faint); font-size: 13px; margin-left: auto; }
.review-card > p { color: var(--ink-soft); font-size: 15px; }
.verified {
  color: var(--ok);
  font-size: 12.5px;
  font-weight: 700;
  background: #e6f4ec;
  border-radius: 999px;
  padding: 3px 10px;
}
.review-photos { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.review-photos img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 2px solid var(--line);
  transition: transform 0.15s ease;
}
.review-photos a:hover img { transform: scale(1.05); }
.review-product-link { display: inline-block; margin-top: 12px; font-size: 13.5px; font-weight: 700; color: var(--brand); }
.review-product-link:hover { text-decoration: underline; }
.home-reviews { background: var(--paper-warm); }

.review-form-card {
  margin-top: 40px;
  max-width: 640px;
  background: var(--paper-card);
  border: 2.5px solid var(--ink);
  border-radius: var(--radius);
  padding: 28px;
}
.review-form-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.review-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.rating-label { display: block; font-size: 13.5px; font-weight: 700; margin-bottom: 6px; }
.rating-input {
  display: inline-flex;
  flex-direction: row-reverse;
  gap: 2px;
  font-size: 30px;
}
.rating-input input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.rating-input label { color: var(--line); cursor: pointer; transition: color 0.1s ease; }
.rating-input input:checked ~ label,
.rating-input label:hover,
.rating-input label:hover ~ label { color: #f2b01e; }
.rating-input input:focus-visible + label { outline: 2px solid var(--brand); border-radius: 4px; }
.form-ok {
  background: #e6f4ec;
  color: var(--ok);
  border: 2px solid #bfe3cd;
  border-radius: var(--radius-sm);
  padding: 12px 15px;
  font-size: 14.5px;
  margin-bottom: 6px;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 3px solid var(--ink);
  padding: 54px 0 40px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  font-size: 14.5px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.9fr 0.9fr 1.1fr 1.1fr; gap: 36px; margin-bottom: 34px; }
.site-footer h3 { color: var(--sun); font-size: 11.5px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 14px; }
.site-footer ul { list-style: none; display: grid; gap: 8px; }
.site-footer a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.16); padding-top: 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px; color: rgba(255, 255, 255, 0.45); }

/* ---------- Admin ---------- */
.admin-page { padding: 48px 0 80px; }
.admin-page h1 { font-family: var(--font-display); font-size: 28px; font-weight: 800; margin-bottom: 24px; }
.admin-login { max-width: 400px; margin: 80px auto; padding: 0 24px; }
.admin-login .card { background: #fff; border: 2.5px solid var(--ink); border-radius: var(--radius); padding: 34px; box-shadow: var(--pop); }
.admin-login h1 { font-family: var(--font-display); font-size: 22px; font-weight: 800; margin-bottom: 20px; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 14.5px; background: #fff; }
.admin-table th, .admin-table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); }
.admin-table th { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-faint); }
.admin-table tr:hover td { background: var(--paper-warm); }
.admin-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.admin-filters a {
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
}
.admin-filters a.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.admin-card { background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius); padding: 26px; margin-bottom: 20px; }
.admin-card h2 { font-size: 17px; font-weight: 800; margin-bottom: 14px; }
.kv { display: grid; grid-template-columns: 160px 1fr; gap: 6px 16px; font-size: 15px; }
.kv dt { color: var(--ink-faint); }
.kv dd { font-weight: 500; }
.admin-inline-form { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.admin-inline-form select { padding: 10px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); font-size: 14.5px; font-family: inherit; }
.pager { display: flex; gap: 8px; margin-top: 20px; }
.pager a { border: 1.5px solid var(--line); border-radius: 8px; padding: 6px 12px; font-size: 14px; }

/* ---------- Admin ek bileşenler ---------- */
.admin-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 1.5px solid var(--line);
}
.admin-nav > a {
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  background: #fff;
}
.admin-nav > a.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.nav-count {
  background: var(--danger);
  color: #fff;
  border-radius: 999px;
  font-size: 11.5px;
  padding: 1px 7px;
  font-weight: 700;
}
.admin-logout { margin-left: auto; }
.admin-logout button {
  border: none;
  background: none;
  color: var(--ink-faint);
  font-size: 14px;
  text-decoration: underline;
}
.admin-logout button:hover { color: var(--danger); }
.admin-thumb { width: 52px; height: 52px; border-radius: 10px; object-fit: cover; background: var(--paper-card); }
.admin-sub { font-size: 13px; color: var(--ink-faint); }
.admin-photo-grid { display: flex; gap: 14px; flex-wrap: wrap; margin: 14px 0 22px; }
.admin-photo { position: relative; width: 130px; }
.admin-photo img { width: 130px; height: 130px; object-fit: cover; border-radius: var(--radius-sm); border: 1.5px solid var(--line); }
.photo-main {
  position: absolute;
  top: 6px;
  left: 6px;
  background: var(--ink);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  border-radius: 999px;
  padding: 2px 9px;
}
.photo-del {
  position: absolute;
  top: 6px;
  right: 6px;
  background: rgba(224, 53, 92, 0.92);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  padding: 3px 10px;
}
.admin-upload { border-top: 1.5px dashed var(--line); padding-top: 18px; }
.check-label { display: flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 600; cursor: pointer; }
.check-label input { width: 18px; height: 18px; accent-color: var(--brand); }
.settings-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 18px; max-width: 560px; }
.review-admin-card .review-comment { color: var(--ink-soft); margin: 10px 0; }
.review-admin-head { display: flex; justify-content: space-between; gap: 14px; align-items: flex-start; }
.review-admin-card .admin-inline-form { margin-top: 14px; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .bundle-grid { grid-template-columns: repeat(2, 1fr); }
  .product-layout, .cart-layout, .checkout-layout { grid-template-columns: 1fr; gap: 36px; }
  .story .story-grid, .wholesale .story-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .summary-card { position: static; }
}
@media (max-width: 1000px) {
  .review-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  section { padding: 56px 0; }
  .review-grid { grid-template-columns: 1fr; }
  .review-form-row { grid-template-columns: 1fr; }
  .settings-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 18px 12px; }
  .guide-steps { grid-template-columns: 1fr; }
  .bundle-grid { grid-template-columns: 1fr; }
  .hero { min-height: 78vh; }
  .cart-line { grid-template-columns: 72px 1fr; }
  .cl-right { grid-column: 2; text-align: left; display: flex; gap: 16px; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .menu-panel-grid { grid-template-columns: 1fr; gap: 26px; }
}

/* Ödeme sayfası sözleşme onayı */
.consent-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
  cursor: pointer;
}
.consent-row input { margin-top: 3px; width: 16px; height: 16px; flex-shrink: 0; accent-color: var(--brand); }
.consent-row a { text-decoration: underline; color: var(--ink); }

/* Footer Instagram bağlantısı */
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 2px solid transparent;
}
.social-link:hover { border-color: var(--sun); color: var(--sun); }
.social-link svg { width: 18px; height: 18px; }

/* Sepette "Ürün Ekle" butonu */
.cart-add-more { margin-top: 22px; }

/* Paket için karakter seçim modu */
.product-card .pick-badge {
  display: none;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border: 2px solid #fff;
}
.product-card[data-select-slug] { cursor: pointer; }
.product-card.selected .pick-badge { display: flex; }
.product-card.selected .thumb { outline: 3px solid var(--brand); outline-offset: 2px; }
.bundle-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: var(--ink);
  color: #fff;
  text-align: center;
  padding: 15px 18px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-top: 3px solid var(--brand);
}

/* Dil anahtarı (TR / EN) */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-right: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
}
.lang-switch a { padding: 4px 2px; color: var(--ink-faint); }
.lang-switch a.active { color: var(--brand); border-bottom: 2px solid var(--brand); }
.lang-switch a:hover { color: var(--brand); }
