/* ═══════════════════════════════════════════════════════
   Sakarya Akdeniz Toros — style.css v3.0
   Temiz, hızlı, Güneş Toros ruhuna uygun
   ═══════════════════════════════════════════════════════ */

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

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

:root {
  /* Ana palet — Toros kırmızısı + koyu lacivert */
  --red:          #d32f2f;
  --red-dark:     #b71c1c;
  --red-light:    #ef5350;
  --red-bg:       #fff5f5;
  --red-shadow:   0 4px 20px rgba(211,47,47,.22);

  --navy:         #0d1f3c;
  --navy-mid:     #1a3256;
  --navy-light:   #243d66;

  --gold:         #f59e0b;
  --gold-light:   #fbbf24;

  --white:        #ffffff;
  --off-white:    #f8f8f8;
  --light-gray:   #f2f2f2;
  --border:       #e8e8e8;
  --border-dark:  #d0d0d0;
  --text:         #111827;
  --text-mid:     #374151;
  --text-soft:    #6b7280;
  --text-faint:   #9ca3af;

  --green:        #16a34a;
  --green-bg:     #f0fdf4;

  --font-ui:      'Inter', system-ui, sans-serif;
  --font-display: 'Outfit', system-ui, sans-serif;

  --r-sm:   6px;
  --r:      10px;
  --r-lg:   16px;
  --r-xl:   22px;
  --r-full: 999px;

  --sh-xs: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --sh-sm: 0 2px 8px rgba(0,0,0,.08);
  --sh:    0 4px 20px rgba(0,0,0,.10);
  --sh-lg: 0 8px 40px rgba(0,0,0,.14);

  --ease: cubic-bezier(.4,0,.2,1);
  --fast: all .15s var(--ease);
  --mid:  all .25s var(--ease);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-ui);
  background: var(--off-white);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

/* ── DUYURU ŞERİDİ ─────────────────────────────────── */
.announcement-bar {
  background: var(--navy);
  padding: 8px 0;
  overflow: hidden;
}
.announcement-track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: ticker 35s linear infinite;
}
.announcement-track span {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  white-space: nowrap;
  letter-spacing: .01em;
}
.announcement-track span::before {
  content: '◆';
  margin-right: 10px;
  color: var(--gold);
  font-size: .5rem;
  vertical-align: middle;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── HEADER ────────────────────────────────────────── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 500;
  box-shadow: var(--sh-sm);
}
.header-top {
  max-width: 1260px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-mark {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: var(--red-shadow);
  flex-shrink: 0;
}
.logo-words { display: flex; flex-direction: column; line-height: 1.15; }
.logo-top {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--navy);
  letter-spacing: -.01em;
}
.logo-top span { color: var(--red); }
.logo-bot {
  font-size: .67rem;
  font-weight: 600;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: .07em;
}

/* Arama */
.search-wrap { flex: 1; max-width: 500px; }
.search-form {
  display: flex;
  align-items: center;
  background: var(--light-gray);
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  padding: 0 6px 0 14px;
  transition: var(--mid);
}
.search-form:focus-within {
  background: var(--white);
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(211,47,47,.1);
}
.search-form input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-ui);
  font-size: .9rem;
  padding: 10px 0;
  color: var(--text);
}
.search-form input::placeholder { color: var(--text-faint); }
.search-submit {
  background: var(--red);
  border: none;
  border-radius: var(--r-full);
  width: 34px;
  height: 34px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  transition: var(--fast);
  flex-shrink: 0;
}
.search-submit:hover { background: var(--red-dark); }

/* Header sağ */
.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
}
.header-phone-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.1;
}
.hphone-label { font-size: .62rem; color: var(--text-faint); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.hphone-num   { font-size: .88rem; font-weight: 800; color: var(--navy); }

.cart-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: var(--r-full);
  padding: 10px 20px;
  font-family: var(--font-ui);
  font-size: .88rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: var(--mid);
  box-shadow: var(--red-shadow);
  white-space: nowrap;
}
.cart-btn:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(211,47,47,.3); }
.cart-count {
  background: var(--white);
  color: var(--red);
  border-radius: 50%;
  min-width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 900;
  padding: 0 4px;
  animation: pop .3s cubic-bezier(.175,.885,.32,1.275);
}
@keyframes pop { from { transform: scale(0); } to { transform: scale(1); } }

/* ── TESLİMAT BANNER ───────────────────────────────── */
.delivery-banner {
  background: var(--navy-mid);
  position: relative;
}
.delivery-trigger {
  max-width: 1260px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  text-align: left;
}
.delivery-icon   { font-size: 1.2rem; flex-shrink: 0; }
.delivery-text   { flex: 1; }
.delivery-label  { font-size: .65rem; opacity: .6; display: block; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; }
.delivery-value  { font-size: .9rem; font-weight: 700; }
.delivery-slots-badges { display: flex; gap: 8px; margin-left: auto; }
.slot-badge-sm {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.85);
  font-size: .7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--r-full);
  white-space: nowrap;
}
.delivery-chevron { font-size: .65rem; opacity: .5; transition: transform .2s; flex-shrink: 0; }
.delivery-chevron.open { transform: rotate(180deg); }

.delivery-dropdown {
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--white);
  display: flex;
  z-index: 400;
  box-shadow: var(--sh-lg);
  border-top: 3px solid var(--red);
  max-height: 360px;
}
.delivery-districts, .delivery-neighborhoods {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
}
.delivery-neighborhoods { border-left: 1px solid var(--border); }
.dropdown-title {
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-soft);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.district-btn, .neighborhood-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 8px 12px;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: var(--r-sm);
  font-family: var(--font-ui);
  font-size: .87rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--fast);
  margin-bottom: 1px;
}
.district-btn:hover, .neighborhood-btn:hover:not(.disabled) { background: var(--red-bg); color: var(--red); }
.district-btn.active  { background: var(--red); color: var(--white); font-weight: 700; }
.neighborhood-btn.active { background: var(--red); color: var(--white); }
.neighborhood-btn.disabled { opacity: .4; cursor: not-allowed; }
.no-delivery-tag { font-size: .65rem; color: var(--red); margin-left: 6px; }
.select-district-hint { color: var(--text-soft); font-size: .84rem; padding: 8px 12px; }

/* ── KATEGORİ NAV ───────────────────────────────────── */
.site-nav {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 69px;
  z-index: 400;
}
/* nav-item (eski sayfalar için compat) */
.nav-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 12px;
  font-size: .8rem;
  font-weight: 600;
  color: inherit;
  white-space: nowrap;
  text-decoration: none;
  flex-shrink: 0;
}

/* ── ANA İÇERİK ─────────────────────────────────────── */
.site-main { min-height: 60vh; }
.main-layout {
  max-width: 1260px;
  margin: 0 auto;
  padding: 28px 20px 60px;
}

/* ── HERO ───────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0a1628 55%, #1a0606 100%);
  border-radius: var(--r-xl);
  padding: 48px 48px 48px 52px;
  margin-bottom: 28px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 40px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 90% 50%, rgba(211,47,47,.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(245,158,11,.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.hero-body { position: relative; z-index: 1; flex: 1; }
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(211,47,47,.2);
  border: 1px solid rgba(211,47,47,.4);
  color: #fca5a5;
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--r-full);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 12px;
  letter-spacing: -.02em;
}
.hero h1 em { font-style: normal; color: var(--gold-light); }
.hero p {
  font-size: .97rem;
  color: rgba(255,255,255,.72);
  max-width: 420px;
  margin-bottom: 24px;
  line-height: 1.6;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: var(--r-full);
  padding: 13px 28px;
  font-family: var(--font-ui);
  font-size: .93rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: var(--mid);
  box-shadow: 0 6px 24px rgba(211,47,47,.4);
}
.hero-cta:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(211,47,47,.5); }
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.hero-stat {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 16px 22px;
  text-align: center;
  backdrop-filter: blur(8px);
  min-width: 110px;
}
.hero-stat-val {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
  display: block;
}
.hero-stat-lbl {
  font-size: .68rem;
  color: rgba(255,255,255,.55);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-top: 4px;
  display: block;
}

/* ── ÖZELLİK KARTLARI ──────────────────────────────── */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.feat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--mid);
  box-shadow: var(--sh-xs);
}
.feat:hover { border-color: var(--red); box-shadow: var(--sh); transform: translateY(-2px); }
.feat-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.feat-icon.r { background: var(--red-bg); }
.feat-icon.g { background: var(--green-bg); }
.feat-icon.b { background: #eff6ff; }
.feat-icon.y { background: #fffbeb; }
.feat-title { font-size: .85rem; font-weight: 700; color: var(--text); }
.feat-desc  { font-size: .73rem; color: var(--text-soft); margin-top: 2px; }

/* ── KATEGORİ ŞERİDİ ───────────────────────────────── */
.cats-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin-bottom: 28px;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.cats-row::-webkit-scrollbar { display: none; }
.cat-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: var(--r-full);
  border: 1.5px solid var(--border);
  background: var(--white);
  font-family: var(--font-ui);
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-mid);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  transition: var(--fast);
  box-shadow: var(--sh-xs);
}
.cat-chip:hover { border-color: var(--red); color: var(--red); }
.cat-chip.active { background: var(--red); color: var(--white); border-color: var(--red); font-weight: 700; box-shadow: var(--red-shadow); }

/* ── BÖLÜM BAŞLIĞI ──────────────────────────────────── */
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.section-ttl {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-ttl::before {
  content: '';
  width: 4px;
  height: 18px;
  background: var(--red);
  border-radius: 2px;
  display: block;
}
.see-all {
  font-size: .82rem;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
}
.see-all:hover { text-decoration: underline; }

/* ── ÜRÜN GRİD ──────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 16px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--mid);
  box-shadow: var(--sh-xs);
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
  border-color: transparent;
}

.product-img-wrap {
  display: block;
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--light-gray);
}
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease);
}
.product-card:hover .product-img { transform: scale(1.06); }

.badge-discount {
  position: absolute;
  top: 8px; left: 8px;
  background: var(--red);
  color: var(--white);
  font-size: .66rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: var(--r-full);
  z-index: 2;
  letter-spacing: .02em;
}
.badge-new {
  position: absolute;
  top: 8px; right: 8px;
  background: var(--gold);
  color: var(--white);
  font-size: .63rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--r-full);
  z-index: 2;
}
.out-of-stock {
  position: absolute;
  inset: 0;
  background: rgba(17,24,39,.5);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .04em;
  backdrop-filter: blur(2px);
}

.product-body { padding: 12px 14px 14px; }
.product-cat {
  font-size: .64rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 4px;
  display: block;
}
.product-name {
  font-size: .88rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: none;
}
.product-name:hover { color: var(--red); }
.product-foot { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.price-wrap { display: flex; align-items: baseline; gap: 4px; flex-wrap: wrap; }
.price-now  { font-size: 1.05rem; font-weight: 900; color: var(--red); }
.price-was  { font-size: .73rem; color: var(--text-faint); text-decoration: line-through; }
.price-unit { font-size: .66rem; color: var(--text-soft); }

.add-btn {
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: var(--r-full);
  padding: 7px 14px;
  font-family: var(--font-ui);
  font-size: .77rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--fast);
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(211,47,47,.25);
}
.add-btn:hover   { background: var(--red-dark); transform: scale(1.04); }
.add-btn.added   { background: var(--green); box-shadow: 0 2px 8px rgba(22,163,74,.3); }
.add-btn.disabled{ background: var(--border-dark); color: var(--text-soft); cursor: not-allowed; box-shadow: none; }
.add-btn.loading { opacity: .65; cursor: not-allowed; }

/* ── SEPET ──────────────────────────────────────────── */
.cart-layout { display: flex; gap: 24px; align-items: flex-start; }
.cart-list    { flex: 1; display: flex; flex-direction: column; gap: 12px; }
.cart-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--sh-xs);
  transition: var(--fast);
}
.cart-item:hover { border-color: var(--border-dark); }
.item-image { width: 60px; height: 60px; border-radius: var(--r); object-fit: cover; flex-shrink: 0; }
.item-info  { flex: 1; }
.item-name  { font-size: .9rem; font-weight: 700; color: var(--text); }
.item-price { font-size: .76rem; color: var(--text-soft); margin-top: 3px; }
.qty-control{ display: flex; align-items: center; gap: 8px; }
.qty-control button {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--border-dark);
  background: var(--white);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: var(--fast);
}
.qty-control button:hover { border-color: var(--red); color: var(--red); background: var(--red-bg); }
.qty-control span { font-weight: 800; min-width: 22px; text-align: center; }
.item-total { font-weight: 800; font-size: .95rem; color: var(--red); min-width: 72px; text-align: right; }
.remove-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: none; border: none;
  cursor: pointer; color: var(--text-faint);
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--fast);
}
.remove-btn:hover { background: var(--red-bg); color: var(--red); }

/* ── ÖZET KUTU ──────────────────────────────────────── */
.cart-summary, .order-summary {
  width: 300px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
}
.summary-head {
  background: var(--navy);
  padding: 16px 20px;
  color: var(--white);
}
.summary-title { font-family: var(--font-display); font-size: .97rem; font-weight: 700; }
.summary-body  { padding: 18px 20px; }
.sticky-summary { position: sticky; top: 130px; }
.summary-line {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .84rem; color: var(--text-soft); margin-bottom: 8px;
}
.summary-divider { border: none; border-top: 1px solid var(--border); margin: 12px 0; }
.summary-total   { display: flex; justify-content: space-between; align-items: center; font-weight: 800; font-size: 1rem; }
.total-price     { font-family: var(--font-display); font-size: 1.35rem; color: var(--red); }
.free-ship-note  { font-size: .76rem; color: var(--green); font-weight: 700; margin-top: 8px; display: flex; align-items: center; gap: 4px; }
.progress-bar-wrap { margin-top: 10px; }
.progress-label { font-size: .76rem; color: var(--text-soft); margin-bottom: 6px; }
.progress-track { background: var(--light-gray); border-radius: var(--r-full); height: 5px; overflow: hidden; }
.progress-fill  { height: 100%; background: linear-gradient(90deg, var(--red) 0%, var(--gold) 100%); border-radius: var(--r-full); transition: width .6s var(--ease); }

/* ── BUTONLAR ───────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red);
  color: var(--white);
  border: none; border-radius: var(--r-full);
  padding: 13px 28px;
  font-family: var(--font-ui); font-size: .92rem; font-weight: 700;
  cursor: pointer; text-decoration: none;
  transition: var(--mid);
  box-shadow: var(--red-shadow);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 8px 28px rgba(211,47,47,.35); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white);
  color: var(--text);
  border: 1.5px solid var(--border-dark); border-radius: var(--r-full);
  padding: 11px 24px;
  font-family: var(--font-ui); font-size: .92rem; font-weight: 600;
  cursor: pointer; text-decoration: none;
  transition: var(--fast);
}
.btn-secondary:hover { border-color: var(--red); color: var(--red); }
.btn-block { display: flex; width: 100%; justify-content: center; }
.btn-lg    { padding: 15px 32px; font-size: .97rem; }

/* ── CHECKOUT FORM ──────────────────────────────────── */
.checkout-layout { display: flex; gap: 28px; align-items: flex-start; }
.checkout-main   { flex: 1; }
.page-h1 {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 800;
  color: var(--navy);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 10px;
}
.page-h1::before { content: ''; width: 4px; height: 24px; background: var(--red); border-radius: 2px; display: block; }
.form-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  margin-bottom: 14px;
  box-shadow: var(--sh-xs);
}
.section-label {
  font-size: .7rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--red);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.form-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: .8rem; font-weight: 600; color: var(--text-mid); }
.input {
  border: 1.5px solid var(--border-dark);
  border-radius: var(--r);
  padding: 10px 13px;
  font-family: var(--font-ui); font-size: .88rem;
  width: 100%; outline: none;
  transition: var(--fast);
  background: var(--white); color: var(--text);
  appearance: none;
}
.input:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(211,47,47,.08); }
textarea.input { resize: vertical; }

.date-options { display: flex; gap: 10px; flex-wrap: wrap; }
.date-btn {
  padding: 11px 18px; border: 1.5px solid var(--border-dark);
  border-radius: var(--r); cursor: pointer; background: var(--white);
  display: flex; flex-direction: column; transition: var(--fast);
}
.date-btn input[type="radio"] { display: none; }
.date-btn:has(input:checked) { border-color: var(--red); background: var(--red-bg); }
.date-day  { font-weight: 800; font-size: .88rem; color: var(--text); display: block; }
.date-full { font-size: .72rem; color: var(--text-soft); margin-top: 2px; display: block; }

.slot-options { display: flex; gap: 12px; }
.slot-btn {
  flex: 1; padding: 16px; border: 1.5px solid var(--border-dark);
  border-radius: var(--r); background: var(--white); cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  transition: var(--mid);
}
.slot-btn input[type="radio"] { display: none; }
.slot-btn:has(input:checked) { border-color: var(--red); background: var(--red-bg); box-shadow: 0 0 0 3px rgba(211,47,47,.08); }
.slot-icon  { font-size: 1.6rem; }
.slot-label { font-weight: 800; font-size: .88rem; }
.slot-time  { font-size: .76rem; color: var(--text-soft); }

.payment-options { display: flex; flex-direction: column; gap: 10px; }
.payment-btn {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px; border: 1.5px solid var(--border-dark);
  border-radius: var(--r); background: var(--white); cursor: pointer;
  text-align: left; transition: var(--fast);
}
.payment-btn input[type="radio"] { display: none; }
.payment-btn:has(input:checked) { border-color: var(--red); background: var(--red-bg); }
.payment-icon  { font-size: 1.5rem; }
.payment-label { font-weight: 700; font-size: .88rem; color: var(--text); }
.payment-desc  { font-size: .75rem; color: var(--text-soft); margin-top: 2px; }

/* ── FLASH BİLDİRİM ─────────────────────────────────── */
.flash {
  position: fixed; bottom: 20px; right: 20px; z-index: 9999;
  padding: 13px 18px; border-radius: var(--r-lg);
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--sh-lg); font-size: .88rem; font-weight: 600;
  min-width: 260px; max-width: 380px;
  animation: slideUp .3s cubic-bezier(.34,1.56,.64,1);
}
.flash-success { background: var(--green-bg); color: #14532d; border: 1px solid #bbf7d0; border-left: 4px solid var(--green); }
.flash-error   { background: var(--red-bg); color: var(--red-dark); border: 1px solid #fecaca; border-left: 4px solid var(--red); }
.flash-close   { background: none; border: none; cursor: pointer; color: inherit; font-size: 1.1rem; margin-left: auto; opacity: .6; }
.flash-close:hover { opacity: 1; }
@keyframes slideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* ── HATA KUTUSU ────────────────────────────────────── */
.error-box {
  background: var(--red-bg); border: 1px solid #fecaca;
  border-left: 4px solid var(--red);
  border-radius: var(--r); padding: 13px 16px; margin-bottom: 18px;
}
.error-box p { font-size: .86rem; color: var(--red-dark); margin-bottom: 3px; }
.error-box p:last-child { margin-bottom: 0; }

/* ── BOŞ DURUM ──────────────────────────────────────── */
.empty-state { text-align: center; padding: 70px 20px; }
.empty-icon  { font-size: 3.5rem; margin-bottom: 16px; }
.empty-state h2 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 8px; }
.empty-state p  { color: var(--text-soft); margin-bottom: 22px; }

/* ── ARAMA BANNER ───────────────────────────────────── */
.search-result-bar {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); padding: 10px 16px; margin-bottom: 22px;
  font-size: .88rem; color: var(--text-soft);
}
.search-result-bar a { color: var(--red); font-weight: 700; border: 1px solid var(--red); border-radius: var(--r-full); padding: 3px 10px; font-size: .76rem; }

/* ── FOOTER ─────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  margin-top: 80px;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, var(--gold) 50%, var(--red) 100%);
}
.footer-grid {
  max-width: 1260px;
  margin: 0 auto;
  padding: 52px 20px 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
}
.footer-logo-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-logo-icon {
  width: 38px; height: 38px;
  background: var(--red);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.footer-logo-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
}
.footer-logo-name span { color: var(--red-light); }
.footer-tagline { font-size: .74rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px; }
.footer-brand p { font-size: .84rem; margin-bottom: 6px; opacity: .8; }
.footer-brand a { color: var(--white); }
.footer-col h4 {
  font-size: .68rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em;
  color: rgba(255,255,255,.35);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-col a {
  display: block; font-size: .84rem;
  margin-bottom: 8px; color: rgba(255,255,255,.65);
  transition: var(--fast);
}
.footer-col a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-col p { font-size: .84rem; margin-bottom: 7px; color: rgba(255,255,255,.65); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  max-width: 1260px; margin: 0 auto;
  padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: .77rem; color: rgba(255,255,255,.35);
}
.footer-badges { display: flex; gap: 8px; }
.f-badge {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-sm);
  padding: 4px 10px;
  font-size: .68rem;
  font-weight: 700;
  color: rgba(255,255,255,.5);
}

/* ── SCROLL TOP ─────────────────────────────────────── */
.scroll-top {
  position: fixed; bottom: 70px; right: 20px; z-index: 400;
  width: 40px; height: 40px;
  background: var(--red); color: var(--white);
  border: none; border-radius: 50%;
  cursor: pointer; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--red-shadow);
  opacity: 0; transform: translateY(16px);
  transition: var(--mid);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover   { background: var(--red-dark); transform: translateY(-2px); }

/* ── MOBİL ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .hero { padding: 36px 32px; }
}
@media (max-width: 768px) {
  .header-top { padding: 10px 14px; gap: 10px; }
  .logo-words  { display: none; }
  .header-phone-wrap { display: none; }
  .site-nav { top: 57px; }

  .hero { flex-direction: column; padding: 28px 22px; min-height: auto; border-radius: var(--r-lg); }
  .hero h1 { font-size: 1.65rem; }
  .hero-stats { flex-direction: row; width: 100%; }
  .hero-stat  { flex: 1; }
  .features   { grid-template-columns: 1fr 1fr; gap: 8px; }
  .feat-desc  { display: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cart-layout, .checkout-layout { flex-direction: column; }
  .cart-summary, .order-summary  { width: 100%; position: static; }
  .form-grid  { grid-template-columns: 1fr; }
  .slot-options { flex-direction: column; }
  .footer-grid  { grid-template-columns: 1fr; gap: 22px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .announcement-bar { display: none; }
  .delivery-slots-badges { display: none; }
}
@media (max-width: 480px) {
  .main-layout { padding: 16px 12px 50px; }
  .products-grid { gap: 8px; }
  .product-body  { padding: 10px 11px 12px; }
  .price-now     { font-size: .95rem; }
  .add-btn       { font-size: .72rem; padding: 6px 10px; }
  .hero h1       { font-size: 1.4rem; }
  .hero-stats    { display: none; }
}
@media print {
  .site-header, .site-nav, .announcement-bar,
  .delivery-banner, .site-footer, .scroll-top { display: none; }
}

/* ── DEVAMINI GÖSTER ────────────────────────────────── */
.load-more-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 36px 0 12px;
}

.load-more-info {
  font-size: .82rem;
  color: var(--text-soft);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.load-more-progress {
  width: 200px;
  height: 4px;
  background: var(--border);
  border-radius: var(--r-full);
  overflow: hidden;
}

.load-more-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--gold));
  border-radius: var(--r-full);
  transition: width .5s var(--ease);
}

.load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #fff;
  border: 2px solid var(--red);
  border-radius: var(--r-full);
  color: var(--red);
  font-weight: 700;
  font-size: .95rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: var(--mid);
  position: relative;
  overflow: hidden;
}

.load-more-btn:hover {
  background: var(--red);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(211,47,47,.25);
}

.load-more-btn .lm-icon {
  font-size: 1.1rem;
  transition: transform .3s;
}

.load-more-btn:hover .lm-icon {
  transform: translateY(3px);
}

.load-more-btn .lm-count {
  font-size: .78rem;
  font-weight: 600;
  opacity: .7;
  background: rgba(211,47,47,.1);
  padding: 2px 9px;
  border-radius: 50px;
}

.load-more-btn:hover .lm-count {
  background: rgba(255,255,255,.2);
  opacity: 1;
}

.load-more-btn.loading {
  pointer-events: none;
  opacity: .75;
}

.load-more-btn.loading .lm-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid var(--red);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}

.load-more-btn.loading:hover .lm-icon {
  border-color: #fff;
  border-top-color: transparent;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ── ÜRÜN SAYAÇ BADGE ───────────────────────────────── */
.product-count-badge {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-soft);
  background: var(--light-gray);
  padding: 3px 10px;
  border-radius: 50px;
  margin-left: 6px;
}

/* ── SKELETON LOADER ────────────────────────────────── */
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position:  400px 0; }
}

.skeleton-card {
  pointer-events: none;
}

.skeleton-img {
  aspect-ratio: 1;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 800px 100%;
  animation: shimmer 1.4s infinite linear;
}

.skeleton-line {
  height: 12px;
  border-radius: 6px;
  margin-bottom: 8px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 800px 100%;
  animation: shimmer 1.4s infinite linear;
}

.skeleton-line.short  { width: 45%; }
.skeleton-line.medium { width: 65%; }

/* ── HERO STATS SIDE (slider içi) ──────────────────── */
.hero-stats-side { display: flex; }
@media(max-width:720px){ .hero-stats-side { display: none !important; } }

/* ── KATEGORİ KART DÜZ RENKLİ hover ───────────────── */
.cat-card-plain { transition: var(--mid); }
.cat-card-plain:hover { transform: translateY(-4px); box-shadow: var(--sh); }
