/* ============================================================
   Bizim Kasap Kuzuluk — Modern Premium Theme
   Klasik Türk kasap karakteri + 2026 modern dokunuşlar
   ============================================================ */

:root {
  /* Brand */
  --bk-primary:        #C8102E;     /* signature red */
  --bk-primary-deep:   #9F0C24;
  --bk-primary-darker: #6F0817;
  --bk-primary-soft:   #FCE8EB;

  /* Warm neutrals */
  --bk-ink:            #1A0F10;     /* warm near-black */
  --bk-charcoal:       #2A1B1C;
  --bk-cream:          #FBF7F2;     /* warm off-white */
  --bk-cream-2:        #F4ECDF;
  --bk-paper:          #FFFFFF;
  --bk-line:           #ECE4D6;
  --bk-muted:          #837570;

  /* Accent */
  --bk-gold:           #C9A227;
  --bk-gold-soft:      #E8D17A;

  /* Clay (for "Add to Cart" stepper / button) */
  --bk-clay:           #A07859;
  --bk-clay-dark:      #8A5F3F;
  --bk-clay-soft:      #EFE3D2;
  --bk-clay-line:      #DCC8AE;
  --bk-clay-text:      #5C3D24;

  /* States */
  --bk-success:        #1F7A4C;
  --bk-whatsapp:       #25D366;
  --bk-whatsapp-dark:  #1AA851;

  /* System */
  --bk-r-sm: 10px;
  --bk-r:    16px;
  --bk-r-lg: 22px;
  --bk-r-xl: 32px;

  --bk-shadow-xs: 0 1px 2px rgba(20,10,10,.06);
  --bk-shadow-sm: 0 4px 14px rgba(20,10,10,.06);
  --bk-shadow:    0 12px 36px rgba(20,10,10,.10);
  --bk-shadow-lg: 0 24px 60px rgba(20,10,10,.16);
  --bk-glow:      0 12px 30px rgba(200,16,46,.32);

  --bk-trans: cubic-bezier(.4, 0, .2, 1);
}

* { box-sizing: border-box; }
*::selection { background: var(--bk-primary); color: #fff; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--bk-ink);
  background: var(--bk-cream);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--bk-primary); text-decoration: none; transition: color .2s var(--bk-trans); }
a:hover { color: var(--bk-primary-deep); }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 700; letter-spacing: -0.018em; line-height: 1.15;
  margin: 0 0 .55rem; color: var(--bk-ink);
}
h1 { font-size: clamp(2.3rem, 4vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 2.8vw, 2.6rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.12rem; font-family: 'Inter', sans-serif; font-weight: 700; letter-spacing: -0.01em; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--bk-primary);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: ''; width: 28px; height: 2px;
  background: linear-gradient(90deg, var(--bk-primary), transparent);
  border-radius: 2px;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { background: linear-gradient(90deg, transparent, var(--bk-primary), transparent); width: 60px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 24px; border-radius: 999px; border: 1px solid transparent;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: .94rem;
  cursor: pointer; text-decoration: none;
  transition: transform .25s var(--bk-trans), box-shadow .25s var(--bk-trans), background .2s var(--bk-trans), color .2s var(--bk-trans);
  position: relative; overflow: hidden; white-space: nowrap;
}
.btn-lg { padding: 16px 30px; font-size: 1rem; }
.btn-sm { padding: 9px 16px; font-size: .82rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--bk-primary) 0%, var(--bk-primary-deep) 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(200,16,46,.28);
}
.btn-primary:hover {
  color: #fff; transform: translateY(-2px);
  box-shadow: var(--bk-glow);
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at top left, rgba(255,255,255,.25), transparent 70%);
  opacity: 0; transition: opacity .3s;
}
.btn-primary:hover::after { opacity: 1; }

.btn-outline {
  background: transparent; color: var(--bk-primary);
  border: 1.5px solid var(--bk-primary);
}
.btn-outline:hover {
  background: var(--bk-primary); color: #fff;
}

.btn-ghost {
  background: rgba(255,255,255,.08); color: #fff;
  border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,.14); color: #fff; }

.btn-dark { background: var(--bk-ink); color: #fff; }
.btn-dark:hover { background: #000; color: #fff; transform: translateY(-2px); }

.btn-whatsapp {
  background: linear-gradient(135deg, var(--bk-whatsapp) 0%, var(--bk-whatsapp-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37,211,102,.36);
}
.btn-whatsapp:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.5); }

/* ---- Quantity Stepper (qty − value + unit) ---- */
.qty-stepper {
  display: inline-flex; align-items: center;
  background: var(--bk-primary-soft);
  border: 1px solid #F5C9D0;
  border-radius: 999px;
  padding: 4px;
  height: 48px;
  font-family: 'Inter', sans-serif;
  user-select: none;
}
.qty-stepper .qty-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 0; background: transparent;
  color: var(--bk-primary-deep); cursor: pointer;
  font-size: 1.2rem; font-weight: 600; line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .15s var(--bk-trans), color .15s var(--bk-trans);
}
.qty-stepper .qty-btn:hover { background: rgba(255,255,255,.7); color: var(--bk-primary); }
.qty-stepper .qty-btn:active { transform: scale(.92); }
.qty-stepper input[type=number] {
  width: 44px; border: 0; background: transparent;
  text-align: center; font-size: .98rem; font-weight: 700;
  color: var(--bk-primary-deep); padding: 0;
  -moz-appearance: textfield; appearance: textfield;
}
.qty-stepper input[type=number]::-webkit-outer-spin-button,
.qty-stepper input[type=number]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty-stepper input[type=number]:focus { outline: none; }
.qty-stepper .qty-unit {
  font-size: .82rem; color: var(--bk-primary-deep); opacity: .7;
  padding: 0 14px 0 6px; font-weight: 500;
}

/* Card add-to-cart row (stepper + button side by side) */
.add-row {
  display: flex; align-items: center; gap: 10px; flex-wrap: nowrap;
}
.add-row .qty-stepper { flex: 0 0 auto; }
.add-row .btn { flex: 1 1 auto; height: 48px; min-width: 0; padding: 0 14px;
                white-space: nowrap; overflow: hidden;
                font-size: .92rem; border-radius: 14px; }
.add-row .btn i { flex-shrink: 0; }
.qty-stepper.compact {
  height: 44px; padding: 3px;
  border-radius: 14px;
}
.qty-stepper.compact .qty-btn { width: 32px; height: 32px; font-size: 1.1rem; }
.qty-stepper.compact input[type=number] { width: 30px; font-size: .92rem; }
.qty-stepper.compact .qty-unit { padding: 0 10px 0 4px; font-size: .76rem; }

/* ============================================================
   TOPBAR + HEADER
   ============================================================ */
.topbar {
  background: var(--bk-ink); color: rgba(255,255,255,.78);
  font-size: .82rem; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.05);
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.topbar a { color: rgba(255,255,255,.85); }
.topbar a:hover { color: var(--bk-gold-soft); }
.topbar-info { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-info span { display: inline-flex; align-items: center; gap: 7px; }
.topbar-info i { color: var(--bk-gold-soft); font-size: 12px; }
.socials a { margin-left: 12px; font-size: 14px; opacity: .9; transition: opacity .2s, transform .2s; display: inline-block; }
.socials a:hover { opacity: 1; transform: translateY(-1px); }

.site-header {
  background: rgba(255,255,255,.92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--bk-line);
  position: sticky; top: 0; z-index: 100;
  transition: padding .2s, box-shadow .2s;
}
.site-header.scrolled { box-shadow: 0 8px 26px rgba(20,10,10,.06); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; gap: 20px; }

.brand { display: flex; align-items: center; gap: 14px; }
.brand-logo {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--bk-primary), var(--bk-primary-deep));
  color: #fff; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 800; font-family: 'Playfair Display', serif;
  box-shadow: 0 6px 16px rgba(200,16,46,.25);
  position: relative; overflow: hidden;
}
.brand-logo::after {
  content: ''; position: absolute; inset: 0; opacity: .25;
  background: radial-gradient(circle at 30% 30%, #fff, transparent 65%);
}
.brand-name { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name strong { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: var(--bk-ink); }
.brand-name small {
  color: var(--bk-muted); font-size: .72rem;
  letter-spacing: .22em; text-transform: uppercase; font-weight: 500;
}

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  display: inline-block; padding: 10px 16px; color: var(--bk-charcoal);
  font-weight: 500; font-size: .94rem; border-radius: 999px;
  position: relative; transition: color .2s, background .2s;
}
.main-nav a:hover { color: var(--bk-primary); }
.main-nav a.active { color: var(--bk-primary); background: var(--bk-primary-soft); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.cart-button {
  position: relative;
  padding: 10px 16px 10px 14px; border-radius: 999px;
  background: var(--bk-ink); color: #fff;
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; font-size: .92rem;
  transition: background .2s, transform .2s;
}
.cart-button:hover { background: var(--bk-primary); color: #fff; transform: translateY(-1px); }
.cart-button i { font-size: 16px; }
.cart-count {
  background: var(--bk-primary); color: #fff;
  border-radius: 999px; padding: 1px 9px; font-size: .72rem; font-weight: 700;
  min-width: 22px; text-align: center;
}
.cart-button:hover .cart-count { background: #fff; color: var(--bk-primary); }

.menu-toggle { display: none; background: var(--bk-cream-2); border: none; padding: 10px 12px; border-radius: 10px; cursor: pointer; color: var(--bk-ink); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(200,16,46,.18), transparent 55%),
    radial-gradient(circle at 10% 110%, rgba(201,162,39,.12), transparent 60%),
    linear-gradient(135deg, var(--bk-charcoal) 0%, var(--bk-ink) 60%, #0a0405 100%);
  color: #fff;
  padding: 90px 0 120px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: .5;
  pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 60px; align-items: center;
}
.hero-content { max-width: 620px; }
.hero .eyebrow { color: var(--bk-gold-soft); }
.hero .eyebrow::before { background: linear-gradient(90deg, var(--bk-gold-soft), transparent); }
.hero h1 { color: #fff; font-size: clamp(2.4rem, 4.6vw, 4rem); margin-bottom: 22px; }
.hero h1 .accent {
  background: linear-gradient(135deg, var(--bk-gold-soft), var(--bk-gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.12rem; max-width: 540px;
  color: rgba(255,255,255,.85); margin: 0 0 32px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust {
  display: flex; gap: 24px; margin-top: 38px; flex-wrap: wrap;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1);
}
.hero-trust .item { display: flex; gap: 12px; align-items: center; }
.hero-trust .num {
  font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 700;
  color: var(--bk-gold-soft); line-height: 1;
}
.hero-trust .lbl { font-size: .8rem; color: rgba(255,255,255,.7); line-height: 1.3; }

.hero-visual {
  position: relative; min-height: 460px;
}
.hero-photo-card {
  position: absolute; inset: auto; width: 78%; aspect-ratio: 4/5;
  top: 0; right: 0;
  border-radius: var(--bk-r-xl); overflow: hidden;
  box-shadow: var(--bk-shadow-lg);
  background:
    linear-gradient(135deg, rgba(200,16,46,.15), rgba(0,0,0,.18)),
    var(--bk-charcoal);
  background-size: cover; background-position: center;
  transform: rotate(2deg);
}
.hero-photo-card.alt {
  width: 48%; aspect-ratio: 1/1;
  top: 60%; right: 65%;
  background:
    linear-gradient(135deg, rgba(20,15,15,.15), rgba(0,0,0,.2)),
    var(--bk-primary-darker);
  background-size: cover; background-position: center;
  transform: rotate(-4deg);
  box-shadow: var(--bk-shadow);
}
.hero-badge {
  position: absolute; bottom: 24px; right: 12%;
  background: rgba(255,255,255,.96); color: var(--bk-ink);
  padding: 14px 18px; border-radius: 14px;
  display: flex; align-items: center; gap: 10px;
  font-size: .85rem; font-weight: 600;
  box-shadow: var(--bk-shadow); backdrop-filter: blur(8px);
  z-index: 2;
}
.hero-badge i {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--bk-primary-soft); color: var(--bk-primary);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.hero-badge small { display: block; color: var(--bk-muted); font-weight: 500; font-size: .72rem; }

.hero-wave {
  position: absolute; bottom: -1px; left: 0; right: 0;
  width: 100%; line-height: 0; pointer-events: none; z-index: 1;
}
.hero-wave svg { display: block; width: 100%; height: 64px; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 90px 0; position: relative; }
.section.tight { padding: 60px 0; }
.section-bg { background: var(--bk-cream); }
.section-paper { background: #fff; }

.section-head { text-align: center; margin-bottom: 56px; }
.section-head h2 { margin: 0 0 12px; }
.section-head p {
  color: var(--bk-muted); max-width: 600px; margin: 0 auto;
  font-size: 1.02rem;
}

/* ============================================================
   FEATURES
   ============================================================ */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature {
  background: #fff; padding: 36px 28px; border-radius: var(--bk-r-lg);
  border: 1px solid var(--bk-line);
  transition: transform .35s var(--bk-trans), border-color .25s, box-shadow .35s;
  position: relative; overflow: hidden;
}
.feature::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 120px; height: 120px; border-radius: 50%;
  background: var(--bk-primary-soft); opacity: 0;
  transition: opacity .4s, transform .4s;
}
.feature:hover {
  transform: translateY(-6px);
  border-color: var(--bk-primary-soft);
  box-shadow: var(--bk-shadow);
}
.feature:hover::before { opacity: 1; transform: scale(1.4); }
.feature > * { position: relative; z-index: 1; }
.feature-icon {
  width: 60px; height: 60px; border-radius: 16px;
  background: var(--bk-primary-soft); color: var(--bk-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 22px;
  transition: background .25s, color .25s, transform .35s;
}
.feature:hover .feature-icon {
  background: var(--bk-primary); color: #fff;
  transform: rotate(-6deg) scale(1.05);
}
.feature h3 { margin: 0 0 8px; font-size: 1.2rem; }
.feature p { color: var(--bk-muted); margin: 0; font-size: .95rem; line-height: 1.6; }

/* ============================================================
   CATEGORY CARDS (Bento style)
   ============================================================ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.cat-grid.bento {
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.cat-card {
  position: relative; overflow: hidden;
  border-radius: var(--bk-r-lg);
  min-height: 240px;
  display: flex; align-items: flex-end; padding: 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--bk-primary), var(--bk-primary-deep));
  box-shadow: var(--bk-shadow-sm);
  transition: transform .35s var(--bk-trans), box-shadow .35s;
}
.cat-grid.bento .cat-card { grid-column: span 2; }
.cat-grid.bento .cat-card:nth-child(1) { grid-column: span 3; min-height: 300px; }
.cat-grid.bento .cat-card:nth-child(2) { grid-column: span 3; min-height: 300px; }
.cat-grid.bento .cat-card:nth-child(n+3) { grid-column: span 2; }

.cat-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 0%, rgba(255,255,255,.08), transparent 50%);
  z-index: 1;
}
.cat-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
  transition: transform .8s var(--bk-trans);
}
.cat-card:hover img { transform: scale(1.08); }
.cat-card-content {
  position: relative; z-index: 2;
  width: calc(100% + 48px);
  margin: 0 -24px -24px;
  padding: 70px 24px 22px;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 12px;
  background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.55) 70%, transparent 100%);
}
.cat-card-content > div h3 { color: #fff; margin: 0 0 4px; font-size: 1.4rem; }
.cat-card-content > div span { font-size: .85rem; opacity: .9; font-weight: 500; }
.cat-arrow {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.18); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 16px;
  transition: background .25s, transform .25s;
  flex-shrink: 0;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--bk-shadow); }
.cat-card:hover .cat-arrow { background: var(--bk-primary); transform: rotate(-45deg); }

.cat-placeholder {
  background:
    radial-gradient(circle at 75% 20%, rgba(255,255,255,.18), transparent 50%),
    linear-gradient(135deg, var(--bk-primary), var(--bk-primary-darker));
}

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.product-grid > * { min-width: 0; }
.product-grid.compact {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.product-grid.compact .product-card .pimg { aspect-ratio: 1/1; }
.product-grid.compact .product-info { padding: 14px 16px 12px; }
.product-grid.compact .product-info h4 { font-size: .98rem; }
.product-grid.compact .pdesc { display: none; }
.product-grid.compact .product-actions { padding: 0 14px 14px; }
.product-grid.compact .add-row { gap: 8px; }
.product-grid.compact .add-row .btn { height: 42px; padding: 0 12px; font-size: .85rem; }
.product-grid.compact .qty-stepper.compact { height: 42px; }
.product-card {
  background: #fff; border-radius: var(--bk-r-lg);
  border: 1px solid var(--bk-line);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .35s var(--bk-trans), box-shadow .35s, border-color .3s;
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200,16,46,.18);
  box-shadow: var(--bk-shadow);
}
.product-card .pimg {
  aspect-ratio: 4/3; background: var(--bk-cream-2);
  position: relative; overflow: hidden;
}
.product-card .pimg img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--bk-trans);
}
.product-card:hover .pimg img { transform: scale(1.07); }
.product-card .pimg-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.18), transparent 50%),
    linear-gradient(135deg, var(--bk-primary) 0%, var(--bk-primary-darker) 100%);
  color: rgba(255,255,255,.4); font-size: 3rem;
}
.product-badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(20,10,10,.85); backdrop-filter: blur(6px);
  color: #fff; font-size: .68rem; font-weight: 700;
  padding: 6px 12px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: .08em;
  display: inline-flex; align-items: center; gap: 6px;
}
.product-badge.gold {
  background: linear-gradient(135deg, var(--bk-gold), #B6843C); color: #fff;
}
.product-fav {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.92); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  color: var(--bk-muted); cursor: pointer; transition: color .2s, background .2s;
  opacity: 0; transform: translateY(-4px);
  transition: opacity .3s, transform .3s, color .2s;
}
.product-card:hover .product-fav { opacity: 1; transform: translateY(0); }
.product-fav:hover { color: var(--bk-primary); background: #fff; }

.product-info { padding: 18px 20px 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-info .pcat {
  font-size: .72rem; color: var(--bk-muted); font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
}
.product-info h4 { margin: 2px 0; font-size: 1.05rem; color: var(--bk-ink); }
.product-info h4 a { color: inherit; }
.product-info h4 a:hover { color: var(--bk-primary); }
.product-info .pdesc { font-size: .87rem; color: var(--bk-muted); margin: 4px 0 0; flex: 1; line-height: 1.55; }
.product-price-row {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-top: 10px; padding-top: 12px; border-top: 1px dashed var(--bk-line);
}
.pprice {
  font-family: 'Playfair Display', serif; font-weight: 700;
  color: var(--bk-primary); font-size: 1.32rem; line-height: 1;
}
.pprice small { font-size: .72rem; color: var(--bk-muted); font-weight: 500; font-family: 'Inter', sans-serif; margin-left: 2px; }

.product-actions { padding: 0 18px 18px; }

/* ============================================================
   PAGE HERO (sub-pages)
   ============================================================ */
.page-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 80% 30%, rgba(200,16,46,.15), transparent 60%),
    linear-gradient(135deg, var(--bk-charcoal) 0%, var(--bk-ink) 70%, var(--bk-primary-darker) 130%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.page-hero > .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin: 0 0 10px; }
.breadcrumb { color: rgba(255,255,255,.7); font-size: .9rem; }
.breadcrumb a { color: #fff; opacity: .85; }
.breadcrumb a:hover { color: var(--bk-gold-soft); }

/* ============================================================
   CONTENT CARD
   ============================================================ */
.content-card {
  background: #fff; border-radius: var(--bk-r-lg);
  border: 1px solid var(--bk-line);
  padding: 44px 48px;
  box-shadow: var(--bk-shadow-sm);
}
.content-card .html-content { line-height: 1.78; color: var(--bk-charcoal); font-size: 1.02rem; }
.content-card .html-content h2, .content-card .html-content h3 { color: var(--bk-ink); margin-top: 1.6em; }
.content-card .html-content p { margin: 0 0 1.05em; }
.content-card .html-content ul, .content-card .html-content ol { padding-left: 26px; }
.content-card .html-content li { margin: 6px 0; }
.content-card .html-content img { border-radius: 12px; margin: 22px 0; box-shadow: var(--bk-shadow-sm); }
.content-card .html-content a { color: var(--bk-primary); border-bottom: 1px dashed var(--bk-primary-soft); }
.content-card .html-content a:hover { border-bottom-style: solid; }
.content-card .html-content blockquote {
  border-left: 4px solid var(--bk-primary); padding: 14px 22px;
  background: var(--bk-cream); color: var(--bk-charcoal);
  border-radius: 6px; margin: 22px 0;
  font-style: italic;
}
.content-card .html-content strong { color: var(--bk-ink); }

/* ============================================================
   PRODUCT DETAIL
   ============================================================ */
.product-detail {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; align-items: start;
}
.product-detail .gallery {
  position: relative;
  background: #fff; border-radius: var(--bk-r-xl);
  border: 1px solid var(--bk-line); padding: 14px;
  box-shadow: var(--bk-shadow-sm);
}
.product-detail .gallery img {
  width: 100%; border-radius: var(--bk-r);
  aspect-ratio: 4/3; object-fit: cover;
}
.product-detail .gallery-placeholder {
  aspect-ratio: 4/3; border-radius: var(--bk-r);
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.18), transparent 55%),
    linear-gradient(135deg, var(--bk-primary), var(--bk-primary-darker));
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.45); font-size: 4rem;
}
.product-meta .pcat {
  font-size: .82rem; color: var(--bk-primary); font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em;
}
.product-meta h1 { margin: 10px 0 18px; font-size: clamp(1.7rem, 3vw, 2.4rem); }
.product-summary { color: var(--bk-muted); font-size: 1.05rem; line-height: 1.7; margin-bottom: 24px; }
.price-box {
  background: linear-gradient(135deg, var(--bk-cream) 0%, var(--bk-cream-2) 100%);
  border: 1px solid var(--bk-line);
  border-radius: var(--bk-r); padding: 22px 26px;
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
  margin-bottom: 22px;
}
.price-box .price {
  font-family: 'Playfair Display', serif; font-weight: 700;
  color: var(--bk-primary); font-size: clamp(2rem, 3.5vw, 2.6rem); line-height: 1;
}
.price-box small { font-size: .92rem; color: var(--bk-muted); font-weight: 500; }
.price-box .old {
  text-decoration: line-through; color: var(--bk-muted); font-size: 1rem; margin-left: 10px;
}
.qty-input { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.qty-input label { font-weight: 600; color: var(--bk-charcoal); }
.qty-input input {
  width: 110px; padding: 11px 14px; border: 1px solid var(--bk-line);
  border-radius: 12px; font-family: 'Inter', sans-serif; font-size: 1rem;
  background: #fff;
}
.qty-input input:focus { outline: none; border-color: var(--bk-primary); }
.trust-card {
  margin-top: 28px; background: #fff; padding: 18px 22px;
  border-radius: var(--bk-r); border: 1px dashed var(--bk-line);
  display: flex; gap: 14px; align-items: center;
}
.trust-card i {
  width: 46px; height: 46px; flex-shrink: 0; border-radius: 12px;
  background: var(--bk-primary-soft); color: var(--bk-primary);
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.trust-card strong { display: block; color: var(--bk-ink); margin-bottom: 2px; font-size: .98rem; }
.trust-card small { color: var(--bk-muted); font-size: .85rem; }

/* ============================================================
   CART PAGE
   ============================================================ */
.cart-layout { display: grid; grid-template-columns: 1.7fr 1fr; gap: 30px; align-items: start; }
.cart-list { background: #fff; border-radius: var(--bk-r-lg); border: 1px solid var(--bk-line); box-shadow: var(--bk-shadow-sm); }
.cart-row {
  display: grid; grid-template-columns: 80px 1fr auto auto auto;
  gap: 20px; align-items: center;
  padding: 22px 24px; border-bottom: 1px solid var(--bk-line);
}
.cart-row:last-of-type { border-bottom: none; }
.cart-row .ph {
  width: 72px; height: 72px; background: var(--bk-cream-2);
  border-radius: 14px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.cart-row .ph img { width: 100%; height: 100%; object-fit: cover; }
.cart-row .name a { font-weight: 600; color: var(--bk-ink); }
.cart-row .name a:hover { color: var(--bk-primary); }
.cart-row .name small { color: var(--bk-muted); }
.cart-row .price { font-weight: 700; color: var(--bk-primary); font-family: 'Playfair Display', serif; font-size: 1.1rem; }
.cart-row input[type=number] {
  width: 80px; padding: 8px 10px; border: 1px solid var(--bk-line);
  border-radius: 10px; text-align: center;
}
.cart-summary {
  background: #fff; border-radius: var(--bk-r-lg);
  border: 1px solid var(--bk-line);
  padding: 28px; box-shadow: var(--bk-shadow-sm); position: sticky; top: 90px;
}
.cart-summary h3 { margin: 0 0 18px; }
.cart-row-total { display: flex; justify-content: space-between; padding: 8px 0; color: var(--bk-charcoal); }
.cart-row-total.grand {
  border-top: 1px dashed var(--bk-line); margin-top: 14px; padding-top: 18px;
  font-weight: 700; font-size: 1.2rem; color: var(--bk-ink);
}
.cart-row-total.grand span:last-child {
  color: var(--bk-primary); font-family: 'Playfair Display', serif;
}
.empty-state {
  padding: 70px 20px; text-align: center; color: var(--bk-muted);
}
.empty-state i { color: var(--bk-line); margin-bottom: 12px; }

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  background: #fff; border-radius: var(--bk-r-lg);
  border: 1px solid var(--bk-line);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .35s var(--bk-trans), box-shadow .3s, border-color .25s;
}
.blog-card:hover {
  transform: translateY(-4px); box-shadow: var(--bk-shadow);
  border-color: rgba(200,16,46,.18);
}
.blog-card .bimg { aspect-ratio: 16/9; background: var(--bk-cream-2); overflow: hidden; }
.blog-card .bimg img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--bk-trans); }
.blog-card:hover .bimg img { transform: scale(1.06); }
.blog-card .bimg-placeholder {
  width: 100%; height: 100%;
  background:
    radial-gradient(circle at 25% 25%, rgba(255,255,255,.15), transparent 55%),
    linear-gradient(135deg, var(--bk-primary), var(--bk-primary-darker));
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); font-family: 'Playfair Display', serif; font-size: 2rem;
}
.blog-card .binfo { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card .binfo h4 { font-family: 'Playfair Display', serif; font-size: 1.2rem; margin-bottom: 10px; }
.blog-card .binfo h4 a { color: var(--bk-ink); }
.blog-card .binfo h4 a:hover { color: var(--bk-primary); }
.blog-card .bmeta { color: var(--bk-muted); font-size: .8rem; margin-bottom: 10px; font-weight: 500; }
.blog-card .bsum { color: var(--bk-muted); font-size: .92rem; flex: 1; line-height: 1.6; }
.blog-card .blink {
  margin-top: 14px; font-weight: 600; color: var(--bk-primary);
  font-size: .92rem; display: inline-flex; align-items: center; gap: 6px;
  transition: gap .2s;
}
.blog-card:hover .blink { gap: 10px; }

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom: 16px; }
.form-label { display: block; margin-bottom: 7px; font-weight: 600; color: var(--bk-ink); font-size: .92rem; }
.form-control {
  width: 100%; padding: 13px 16px; border: 1px solid var(--bk-line);
  border-radius: 12px; font-size: 1rem; font-family: inherit;
  background: #fff; transition: border-color .2s, box-shadow .2s;
  color: var(--bk-ink);
}
.form-control:focus {
  outline: none; border-color: var(--bk-primary);
  box-shadow: 0 0 0 4px rgba(200,16,46,.1);
}
textarea.form-control { min-height: 130px; resize: vertical; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.alert {
  padding: 14px 18px; border-radius: 12px; margin-bottom: 16px;
  font-size: .94rem; font-weight: 500;
  display: flex; align-items: center; gap: 10px;
  border: 1px solid;
}
.alert-success { background: #ECFDF5; color: #065F46; border-color: #A7F3D0; }
.alert-error, .alert-danger { background: #FEF2F2; color: #991B1B; border-color: #FCA5A5; }
.alert-info { background: #EFF6FF; color: #1E40AF; border-color: #BFDBFE; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 36px; }
.contact-info {
  background:
    radial-gradient(circle at 100% 0%, rgba(200,16,46,.25), transparent 50%),
    linear-gradient(155deg, var(--bk-charcoal), var(--bk-ink));
  color: #fff; padding: 38px 36px; border-radius: var(--bk-r-lg);
  position: relative; overflow: hidden;
  box-shadow: var(--bk-shadow);
}
.contact-info::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.contact-info > * { position: relative; z-index: 1; }
.contact-info h3 { color: #fff; margin-bottom: 24px; }
.contact-info .info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; }
.contact-info .info-item:last-child { margin-bottom: 0; }
.contact-info .info-item i {
  width: 46px; height: 46px;
  background: rgba(200,16,46,.18); color: var(--bk-gold-soft);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  border: 1px solid rgba(200,16,46,.32);
  font-size: 18px;
}
.contact-info .info-item small { display: block; color: rgba(255,255,255,.6); font-size: .78rem; margin-bottom: 3px; text-transform: uppercase; letter-spacing: .1em; }
.contact-info .info-item a, .contact-info .info-item span { color: #fff; font-weight: 500; }
.contact-info .info-item a:hover { color: var(--bk-gold-soft); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bk-ink); color: rgba(255,255,255,.7);
  padding: 70px 0 24px; position: relative; overflow: hidden;
}
.site-footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--bk-primary), transparent);
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 44px; margin-bottom: 44px;
}
.site-footer h4 {
  color: #fff; font-family: 'Inter', sans-serif; font-size: 1rem;
  margin: 0 0 22px; font-weight: 700;
  position: relative; padding-bottom: 12px;
}
.site-footer h4::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 32px; height: 2px; background: var(--bk-primary);
  border-radius: 2px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin: 9px 0; }
.site-footer ul a {
  color: rgba(255,255,255,.7); font-size: .92rem;
  display: inline-flex; align-items: center; gap: 6px; transition: color .2s, padding .2s;
}
.site-footer ul a::before {
  content: '›'; opacity: 0; margin-right: -10px;
  color: var(--bk-primary); transition: opacity .2s, margin .2s;
}
.site-footer ul a:hover { color: #fff; }
.site-footer ul a:hover::before { opacity: 1; margin-right: 0; }
.footer-about p { line-height: 1.7; font-size: .94rem; margin-top: 14px; max-width: 380px; }
.footer-about .brand { margin-bottom: 4px; }
.footer-about .brand strong, .footer-about .brand small { color: #fff; }
.footer-about .brand small { color: rgba(255,255,255,.6); }
.footer-socials { margin-top: 22px; display: flex; gap: 10px; }
.footer-socials a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.06); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 1px solid rgba(255,255,255,.08);
  transition: background .25s, transform .25s, border-color .2s;
}
.footer-socials a:hover {
  background: var(--bk-primary); border-color: var(--bk-primary);
  color: #fff; transform: translateY(-2px);
}
.footer-contact-list li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact-list i { color: var(--bk-primary); margin-top: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07); padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: .85rem; color: rgba(255,255,255,.5);
}
.footer-bottom a { color: rgba(255,255,255,.7); }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.whatsapp-float {
  position: fixed; right: 26px; bottom: 26px; z-index: 999;
  background: var(--bk-whatsapp); color: #fff;
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(37,211,102,.4);
  transition: transform .25s var(--bk-trans), box-shadow .25s;
}
.whatsapp-float::before {
  content: ''; position: absolute; inset: -6px;
  border-radius: 50%; border: 2px solid var(--bk-whatsapp);
  opacity: .45; animation: bkpulse 2s var(--bk-trans) infinite;
}
@keyframes bkpulse {
  0% { transform: scale(1); opacity: .45; }
  100% { transform: scale(1.45); opacity: 0; }
}
.whatsapp-float:hover { transform: scale(1.08); color: #fff; box-shadow: 0 16px 40px rgba(37,211,102,.5); }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 36px; }
.pagination a, .pagination span {
  padding: 10px 16px; border-radius: 999px;
  background: #fff; color: var(--bk-charcoal); font-weight: 500;
  border: 1px solid var(--bk-line);
}
.pagination a:hover { background: var(--bk-primary); color: #fff; border-color: var(--bk-primary); }
.pagination .active { background: var(--bk-primary); color: #fff; border-color: var(--bk-primary); }

/* ============================================================
   ANIMATIONS — scroll reveal
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--bk-trans), transform .6s var(--bk-trans); }
  .reveal.in { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-visual { min-height: 380px; max-width: 520px; margin: 0 auto; width: 100%; }
  .hero-photo-card { width: 75%; }
  .hero-photo-card.alt { width: 52%; }
  .cat-grid.bento { grid-template-columns: repeat(2, 1fr); }
  .cat-grid.bento .cat-card { grid-column: span 1 !important; min-height: 220px !important; }
}
@media (max-width: 980px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .product-detail, .contact-grid, .cart-layout, .footer-grid { grid-template-columns: 1fr; }
  .footer-grid { gap: 38px; }
  .content-card { padding: 32px 28px; }
  .menu-toggle { display: inline-flex; }
  .main-nav {
    position: absolute; top: 100%; left: 16px; right: 16px;
    background: #fff; flex-direction: column; padding: 14px;
    border-radius: var(--bk-r); border: 1px solid var(--bk-line);
    box-shadow: var(--bk-shadow); display: none;
    gap: 4px;
  }
  .main-nav.open { display: flex; }
  .main-nav a { width: 100%; }
}
@media (max-width: 760px) {
  /* ---- Header / brand sıkıştırılmış ---- */
  .site-header .container { padding: 12px 16px; gap: 8px; }
  .brand { gap: 10px; min-width: 0; flex: 1; }
  .brand-logo { width: 42px; height: 42px; font-size: 18px; border-radius: 11px; flex-shrink: 0; }
  .brand-name { min-width: 0; overflow: hidden; }
  .brand-name strong { font-size: 1.05rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .brand-name small { display: none; }
  .main-nav { gap: 0; }
  .header-actions { gap: 6px; flex-shrink: 0; }
  .cart-button { padding: 9px 12px 9px 12px; font-size: 0; gap: 6px; }
  .cart-button i { font-size: 17px; }
  .cart-button .cart-count { font-size: .7rem; padding: 1px 7px; min-width: 20px; }
  .menu-toggle { padding: 9px 11px; }
  .menu-toggle i { font-size: 18px; }

  /* ---- Topbar ---- */
  .topbar { font-size: .78rem; padding: 7px 0; }
  .topbar .container { justify-content: center; text-align: center; gap: 6px; }
  .topbar-info { gap: 14px; justify-content: center; }
  .socials { display: none; }
}

@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }
  .hero { padding: 56px 0 70px; }
  .hero h1 { font-size: clamp(1.85rem, 7vw, 2.4rem); }
  .hero p { font-size: 1rem; }
  .hero-cta { gap: 8px; }
  .hero-cta .btn { font-size: .9rem; padding: 12px 18px; }
  .features, .blog-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; gap: 14px; }
  .product-grid { gap: 16px; }
  .hero-trust { gap: 16px; }
  .hero-trust .num { font-size: 1.4rem; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .content-card { padding: 24px 18px; }
  .price-box { padding: 16px; }
  .price-box .price { font-size: 1.8rem; }
  .section-head { margin-bottom: 36px; }
  h2 { font-size: 1.6rem; }
  .page-hero { padding: 50px 0; }
  .page-hero h1 { font-size: 1.7rem; }

  /* ---- Product card mobil ---- */
  .product-info { padding: 14px 14px 10px; }
  .product-info h4 { font-size: .98rem; }
  .product-actions { padding: 0 14px 14px; }
  .add-row { gap: 8px; }
  .add-row .btn { height: 44px; font-size: .85rem; padding: 0 10px; }
  .add-row .btn i { font-size: 14px; }

  /* ---- Cart row stack ---- */
  .cart-row { grid-template-columns: 64px 1fr; gap: 12px; padding: 14px 16px; }
  .cart-row .ph { width: 64px; height: 64px; }
  .cart-row > div:nth-child(3), .cart-row > div:nth-child(4), .cart-row > div:nth-child(5) {
    grid-column: 2; padding-top: 2px;
  }
  .cart-row input[type=number] { width: 70px; }
  .cart-summary { padding: 22px 20px; }

  /* ---- Footer ---- */
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-info { padding: 26px 20px; }
  .contact-info .info-item { gap: 12px; margin-bottom: 18px; }
  .site-footer { padding: 50px 0 20px; }

  /* ---- Hero visual mobil ---- */
  .hero-visual { min-height: 320px; }
  .hero-photo-card { width: 80%; }
  .hero-photo-card.alt { width: 52%; }
  .hero-badge { padding: 10px 12px; font-size: .78rem; bottom: 10px; right: 4%; }
  .hero-badge i { width: 32px; height: 32px; font-size: 15px; }

  /* ---- Product detail ---- */
  .product-meta h1 { font-size: 1.5rem; }
  .product-summary { font-size: .98rem; }
  .qty-stepper { height: 44px; }
  .qty-stepper .qty-btn { width: 32px; height: 32px; font-size: 1.1rem; }
  .qty-stepper input { width: 36px; }
  .trust-card { padding: 14px 16px; }
  .trust-card i { width: 40px; height: 40px; font-size: 17px; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 1.7rem; }
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; }
  .hero-trust { width: 100%; justify-content: space-between; }
  .add-row { flex-direction: column; align-items: stretch; gap: 8px; }
  .add-row .qty-stepper { justify-content: space-between; }
}
