/* ============================================
   PawFort Zone — Design System
   ============================================ */

:root {
  /* Palette */
  --forest:      #1F4A2C;
  --forest-dark: #163720;
  --leaf:        #8FBC4A;
  --leaf-soft:   #EEF5E2;
  --ink:         #1A1D1A;
  --slate:       #5C6660;
  --line:        #E3E7E2;
  --paper:       #FFFFFF;
  --mist:        #F6F8F5;

  /* Type */
  --font: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  /* Layout */
  --wrap: 1180px;
  --gutter: 24px;
  --radius: 14px;
  --radius-sm: 8px;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 600;
}

h1 { font-size: clamp(2.1rem, 4vw, 3.1rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  margin: 0 0 14px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 30px;
  border: 1.5px solid transparent;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  transition: background .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease), transform .12s var(--ease);
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--forest);
  color: #fff;
}
.btn--primary:hover { background: var(--forest-dark); }

.btn--ghost {
  background: transparent;
  color: var(--forest);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--forest); background: var(--mist); }

.btn--block { width: 100%; }

:focus-visible {
  outline: 3px solid var(--leaf);
  outline-offset: 3px;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  white-space: nowrap;
}
.logo svg { flex-shrink: 0; }
.logo sup { font-size: .52em; font-weight: 500; top: -.7em; position: relative; color: var(--slate); }

.nav {
  display: flex;
  gap: 30px;
  font-size: .95rem;
  font-weight: 500;
}
.nav a {
  text-decoration: none;
  color: var(--slate);
  transition: color .18s var(--ease);
}
.nav a:hover { color: var(--forest); }

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

.cart-btn {
  position: relative;
  background: none;
  border: none;
  padding: 9px;
  cursor: pointer;
  color: var(--ink);
  border-radius: 50%;
  display: flex;
  transition: background .18s var(--ease);
}
.cart-btn:hover { background: var(--mist); }

.cart-count {
  position: absolute;
  top: 1px; right: 1px;
  background: var(--forest);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 100px;
  display: grid;
  place-items: center;
  padding: 0 5px;
}
.cart-count[hidden] { display: none; }

.menu-toggle { display: none; background: none; border: none; padding: 9px; cursor: pointer; color: var(--ink); }

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announce {
  background: var(--forest);
  color: #fff;
  text-align: center;
  font-size: .85rem;
  font-weight: 500;
  padding: 9px var(--gutter);
  letter-spacing: .01em;
}
.announce strong { font-weight: 700; }

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 68px 0 80px;
  background: linear-gradient(180deg, var(--mist) 0%, #fff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 52px;
  align-items: center;
}

.hero-copy h1 {
  margin-bottom: 20px;
  text-wrap: balance;
}
.hero-copy h1 em {
  font-style: normal;
  color: var(--forest);
  white-space: nowrap;
}

/* Dar ekranlarda sarmaya izin ver */
@media (max-width: 430px) {
  .hero-copy h1 em { white-space: normal; }
}

.hero-lede {
  font-size: 1.12rem;
  color: var(--slate);
  max-width: 44ch;
  margin-bottom: 28px;
}

.hero-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 26px;
}
.hero-price .amount {
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.hero-price .note {
  font-size: .92rem;
  color: var(--slate);
  font-weight: 500;
}

.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 26px; }

.hero-assure {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-size: .9rem;
  color: var(--slate);
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.hero-assure span { display: flex; align-items: center; gap: 7px; }
.hero-assure svg { color: var(--forest); flex-shrink: 0; }

.hero-media {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--mist);
  box-shadow: 0 18px 48px -20px rgba(31,74,44,.28);
}
.hero-media img { width: 100%; height: auto; }

/* ============================================
   GALLERY (hero)
   ============================================ */
.gallery { display: flex; flex-direction: column; gap: 12px; }

.gallery-stage {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--mist);
  aspect-ratio: 4 / 5;
  box-shadow: 0 18px 48px -22px rgba(31,74,44,.3);
}

.gallery-track {
  display: flex;
  height: 100%;
  transition: transform .42s var(--ease);
}
.gallery-slide {
  min-width: 100%;
  height: 100%;
}
.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-slide--contain img { object-fit: contain; background: #fff; }

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px; height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 3px 12px rgba(0,0,0,.16);
  transition: background .18s var(--ease), opacity .18s var(--ease);
}
.gallery-arrow:hover { background: #fff; }
.gallery-arrow[disabled] { opacity: .32; cursor: default; }
.gallery-arrow--prev { left: 12px; }
.gallery-arrow--next { right: 12px; }

.gallery-counter {
  position: absolute;
  bottom: 12px; right: 12px;
  background: rgba(26,29,26,.72);
  color: #fff;
  font-size: .78rem;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 100px;
  letter-spacing: .03em;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 9px;
}
.gallery-thumb {
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  background: var(--mist);
  aspect-ratio: 1;
  transition: border-color .18s var(--ease);
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb[aria-current="true"] { border-color: var(--forest); }
.gallery-thumb:hover { border-color: var(--leaf); }

/* ============================================
   VALUE STRIP
   ============================================ */
.values {
  padding: 76px 0;
  border-bottom: 1px solid var(--line);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.value-card svg {
  color: var(--forest);
  margin-bottom: 16px;
}
.value-card h3 { margin-bottom: 8px; }
.value-card p {
  color: var(--slate);
  font-size: .98rem;
  margin: 0;
}

/* ============================================
   FEATURE SECTIONS (full-bleed image blocks)
   ============================================ */
.feature {
  padding: 84px 0;
}
.feature--mist { background: var(--mist); }

.feature-head {
  max-width: 620px;
  margin: 0 auto 44px;
  text-align: center;
}
.feature-head h2 { margin-bottom: 14px; }
.feature-head p {
  color: var(--slate);
  font-size: 1.05rem;
  margin: 0;
}

.feature-figure {
  max-width: 860px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
}
.feature-figure img { width: 100%; }

/* ============================================
   SPEC / DETAIL SPLIT
   ============================================ */
.specs { padding: 84px 0; }

.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.specs-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.specs-media img {
  border-radius: var(--radius-sm);
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
}

.spec-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  border-top: 1px solid var(--line);
}
.spec-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: .97rem;
}
.spec-list dt, .spec-list .k { color: var(--slate); }
.spec-list .v { font-weight: 600; text-align: right; }

/* ============================================
   FAQ
   ============================================ */
.faq { padding: 84px 0; background: var(--mist); }
.faq-list { max-width: 760px; margin: 40px auto 0; }

.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  cursor: pointer;
  padding: 20px 0;
  font-weight: 600;
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  width: 11px; height: 11px;
  border-right: 2px solid var(--forest);
  border-bottom: 2px solid var(--forest);
  transform: rotate(45deg);
  transition: transform .22s var(--ease);
  flex-shrink: 0;
  margin-right: 4px;
}
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-item p {
  color: var(--slate);
  padding-bottom: 20px;
  margin: 0;
  max-width: 62ch;
}

/* ============================================
   CONTENT PAGES (policies, about, contact)
   ============================================ */
.page-head {
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--line);
  background: var(--mist);
}
.page-head h1 { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 10px; }
.page-head p { color: var(--slate); margin: 0; }

.prose {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px var(--gutter) 80px;
}
.prose h2 {
  font-size: 1.5rem;
  margin: 44px 0 14px;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.1rem; margin: 28px 0 8px; }
.prose p, .prose li { color: var(--slate); }
.prose strong { color: var(--ink); font-weight: 600; }
.prose ul, .prose ol { padding-left: 22px; margin: 0 0 1em; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--forest); }

.prose-note {
  background: var(--leaf-soft);
  border-left: 3px solid var(--forest);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 18px 22px;
  margin: 26px 0;
}
.prose-note p { margin: 0; color: var(--ink); font-size: .96rem; }
.prose-note p + p { margin-top: 8px; }

.address-box {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  margin: 22px 0;
  background: #fff;
}
.address-box h3 { margin: 0 0 8px; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; color: var(--forest); }
.address-box p { margin: 0; color: var(--ink); line-height: 1.7; }

/* ---------- Contact grid ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin: 0 0 40px;
}
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.contact-card svg { color: var(--forest); margin-bottom: 14px; }
.contact-card h3 { font-size: 1rem; margin-bottom: 8px; }
.contact-card p { color: var(--slate); font-size: .95rem; margin: 0 0 4px; line-height: 1.6; }
.contact-card a { color: var(--forest); font-weight: 600; text-decoration: none; }
.contact-card a:hover { text-decoration: underline; }

/* ---------- 404 ---------- */
.notfound {
  min-height: 58vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px var(--gutter);
}
.notfound h1 { font-size: clamp(3rem, 9vw, 5.5rem); color: var(--forest); margin-bottom: 12px; }
.notfound p { color: var(--slate); max-width: 42ch; margin: 0 auto 26px; }

/* ============================================
   CART DRAWER
   ============================================ */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,29,26,.42);
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s var(--ease), visibility .28s;
  z-index: 90;
}
.drawer-overlay.is-open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100%;
  width: min(420px, 100%);
  background: #fff;
  transform: translateX(100%);
  transition: transform .32s var(--ease);
  z-index: 95;
  display: flex;
  flex-direction: column;
}
.drawer.is-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 h2 { font-size: 1.15rem; }
.drawer-close {
  background: none; border: none; cursor: pointer;
  padding: 6px; color: var(--slate); display: flex;
  border-radius: 50%;
}
.drawer-close:hover { background: var(--mist); color: var(--ink); }

.drawer-body { flex: 1; overflow-y: auto; padding: 24px; }

.drawer-empty {
  text-align: center;
  color: var(--slate);
  padding: 60px 20px;
}
.drawer-empty svg { color: var(--line); margin-bottom: 16px; }

.cart-line {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 14px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.cart-line img { border-radius: var(--radius-sm); width: 74px; height: 74px; object-fit: cover; }
.cart-line-name { font-weight: 600; font-size: .95rem; line-height: 1.35; margin-bottom: 4px; }
.cart-line-price { color: var(--slate); font-size: .9rem; margin-bottom: 10px; }

.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 100px;
  overflow: hidden;
}
.qty button {
  background: none; border: none; cursor: pointer;
  width: 30px; height: 30px;
  font-size: 1.05rem; color: var(--ink);
  display: grid; place-items: center;
}
.qty button:hover { background: var(--mist); }
.qty span { min-width: 26px; text-align: center; font-size: .92rem; font-weight: 600; }

.link-remove {
  background: none; border: none; padding: 0;
  color: var(--slate); font-size: .85rem;
  cursor: pointer; text-decoration: underline;
  font-family: inherit; margin-left: 12px;
}
.link-remove:hover { color: var(--ink); }

.drawer-foot {
  border-top: 1px solid var(--line);
  padding: 22px 24px;
  background: #fff;
}
.drawer-row {
  display: flex; justify-content: space-between;
  font-size: .95rem; margin-bottom: 8px;
  color: var(--slate);
}
.drawer-row--total {
  font-size: 1.15rem; font-weight: 700; color: var(--ink);
  padding-top: 12px; margin-top: 8px;
  border-top: 1px solid var(--line);
}
.drawer-note { font-size: .82rem; color: var(--slate); text-align: center; margin: 12px 0 0; }

/* ============================================
   TOAST
   ============================================ */
.toast-stack {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 120;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.toast {
  background: var(--ink);
  color: #fff;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: .92rem;
  font-weight: 500;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 10px 30px -8px rgba(0,0,0,.35);
  animation: toast-in .3s var(--ease);
}
.toast svg { color: var(--leaf); flex-shrink: 0; }
@keyframes toast-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--forest-dark);
  color: rgba(255,255,255,.72);
  padding: 62px 0 30px;
  font-size: .93rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.13);
}
.footer-brand .logo { color: #fff; margin-bottom: 14px; }
.footer-brand .logo sup { color: rgba(255,255,255,.6); }
.footer-brand p { margin: 0 0 6px; max-width: 40ch; line-height: 1.6; }
.footer-brand strong { color: #fff; font-weight: 600; }

.footer-col h4 {
  color: #fff;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { text-decoration: none; transition: color .18s var(--ease); }
.footer-col a:hover { color: #fff; }

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: .85rem;
}
.pay-icons { display: flex; gap: 8px; align-items: center; opacity: .8; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-media { order: -1; }
  .values-grid { grid-template-columns: 1fr; gap: 34px; }
  .specs-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .nav { display: none; }
  .menu-toggle { display: flex; }
}

@media (max-width: 700px) {
  .header-buy { display: none; }
  .header-inner { height: 64px; }
  .logo { font-size: 1.05rem; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .hero { padding: 32px 0 52px; }
  .values, .feature, .specs, .faq { padding: 52px 0; }
  .specs-media { grid-template-columns: 1fr 1fr; }
  .toast-stack { left: 16px; right: 16px; bottom: 16px; }
  .btn { padding: 15px 26px; }
  .gallery-thumbs { gap: 6px; }
  .gallery-arrow { width: 36px; height: 36px; }
  .prose { padding: 40px var(--gutter) 60px; }
  .page-head { padding: 40px 0 32px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================
   MOBILE STICKY BUY BAR
   Scroll ile beliren sabit satın alma çubuğu
   ============================================ */
.buybar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 70;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  padding: 11px 16px calc(11px + env(safe-area-inset-bottom));
  display: none;
  align-items: center;
  gap: 12px;
  transform: translateY(110%);
  transition: transform .3s var(--ease);
  box-shadow: 0 -4px 20px -8px rgba(0,0,0,.18);
}
.buybar.is-visible { transform: translateY(0); }

.buybar-info { flex: 1; min-width: 0; }
.buybar-name {
  font-size: .82rem;
  color: var(--slate);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}
.buybar-price { font-size: 1.12rem; font-weight: 700; letter-spacing: -.02em; }
.buybar .btn { padding: 13px 24px; font-size: .95rem; white-space: nowrap; }

@media (max-width: 860px) {
  .buybar { display: flex; }
  body { padding-bottom: 0; }
}

/* ============================================
   MOBILE REFINEMENTS
   ============================================ */
@media (max-width: 860px) {
  .hero-grid { gap: 32px; }
  .gallery-stage { aspect-ratio: 1 / 1; }
  .hero-price { flex-direction: column; gap: 2px; align-items: flex-start; }
  .hero-cta .btn { flex: 1; min-width: 0; }
  .hero-cta { gap: 10px; }
}

@media (max-width: 480px) {
  h1 { font-size: clamp(1.85rem, 8.2vw, 2.3rem); }
  h2 { font-size: clamp(1.55rem, 6.6vw, 1.9rem); }
  .hero-lede { font-size: 1.02rem; }
  .hero-price .amount { font-size: 1.85rem; }
  .hero-assure { gap: 7px 16px; font-size: .86rem; }
  .gallery-thumbs { grid-template-columns: repeat(6, 1fr); gap: 5px; }
  .gallery-counter { font-size: .72rem; padding: 4px 9px; }
  .value-card h3 { font-size: 1.12rem; }
  .spec-list li { font-size: .92rem; gap: 14px; }
  .faq-item summary { font-size: .98rem; padding: 17px 0; }
  .drawer { width: 100%; }
  .contact-grid { grid-template-columns: 1fr; }
  .address-box { padding: 16px 18px; }
  .prose h2 { font-size: 1.32rem; margin: 34px 0 12px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* Dokunmatik hedefler minimum 44px */
@media (hover: none) {
  .qty button { width: 38px; height: 38px; }
  .link-remove { padding: 8px 0; }
  .faq-item summary { padding: 19px 0; }
  .nav a { padding: 6px 0; }
}

/* ============================================
   PRINT
   ============================================ */
@media print {
  .announce, .site-header, .buybar, .drawer, .drawer-overlay,
  .toast-stack, .gallery-arrow, .gallery-thumbs, .hero-cta,
  .cart-btn, .btn { display: none !important; }

  body { font-size: 11pt; line-height: 1.5; color: #000; background: #fff; }
  .wrap, .prose { max-width: 100%; padding: 0; }
  .page-head { background: none; padding: 0 0 18pt; border-bottom: 1pt solid #000; }
  h1 { font-size: 20pt; }
  h2 { font-size: 14pt; margin-top: 18pt; page-break-after: avoid; }
  h3 { font-size: 12pt; page-break-after: avoid; }
  p, li { color: #000; orphans: 3; widows: 3; }
  a { color: #000; text-decoration: underline; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #444; }
  a[href^="#"]::after, a[href^="mailto"]::after, a[href^="tel"]::after { content: ""; }
  .address-box, .prose-note {
    border: 1pt solid #999; background: none;
    page-break-inside: avoid; padding: 10pt;
  }
  .site-footer { background: none; color: #000; border-top: 1pt solid #000; padding: 14pt 0 0; }
  .site-footer a { color: #000; }
  .footer-col, .pay-icons { display: none; }
  img { max-width: 100%; page-break-inside: avoid; }
}

/* ============================================
   CHECKOUT
   ============================================ */
.checkout {
  padding: 44px 0 90px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 56px;
  align-items: start;
}

.checkout-form h2 {
  font-size: 1.28rem;
  margin: 0 0 18px;
}
.checkout-section + .checkout-section { margin-top: 40px; }

.field { margin-bottom: 16px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
}
.field .opt { font-weight: 400; color: var(--slate); }

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  padding: 13px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='%235C6660' stroke-width='2'%3E%3Cpath d='m1 1 5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(31,74,44,.11);
}
.field input::placeholder { color: #A8B0AA; }

.field.has-error input,
.field.has-error select { border-color: #C0392B; }
.field-error {
  display: none;
  font-size: .82rem;
  color: #C0392B;
  margin-top: 5px;
}
.field.has-error .field-error { display: block; }

/* Honeypot — insanlara görünmez, botlar doldurur */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
  opacity: 0;
}

/* ---------- Order summary ---------- */
.summary {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  background: var(--mist);
  position: sticky;
  top: 96px;
}
.summary h2 { font-size: 1.1rem; margin: 0 0 18px; }

.summary-line {
  display: grid;
  grid-template-columns: 66px 1fr auto;
  gap: 13px;
  align-items: start;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.summary-line img {
  width: 66px; height: 66px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: #fff;
}
.summary-line-name { font-weight: 600; font-size: .93rem; line-height: 1.35; }
.summary-line-meta { color: var(--slate); font-size: .84rem; margin-top: 3px; }
.summary-line-price { font-weight: 600; font-size: .93rem; white-space: nowrap; }

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: .94rem;
  color: var(--slate);
  margin-bottom: 9px;
}
.summary-row--total {
  font-size: 1.16rem;
  font-weight: 700;
  color: var(--ink);
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-top: 14px;
}

.summary-note {
  font-size: .84rem;
  color: var(--slate);
  margin: 16px 0 0;
  line-height: 1.55;
}

.trust-list {
  list-style: none;
  padding: 18px 0 0;
  margin: 18px 0 0;
  border-top: 1px solid var(--line);
}
.trust-list li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: .87rem;
  color: var(--slate);
  margin-bottom: 10px;
}
.trust-list svg { color: var(--forest); flex-shrink: 0; margin-top: 2px; }

.checkout-submit { margin-top: 28px; }
.checkout-submit .btn { width: 100%; }

.form-alert {
  display: none;
  background: #FDECEA;
  border: 1px solid #E8B4AE;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: .92rem;
  color: #922B21;
  margin-bottom: 20px;
}
.form-alert.is-visible { display: block; }

.btn[disabled] { opacity: .6; cursor: default; }

/* ---------- Empty cart state ---------- */
.checkout-empty {
  text-align: center;
  padding: 80px 20px;
  max-width: 480px;
  margin: 0 auto;
}
.checkout-empty svg { color: var(--line); margin-bottom: 18px; }
.checkout-empty h2 { margin-bottom: 10px; }
.checkout-empty p { color: var(--slate); margin-bottom: 24px; }

/* ============================================
   ORDER SUCCESS
   ============================================ */
.success {
  padding: 70px 0 90px;
  text-align: center;
}
.success-icon {
  width: 66px; height: 66px;
  border-radius: 50%;
  background: var(--leaf-soft);
  color: var(--forest);
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
}
.success h1 { margin-bottom: 12px; }
.success-lede {
  color: var(--slate);
  font-size: 1.06rem;
  max-width: 50ch;
  margin: 0 auto 30px;
}

.ref-box {
  display: inline-block;
  border: 1.5px dashed var(--forest);
  border-radius: var(--radius-sm);
  padding: 15px 30px;
  margin-bottom: 34px;
  background: var(--leaf-soft);
}
.ref-box small {
  display: block;
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--forest);
  font-weight: 600;
  margin-bottom: 5px;
}
.ref-box strong {
  font-size: 1.32rem;
  letter-spacing: .02em;
}

.next-steps {
  max-width: 560px;
  margin: 0 auto 36px;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 28px;
}
.next-steps h2 { font-size: 1.06rem; margin-bottom: 16px; }
.next-steps ol { padding-left: 20px; margin: 0; }
.next-steps li { color: var(--slate); margin-bottom: 11px; }
.next-steps li:last-child { margin-bottom: 0; }
.next-steps strong { color: var(--ink); }

/* ============================================
   CHECKOUT RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .checkout-grid { grid-template-columns: 1fr; gap: 34px; }
  .summary { position: static; order: -1; }
  .checkout { padding: 30px 0 70px; }
}

@media (max-width: 480px) {
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .summary { padding: 20px 18px; }
  .next-steps { padding: 20px 20px; }
  .success { padding: 48px 0 70px; }
  .ref-box { padding: 13px 22px; }
  .ref-box strong { font-size: 1.15rem; }
}
