@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;700&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #0b0b0b;
  --paper: #fffdf7;
  --surface: #ffffff;
  --muted: #55524a;

  --blue: #3355ff;
  --pink: #ff3d81;
  --yellow: #ffd400;
  --lime: #c6ff3d;
  --green: #17a355;

  --primary: var(--blue);
  --border: var(--ink);
  --shadow-sm: 4px 4px 0 var(--ink);
  --shadow-md: 7px 7px 0 var(--ink);
  --shadow-lg: 10px 10px 0 var(--ink);
}

* { box-sizing: border-box; }

html { background: var(--paper, #fffdf7); overflow-x: hidden; }
body.store {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  font-family: 'Inter', -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

h1, h2, h3, .display {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.05;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
svg.ic { width: 1em; height: 1em; stroke: currentColor; fill: none; stroke-width: 2; vertical-align: -0.15em; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---------- Sticker badge ---------- */
.sticker {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--yellow); color: var(--ink);
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  padding: 7px 16px;
  font-weight: 700; font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.03em;
  transform: rotate(-3deg);
  box-shadow: var(--shadow-sm);
}
.sticker.pink { background: var(--pink); color: #fff; }
.sticker.lime { background: var(--lime); }
.sticker.blue { background: var(--blue); color: #fff; }

/* ---------- Announcement bar ---------- */
.announce-bar {
  background: var(--ink);
  color: var(--lime);
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  padding: 10px 12px;
  font-weight: 700;
  text-transform: uppercase;
}

/* ---------- Header ---------- */
header.store-header {
  background: var(--paper);
  border-bottom: 3px solid var(--ink);
  position: sticky;
  top: 0;
  z-index: 50;
}
header.store-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
}
.store-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
}
.brand-logo { height: 78px; width: auto; display: block; }
.store-nav { display: flex; align-items: center; gap: 30px; }
.store-nav a { color: var(--ink); font-weight: 600; font-size: 0.92rem; }
.store-nav a:hover { color: var(--blue); }
.cart-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--lime) !important;
  color: var(--ink) !important;
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  padding: 9px 18px !important;
  font-weight: 700 !important;
  font-size: 0.86rem !important;
  box-shadow: var(--shadow-sm);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 2.5px solid var(--ink);
  cursor: pointer;
  font-weight: 700;
  font-size: 0.94rem;
  font-family: 'Space Grotesk', sans-serif;
  border-radius: 999px;
  padding: 15px 30px;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  box-shadow: var(--shadow-sm);
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.btn:active { transform: translate(1px, 1px); box-shadow: 2px 2px 0 var(--ink); }
.btn-primary { background: var(--blue); color: #fff; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-outline { background: var(--surface); color: var(--ink); }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none; box-shadow: var(--shadow-sm); }

/* ---------- Hero ---------- */
.hero { padding: 56px 0 0; overflow: hidden; }
.hero .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; }
.hero-copy { padding: 40px 48px 56px 0; display: flex; flex-direction: column; justify-content: center; }
.hero h1 { font-size: 3.4rem; margin: 18px 0 20px; }
.hero h1 .hl { background: var(--lime); padding: 0 8px; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
.hero p.lead { font-size: 1.12rem; color: var(--muted); margin-bottom: 30px; max-width: 460px; font-weight: 500; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; margin-bottom: 30px; }
.hero-facts { display: flex; gap: 24px; flex-wrap: wrap; }
.hero-facts div { font-size: 0.84rem; color: var(--ink); display: flex; align-items: center; gap: 7px; font-weight: 700; }
.hero-facts svg.ic { font-size: 1.1rem; }

.hero-visual { position: relative; background: var(--blue); border-left: 3px solid var(--ink); display: flex; align-items: center; justify-content: center; padding: 48px; }
.hero-visual .frame {
  background: var(--surface);
  border: 3px solid var(--ink);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
  max-width: 380px;
  width: 100%;
}
.hero-visual img { border-radius: 8px; width: 100%; aspect-ratio: 4/3.3; object-fit: contain; background: #f1efe6; }
.hero-visual .cap { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; font-size: 0.8rem; font-weight: 700; }
.hero-visual .float-sticker { position: absolute; top: 30px; right: 40px; z-index: 3; }
.hero-visual .float-sticker.two { top: auto; bottom: 40px; left: 30px; right: auto; transform: rotate(4deg); }

/* ---------- Sections ---------- */
section { padding: 72px 0; }
.section-head { max-width: 640px; margin: 0 0 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: 2.3rem; margin: 0 0 12px; }
.section-head p { color: var(--muted); font-size: 1.02rem; font-weight: 500; }

.block-lime { background: var(--lime); border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); }
.block-ink { background: var(--ink); color: #fff; }
.block-ink .section-head h2 { color: #fff; }
.block-ink .section-head p { color: #cfcfc6; }

/* Trust strip */
.trust-strip { padding: 26px 0; }
.trust-strip .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust-strip .item { display: flex; align-items: center; gap: 12px; }
.trust-strip .item .ic-box {
  width: 42px; height: 42px; border: 2.5px solid var(--ink); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.trust-strip .item:nth-child(1) .ic-box { background: var(--blue); color: #fff; }
.trust-strip .item:nth-child(2) .ic-box { background: var(--pink); color: #fff; }
.trust-strip .item:nth-child(3) .ic-box { background: var(--yellow); }
.trust-strip .item:nth-child(4) .ic-box { background: var(--lime); }
.trust-strip .item svg.ic { font-size: 1.2rem; }
.trust-strip .item strong { display: block; font-size: 0.9rem; font-weight: 700; }
.trust-strip .item span { font-size: 0.78rem; color: var(--ink); opacity: 0.75; }

/* How it works */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card { background: var(--surface); border: 3px solid var(--ink); border-radius: 16px; padding: 30px 26px; box-shadow: var(--shadow-md); }
.step-num {
  width: 46px; height: 46px; border-radius: 50%; border: 2.5px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.1rem; margin-bottom: 18px;
}
.step-card:nth-child(1) .step-num { background: var(--blue); color: #fff; }
.step-card:nth-child(2) .step-num { background: var(--pink); color: #fff; }
.step-card:nth-child(3) .step-num { background: var(--yellow); }
.step-card h3 { margin: 0 0 8px; font-size: 1.1rem; }
.step-card p { color: var(--muted); font-size: 0.9rem; margin: 0; font-weight: 500; }

/* Product grid */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 26px; }
.product-card { background: var(--surface); position: relative; border: 3px solid var(--ink); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-md); transition: transform 0.15s ease, box-shadow 0.15s ease; }
.product-card:hover { transform: translate(-3px, -3px); box-shadow: 11px 11px 0 var(--ink); }
.product-card .thumb { aspect-ratio: 4/3.3; overflow: hidden; background: #f1efe6; border-bottom: 3px solid var(--ink); display: flex; align-items: center; justify-content: center; }
.product-card .thumb img { width: 100%; height: 100%; object-fit: contain; }
.product-card .body { padding: 20px; }
.product-card h3 { margin: 0 0 10px; font-size: 1.05rem; font-weight: 700; font-family: 'Space Grotesk', sans-serif; }
.discount-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--pink); color: #fff; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.03em; padding: 6px 12px; border: 2px solid var(--ink); border-radius: 999px;
  transform: rotate(-4deg);
}
.price-row { display: flex; align-items: baseline; gap: 10px; }
.price-now { font-family: 'Space Grotesk', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--ink); }
.price-old { font-size: 0.85rem; color: var(--muted); text-decoration: line-through; }
.stock-line { font-size: 0.78rem; color: var(--green); font-weight: 700; margin-top: 8px; letter-spacing: 0.02em; text-transform: uppercase; }
.stock-line.low { color: #b8860b; }
.stock-line.out { color: var(--pink); }

/* Benefits */
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit-card { background: var(--surface); border: 3px solid var(--ink); border-radius: 16px; padding: 26px; box-shadow: var(--shadow-sm); }
.benefit-card .ic-box {
  width: 46px; height: 46px; border: 2.5px solid var(--ink); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.benefit-grid .benefit-card:nth-child(6n+1) .ic-box { background: var(--blue); color: #fff; }
.benefit-grid .benefit-card:nth-child(6n+2) .ic-box { background: var(--pink); color: #fff; }
.benefit-grid .benefit-card:nth-child(6n+3) .ic-box { background: var(--yellow); }
.benefit-grid .benefit-card:nth-child(6n+4) .ic-box { background: var(--lime); }
.benefit-grid .benefit-card:nth-child(6n+5) .ic-box { background: var(--blue); color: #fff; }
.benefit-grid .benefit-card:nth-child(6n+6) .ic-box { background: var(--pink); color: #fff; }
.benefit-card svg.ic { font-size: 1.3rem; }
.benefit-card h3 { margin: 0 0 8px; font-size: 1.02rem; font-weight: 700; font-family: 'Space Grotesk', sans-serif; }
.benefit-card p { color: var(--muted); font-size: 0.9rem; margin: 0; font-weight: 500; }

/* CTA banner */
.cta-banner {
  background: var(--pink); color: #fff;
  border: 3px solid var(--ink); border-radius: 24px;
  padding: 60px 48px; text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-banner h2 { color: #fff; font-size: 2.2rem; margin: 0 0 12px; }
.cta-banner p { opacity: 0.92; margin: 0 0 28px; font-weight: 600; }
.cta-banner .btn-primary { background: var(--yellow); color: var(--ink); }

/* FAQ */
.faq-item { background: var(--surface); border: 2.5px solid var(--ink); border-radius: 12px; margin-bottom: 14px; overflow: hidden; }
.faq-item summary {
  padding: 18px 22px; cursor: pointer; font-weight: 700; font-size: 0.98rem;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  font-family: 'Space Grotesk', sans-serif;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.3rem; color: var(--ink); font-weight: 700; }
.faq-item[open] summary::after { content: '−'; }
.faq-item .faq-body { padding: 0 22px 20px; color: var(--muted); font-size: 0.92rem; max-width: 640px; font-weight: 500; }

/* Footer */
footer.store-footer { background: var(--ink); color: #d7d5c9; padding: 48px 0 26px; border-top: 3px solid var(--ink); margin-top: auto; }
footer.store-footer .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
footer.store-footer .brand { font-family: 'Space Grotesk', sans-serif; color: #fff; font-size: 1.2rem; margin-bottom: 8px; font-weight: 700; }
footer.store-footer p { font-size: 0.88rem; margin: 0; font-weight: 500; }
footer.store-footer small { display: block; margin-top: 26px; color: #85836f; font-size: 0.8rem; border-top: 1px solid #2b2b22; padding-top: 20px; }

/* ---------- Product detail page ---------- */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; padding: 48px 0 64px; align-items: start; }
.pd-gallery { position: relative; }
.pd-slider-wrap { position: relative; }
.pd-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 50%;
  border: 2.5px solid var(--ink); background: var(--surface);
  font-size: 1.4rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm); z-index: 2;
}
.pd-arrow:hover { background: var(--yellow); }
.pd-arrow.prev { left: 14px; }
.pd-arrow.next { right: 14px; }

.pd-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  border: 3px solid var(--ink);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  background: #f1efe6;
  scrollbar-width: none;
}
.pd-slider::-webkit-scrollbar { display: none; }
.pd-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pd-slide img { width: 100%; height: 100%; object-fit: contain; }
.pd-thumbs { display: flex; gap: 12px; margin-top: 14px; flex-wrap: wrap; }
.pd-thumb {
  width: 70px; height: 70px; border: 2.5px solid var(--ink); border-radius: 10px;
  object-fit: contain; background: #f1efe6; cursor: pointer; opacity: 0.6; box-shadow: none;
  transition: opacity 0.12s ease, box-shadow 0.12s ease;
}
.pd-thumb:hover { opacity: 0.85; }
.pd-thumb.active { opacity: 1; box-shadow: 3px 3px 0 var(--ink); }
.pd-info h1 { font-size: 2.2rem; margin: 10px 0 16px; }
.pd-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.pd-stars { color: var(--yellow); font-size: 1.15rem; letter-spacing: 2px; }
.pd-rating-text { font-size: 0.85rem; color: var(--muted); font-weight: 600; }
.pd-price-row { display: flex; align-items: baseline; gap: 14px; margin-bottom: 18px; }
.pd-price-row .price-now { font-size: 2.2rem; }
.pd-badges { display: flex; gap: 10px; margin-bottom: 22px; flex-wrap: wrap; }
.pd-badge {
  border: 2.5px solid var(--ink); color: var(--ink); font-size: 0.76rem; font-weight: 700;
  padding: 7px 14px; letter-spacing: 0.02em; display: flex; align-items: center; gap: 6px;
  border-radius: 999px; background: var(--surface);
}
.pd-desc { color: var(--muted); margin-bottom: 26px; font-weight: 500; }
.pd-buybox { border: 3px solid var(--ink); border-radius: 18px; padding: 26px; margin-bottom: 24px; background: var(--surface); box-shadow: var(--shadow-md); }
.qty-select { display: flex; align-items: center; border: 2.5px solid var(--ink); border-radius: 999px; width: fit-content; margin-bottom: 20px; overflow: hidden; }
.qty-select button { width: 42px; height: 42px; border: none; background: transparent; font-size: 1.2rem; cursor: pointer; color: var(--ink); font-weight: 700; }
.qty-select input { width: 48px; text-align: center; border: none; border-left: 2px solid var(--ink); border-right: 2px solid var(--ink); background: transparent; font-weight: 700; font-size: 1rem; }

.bundle-list { display: flex; flex-direction: column; gap: 10px; }
.bundle-option {
  position: relative;
  display: flex; align-items: center; gap: 12px;
  border: 2.5px solid var(--ink); border-radius: 12px;
  padding: 14px 16px; cursor: pointer; background: var(--surface);
  transition: background 0.12s ease, box-shadow 0.12s ease;
}
.bundle-option input { position: absolute; opacity: 0; pointer-events: none; }
.bundle-option .bundle-radio {
  width: 20px; height: 20px; border-radius: 50%; border: 2.5px solid var(--ink);
  flex-shrink: 0; position: relative;
}
.bundle-option.selected { background: var(--lime); box-shadow: var(--shadow-sm); }
.bundle-option.selected .bundle-radio::after {
  content: ''; position: absolute; inset: 3px; border-radius: 50%; background: var(--ink);
}
.bundle-main { display: flex; flex-direction: column; flex: 1; gap: 3px; }
.qty-stepper { display: flex; align-items: center; gap: 10px; margin-top: 6px; }
.qty-stepper button {
  width: 26px; height: 26px; border-radius: 50%; border: 2px solid var(--ink);
  background: var(--surface); font-weight: 700; cursor: pointer; line-height: 1;
  display: flex; align-items: center; justify-content: center; font-size: 0.95rem;
}
.qty-stepper span { font-weight: 700; font-family: 'Space Grotesk', sans-serif; min-width: 14px; text-align: center; }
.bundle-qty { font-weight: 700; font-family: 'Space Grotesk', sans-serif; font-size: 0.98rem; }
.bundle-save { font-size: 0.78rem; color: var(--muted); font-weight: 600; }
.bundle-price { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.bundle-total { font-weight: 700; font-family: 'Space Grotesk', sans-serif; font-size: 1.05rem; }
.bundle-badge {
  position: absolute; top: -11px; right: 14px;
  background: var(--pink); color: #fff; font-size: 0.68rem; font-weight: 700;
  padding: 4px 10px; border-radius: 999px; border: 2px solid var(--ink);
  text-transform: uppercase; letter-spacing: 0.02em;
}
.pd-benefits { list-style: none; padding: 0; margin: 0 0 26px; }
.pd-benefits li { display: flex; gap: 12px; padding: 10px 0; font-size: 0.92rem; border-bottom: 2px dashed var(--ink); font-weight: 600; }
.pd-benefits li:last-child { border-bottom: none; }
.pd-benefits li svg.ic { color: var(--green); flex-shrink: 0; margin-top: 2px; }
.pd-trust { display: flex; gap: 22px; flex-wrap: wrap; }
.pd-trust div { font-size: 0.82rem; color: var(--ink); font-weight: 700; display: flex; align-items: center; gap: 7px; }
.pd-trust div:nth-child(1) svg.ic { color: var(--blue); }
.pd-trust div:nth-child(2) svg.ic { color: var(--pink); }
.pd-trust div:nth-child(3) svg.ic { color: var(--green); }

/* Sticky mobile buy bar */
.sticky-buy { display: none; }

/* ---------- Cart / Checkout ---------- */
.page-title { font-size: 2.2rem; margin: 40px 0 28px; }
.cart-card { background: var(--surface); border: 3px solid var(--ink); border-radius: 18px; padding: 8px 26px; box-shadow: var(--shadow-md); margin-bottom: 56px; }
.cart-line { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; border-bottom: 2px dashed var(--ink); gap: 16px; flex-wrap: wrap; min-width: 0; }
.cart-line-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; min-width: 0; }
.cart-qty-form { display: flex; gap: 8px; align-items: center; }
.cart-qty-input { width: 56px; padding: 8px; border-radius: 8px; border: 1.5px solid var(--border); text-align: center; }
.cart-line:last-child { border-bottom: none; }
.cart-line-info { display: flex; align-items: center; gap: 18px; min-width: 0; }
.cart-line-name { word-break: break-word; }
.cart-line-info img { width: 66px; height: 66px; object-fit: contain; border: 2.5px solid var(--ink); border-radius: 10px; background: #f1efe6; }
.cart-line-name { font-weight: 700; }
.cart-line-price { color: var(--muted); font-size: 0.86rem; font-weight: 500; }
.cart-summary { display: flex; justify-content: flex-end; align-items: center; gap: 24px; padding: 22px 0; }
.cart-summary .total { font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 700; }
.empty-box { text-align: center; padding: 80px 20px; color: var(--muted); border: 3px dashed var(--ink); border-radius: 18px; margin-bottom: 56px; }
.empty-box svg.ic { font-size: 2.2rem; margin-bottom: 16px; color: var(--ink); }

.checkout-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr); gap: 32px; padding: 36px 0 64px; align-items: start; min-width: 0; }
.form-card, .summary-card { min-width: 0; }
.form-card { background: var(--surface); border: 3px solid var(--ink); border-radius: 18px; padding: 32px; box-shadow: var(--shadow-md); }
.form-card h2 { margin-top: 0; font-size: 1.3rem; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.82rem; font-weight: 700; margin-bottom: 7px; color: var(--ink); }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px; border: 2.5px solid var(--ink); border-radius: 10px;
  font-size: 0.94rem; background: var(--surface); color: var(--ink); font-family: inherit;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--blue); }
.field textarea { min-height: 90px; resize: vertical; }

.pay-option {
  display: flex; align-items: center; gap: 12px; border: 2.5px solid var(--ink); border-radius: 10px;
  padding: 15px 16px; margin-bottom: 10px; cursor: pointer; font-weight: 700; font-size: 0.9rem;
}
.pay-option:has(input:checked) { background: var(--lime); }
.pay-option input { width: auto; accent-color: var(--ink); }
.bank-box { background: var(--paper); border: 2px dashed var(--ink); border-radius: 10px; padding: 16px; margin-top: 4px; font-size: 0.88rem; font-weight: 500; }

/* ---------- Havale/EFT ödeme kartı ---------- */
.bank-transfer-card {
  background: var(--surface); border: 2.5px solid var(--ink); border-radius: 16px;
  padding: 18px; margin-top: 4px; box-shadow: var(--shadow-sm);
}
.bt-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.bt-head-icon {
  width: 42px; height: 42px; flex-shrink: 0; border-radius: 50%;
  background: var(--primary-soft, #eaf0fd); color: var(--blue);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.bt-head-title { font-weight: 800; font-family: 'Space Grotesk', sans-serif; font-size: 1rem; }
.bt-head-sub { font-size: 0.8rem; color: var(--muted); }

.bt-row {
  border: 2px solid var(--border); border-radius: 12px;
  padding: 10px 10px 12px; margin-bottom: 10px;
}
.bt-row-top { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.bt-row-icon {
  width: 26px; height: 26px; flex-shrink: 0; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 0.9rem;
}
.bt-row-icon.blue { background: #eaf0fd; color: var(--blue); }
.bt-row-icon.green { background: #e6f9ee; color: var(--green); }
.bt-row-icon.yellow { background: #fff6da; color: #a87a00; }
.bt-row-label { font-size: 0.72rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.03em; }
.bt-row-bottom { display: flex; align-items: center; justify-content: space-between; gap: 8px; min-width: 0; }
.bt-row-value {
  flex: 1; min-width: 0; font-weight: 700; font-family: 'Space Grotesk', sans-serif;
  font-size: 0.92rem; white-space: normal; word-break: break-word; line-height: 1.3;
}
#bt-iban { font-size: 0.82rem; letter-spacing: -0.01em; }
.bt-copy {
  width: 32px; height: 32px; flex-shrink: 0; border: 2px solid var(--ink); border-radius: 9px;
  background: var(--surface); cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.bt-copy svg.ic { font-size: 0.95rem; }
.bt-copy.copied { background: var(--lime); }

.bt-warning {
  display: flex; gap: 10px; align-items: flex-start;
  background: var(--gold-soft, #fff6da); border: 2px solid var(--yellow); border-radius: 12px;
  padding: 12px 14px; margin-top: 6px; font-size: 0.84rem; color: #6b5100; font-weight: 600;
}
.bt-warning svg.ic { color: #a87a00; flex-shrink: 0; margin-top: 1px; }

.summary-card { background: var(--surface); border: 3px solid var(--ink); border-radius: 18px; padding: 26px; position: sticky; top: 96px; box-shadow: var(--shadow-md); }
.summary-line { display: flex; justify-content: space-between; font-size: 0.9rem; padding: 9px 0; border-bottom: 1px solid #e5e2d5; font-weight: 500; }
.summary-line:last-of-type { border-bottom: none; }
.summary-total { display: flex; justify-content: space-between; font-family: 'Space Grotesk', sans-serif; font-size: 1.3rem; font-weight: 700; margin-top: 16px; padding-top: 16px; border-top: 2.5px solid var(--ink); }

/* Order success */
.success-box { max-width: 560px; margin: 70px auto; background: var(--surface); border: 3px solid var(--ink); border-radius: 20px; padding: 52px 40px; text-align: center; box-shadow: var(--shadow-lg); }
.success-icon { width: 64px; height: 64px; border-radius: 50%; border: 3px solid var(--ink); background: var(--lime); color: var(--ink); font-size: 1.7rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }

/* ---------- Mobil hamburger menü ---------- */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: 2.5px solid var(--ink);
  border-radius: 10px;
  background: var(--surface);
  cursor: pointer;
  padding: 0;
}
.menu-toggle span { width: 20px; height: 2.5px; background: var(--ink); margin: 0 auto; transition: transform 0.15s ease, opacity 0.15s ease; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu-overlay {
  display: none;
  position: fixed; inset: 0; background: rgba(11, 11, 11, 0.5);
  z-index: 90; opacity: 0; transition: opacity 0.2s ease;
}
.mobile-menu-overlay.open { display: block; opacity: 1; }

.mobile-menu {
  position: fixed; top: 0; right: -420px; bottom: 0;
  width: 82%; max-width: 340px;
  background: var(--paper);
  border-left: 3px solid var(--ink);
  z-index: 91;
  display: flex; flex-direction: column;
  transition: right 0.25s ease;
  box-shadow: -8px 0 0 rgba(11,11,11,0.06);
}
.mobile-menu.open { right: 0; }

.mobile-menu-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; border-bottom: 3px solid var(--ink);
}
.menu-close {
  width: 38px; height: 38px; border: 2.5px solid var(--ink); border-radius: 10px;
  background: var(--surface); font-size: 1.3rem; line-height: 1; cursor: pointer;
}

.mobile-menu-cart {
  display: flex; align-items: center; justify-content: space-between;
  margin: 18px 20px; padding: 14px 16px;
  background: var(--lime); border: 2.5px solid var(--ink); border-radius: 12px;
  font-weight: 800; font-family: 'Space Grotesk', sans-serif; box-shadow: var(--shadow-sm);
}
.mobile-menu-cart span:first-child { display: flex; align-items: center; gap: 10px; }
.mobile-menu-cart-count {
  min-width: 26px; height: 26px; padding: 0 6px;
  border-radius: 999px; background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 0.85rem;
}

.mobile-menu-links { display: flex; flex-direction: column; padding: 0 12px; }
.mobile-menu-links a {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 12px; font-weight: 700; color: var(--ink);
  border-bottom: 1px solid var(--border);
}
.mobile-menu-links a:last-child { border-bottom: none; }
.mobile-menu-links a svg.ic { font-size: 1.2rem; color: var(--blue); flex-shrink: 0; }
.mobile-menu-links a:nth-child(2) svg.ic { color: var(--pink); }
.mobile-menu-links a:nth-child(3) svg.ic { color: var(--yellow); }
.mobile-menu-links a:nth-child(4) svg.ic { color: var(--green); }

@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-copy { padding: 40px 24px; }
  .hero-visual { border-left: none; border-top: 3px solid var(--ink); padding: 40px 24px; }
  .hero h1 { font-size: 2.3rem; }
  .steps, .benefit-grid { grid-template-columns: 1fr; }
  .trust-strip .wrap { grid-template-columns: repeat(2, 1fr); }
  .product-detail, .checkout-grid { grid-template-columns: minmax(0, 1fr); padding-bottom: 110px; }
  .store-nav a { display: none; }
  .menu-toggle { display: flex; }
  .sticky-buy {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
    background: var(--surface); border-top: 3px solid var(--ink); padding: 12px 16px;
    align-items: center; gap: 12px;
    box-shadow: 0 -10px 24px rgba(11, 11, 11, 0.12);
  }
  .sticky-buy-thumb {
    width: 46px; height: 46px; object-fit: contain; background: #f1efe6;
    border: 2px solid var(--ink); border-radius: 10px; flex-shrink: 0;
  }
  .sticky-buy-info { flex: 1; min-width: 0; }
  .sticky-buy-name {
    font-size: 0.78rem; font-weight: 600; color: var(--muted);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .sticky-buy-price { display: flex; align-items: baseline; gap: 8px; }
  .sticky-buy-price #sticky-price {
    font-weight: 800; font-size: 1.15rem; font-family: 'Space Grotesk', sans-serif;
  }
  .sticky-buy-price .price-old { font-size: 0.78rem; }
  .sticky-buy-btn { flex-shrink: 0; padding: 13px 22px; }
}
