/* =============================================
   Eler Zeytinleri – Ana CSS
   Renk Paleti: Kırmızı #B31217 | Altın #C9A84C
============================================= */
:root {
  --crimson:       #B31217;
  --crimson-dark:  #8a0d11;
  --crimson-light: #d41920;
  --gold:          #C9A84C;
  --gold-light:    #e8c96e;
  --gold-dark:     #9e7e2e;
  --white:         #FFFFFF;
  --cream:         #fdf9f4;
  --dark:          #1a0a0a;
  --dark2:         #2d1212;
  --text:          #2c1a1a;
  --text-muted:    #7a5c5c;
  --border:        #e8d8d8;
  --shadow:        rgba(179,18,23,0.12);
  --radius:        10px;
  --radius-lg:     18px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ── FLASH MESSAGE ── */
/* ── TOAST / BALON BİLDİRİM ── */
.toast-wrap {
  position: fixed; top: 88px; right: 24px; z-index: 9999;
  animation: toastIn .35s cubic-bezier(.21,1.02,.73,1) forwards;
}
.toast-wrap.toast-hide { animation: toastOut .35s ease forwards; }
.toast {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px 20px; border-radius: 14px;
  min-width: 300px; max-width: 420px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.08);
  position: relative; overflow: hidden;
  font-size: 14px; font-weight: 500; line-height: 1.4; border: 1px solid;
}
.toast-basari { background:#fff; color:#14532d; border-color:#86efac; }
.toast-hata   { background:#fff; color:#991b1b; border-color:#fca5a5; }
.toast-icon { font-size:20px; flex-shrink:0; }
.toast-basari .toast-icon { color:#16a34a; }
.toast-hata   .toast-icon { color:#dc2626; }
.toast-msg { flex:1; }
.toast-close {
  background:none; border:none; cursor:pointer; padding:0 2px;
  font-size:14px; color:rgba(0,0,0,0.25); line-height:1;
  transition:color .2s; flex-shrink:0;
}
.toast-close:hover { color:rgba(0,0,0,0.6); }
.toast-bar {
  position:absolute; bottom:0; left:0; height:3px;
  border-radius:0 0 14px 14px; animation:toastBar linear forwards; width:100%;
}
.toast-basari .toast-bar { background:linear-gradient(90deg,#16a34a,#4ade80); }
.toast-hata   .toast-bar { background:linear-gradient(90deg,#dc2626,#f87171); }
@keyframes toastBar { from{width:100%} to{width:0%} }
@keyframes toastIn  { from{opacity:0;transform:translateX(32px) scale(.95)} to{opacity:1;transform:none} }
@keyframes toastOut { from{opacity:1;transform:none} to{opacity:0;transform:translateX(32px) scale(.95)} }

/* ── HEADER ── */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(26,10,10,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: all .3s;
}
.header-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 24px;
  height: 70px; display: flex; align-items: center; gap: 32px;
}
.logo-link { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-brand { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 900; color: var(--crimson); }
.logo-sub { font-size: 9px; color: var(--gold); letter-spacing: 2.5px; text-transform: uppercase; }

.main-nav { display: flex; gap: 4px; align-items: center; flex: 1; }
.main-nav > a, .nav-dropdown > span {
  color: rgba(255,255,255,0.7); font-size: 14px; font-weight: 500;
  padding: 8px 14px; border-radius: 6px; display: inline-block;
  transition: all .2s; cursor: pointer; white-space: nowrap;
}
.main-nav > a:hover, .main-nav > a.active,
.nav-dropdown:hover > span {
  color: var(--gold); background: rgba(201,168,76,0.1);
}
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--dark); border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius); padding: 8px; min-width: 200px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all .2s; z-index: 200;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: none; }
.dropdown-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 6px;
  color: rgba(255,255,255,0.7); font-size: 14px;
  transition: all .15s;
}
.dropdown-menu a:hover { color: var(--gold); background: rgba(201,168,76,0.1); }
.dropdown-menu a i { color: var(--gold); width: 14px; }
.dropdown-group { border-top: 1px solid rgba(255,255,255,0.06); margin-top:4px; padding-top:4px; }
.dropdown-group:first-child { border-top: none; margin-top:0; padding-top:0; }
.dropdown-group > a:first-child { color: #fff; font-size:13px; }

.header-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.icon-btn {
  background: none; border: none; color: rgba(255,255,255,0.7);
  font-size: 17px; width: 38px; height: 38px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s; position: relative; cursor: pointer;
}
.icon-btn:hover { color: var(--gold); background: rgba(201,168,76,0.1); }
.cart-badge {
  position: absolute; top: 2px; right: 2px;
  background: var(--crimson); color: #fff;
  font-size: 9px; font-weight: 700; width: 16px; height: 16px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.btn-outline-header {
  border: 1px solid rgba(201,168,76,0.5); color: var(--gold);
  padding: 8px 18px; border-radius: 6px; font-size: 13px; font-weight: 600;
  transition: all .2s; white-space: nowrap;
}
.btn-outline-header:hover { background: var(--gold); color: var(--dark); }

.search-bar {
  display: none; border-top: 1px solid rgba(201,168,76,0.1);
  padding: 12px 24px; background: rgba(26,10,10,0.99);
  align-items: center; gap: 12px;
}
.search-bar.open { display: flex; }
.search-form { flex: 1; display: flex; gap: 0; max-width: 600px; margin: 0 auto; }
.search-form input {
  flex: 1; background: rgba(255,255,255,0.07); border: 1px solid rgba(201,168,76,0.2);
  border-right: none; color: #fff; padding: 10px 18px;
  border-radius: var(--radius) 0 0 var(--radius); font-size: 14px; outline: none;
  font-family: inherit;
}
.search-form input::placeholder { color: rgba(255,255,255,0.3); }
.search-form input:focus { border-color: rgba(201,168,76,0.5); }
.search-form button {
  background: var(--crimson); color: #fff; border: none;
  padding: 10px 24px; font-size: 14px; font-weight: 600;
  border-radius: 0 var(--radius) var(--radius) 0; display: flex; align-items: center; gap: 8px;
  transition: background .2s;
}
.search-form button:hover { background: var(--crimson-light); }
.search-close {
  background: none; border: none; color: rgba(255,255,255,0.5);
  font-size: 18px; padding: 8px; cursor: pointer; transition: color .2s;
}
.search-close:hover { color: var(--gold); }

.mobile-toggle { display: none; }

#content-wrap { padding-top: 70px; min-height: 80vh; }

/* ── HERO ── */
/* ── HERO v2 ── */
.hero2 {
  min-height: 100vh; background: var(--dark);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding-top: 70px;
}
/* Gürültü dokusu */
.h2-noise {
  position: absolute; inset: 0; pointer-events: none; opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}
/* Işık lekeleri */
.h2-glow { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(80px); }
.h2-glow.g1 { width: 700px; height: 700px; top: -200px; right: -150px; background: radial-gradient(circle, rgba(179,18,23,0.18) 0%, transparent 70%); }
.h2-glow.g2 { width: 500px; height: 500px; bottom: -100px; left: -100px; background: radial-gradient(circle, rgba(201,168,76,0.10) 0%, transparent 70%); }
.h2-glow.g3 { width: 400px; height: 400px; top: 50%; left: 50%; transform: translate(-50%,-50%); background: radial-gradient(circle, rgba(179,18,23,0.07) 0%, transparent 70%); }

/* İç grid */
.h2-inner {
  max-width: 1240px; width: 100%; margin: 0 auto;
  padding: 60px 24px 40px;
  display: grid; grid-template-columns: 1fr 440px;
  gap: 64px; align-items: center; position: relative; z-index: 2;
}

/* SOL */
.h2-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(201,168,76,0.25);
  background: rgba(201,168,76,0.06);
  padding: 7px 16px; border-radius: 100px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(201,168,76,0.8); font-weight: 600; margin-bottom: 28px;
}
.h2-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.2);
  animation: pulse 2s ease infinite;
}
@keyframes pulse { 0%,100%{box-shadow:0 0 0 3px rgba(201,168,76,0.2)} 50%{box-shadow:0 0 0 6px rgba(201,168,76,0.08)} }

.h2-title {
  display: flex; flex-direction: column; gap: 2px;
  margin-bottom: 28px;
}
.h2-line1 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(16px,2vw,22px); font-weight: 300;
  color: rgba(255,255,255,0.4); letter-spacing: 4px; text-transform: uppercase;
}
.h2-line2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(54px,7vw,92px); font-weight: 900; line-height: .95;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.h2-line3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px,5.5vw,72px); font-weight: 700; line-height: 1;
  color: rgba(255,255,255,0.85);
}
.h2-line3 em {
  font-style: italic;
  background: linear-gradient(90deg, var(--gold), #e5c97a);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.h2-divider {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 24px;
}
.h2-divider-line { flex: 1; height: 1px; background: linear-gradient(90deg, rgba(201,168,76,0.3), transparent); }
.h2-divider-icon { font-size: 20px; }

.h2-desc {
  font-size: 16px; line-height: 1.85;
  color: rgba(255,255,255,0.42); font-weight: 300;
  max-width: 500px; margin-bottom: 40px;
}

.h2-btns { display: flex; align-items: center; gap: 16px; margin-bottom: 40px; flex-wrap: wrap; }
.h2-btn-main {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--crimson); color: #fff;
  padding: 15px 32px; border-radius: 10px;
  font-size: 15px; font-weight: 700;
  box-shadow: 0 8px 32px rgba(179,18,23,0.4);
  transition: all .25s; border: 1px solid rgba(255,255,255,0.1);
}
.h2-btn-main i {
  width: 28px; height: 28px; background: rgba(255,255,255,0.15);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 12px; transition: transform .25s;
}
.h2-btn-main:hover { transform: translateY(-2px); box-shadow: 0 14px 44px rgba(179,18,23,0.5); }
.h2-btn-main:hover i { transform: translateX(3px); }

.h2-btn-sec {
  display: inline-flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.55); font-size: 15px; font-weight: 500;
  padding: 15px 24px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  transition: all .25s;
}
.h2-btn-sec:hover { color: var(--gold); border-color: rgba(201,168,76,0.3); background: rgba(201,168,76,0.05); }

.h2-features {
  display: flex; gap: 28px; flex-wrap: wrap;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.06);
}
.h2-feat {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.35); font-weight: 500;
}
.h2-feat i { color: var(--gold); font-size: 14px; }

/* SAĞ */
.h2-right { position: relative; height: 500px; }

/* ── KAMPANYA KARTLARI ── */
.h2-kampanya-wrap {
  display: flex; flex-direction: column; gap: 14px;
  position: relative; z-index: 3;
}

.h2-kmp-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid var(--kmp-color, var(--crimson));
  border-radius: 14px;
  padding: 18px 20px;
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  transition: all .25s;
  position: relative; overflow: hidden;
}
.h2-kmp-card::before {
  content:''; position:absolute; inset:0;
  background: linear-gradient(135deg, rgba(255,255,255,0.03), transparent);
  pointer-events:none;
}
.h2-kmp-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateX(4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.h2-kmp-top {
  display: flex; align-items: flex-start; gap: 14px; margin-bottom: 14px;
}
.h2-kmp-ikon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: color-mix(in srgb, var(--kmp-color, var(--crimson)) 15%, transparent);
  border: 1px solid color-mix(in srgb, var(--kmp-color, var(--crimson)) 30%, transparent);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--kmp-color, var(--crimson));
}
.h2-kmp-baslik {
  font-weight: 700; font-size: 14px; color: #fff; margin-bottom: 4px;
  line-height: 1.2;
}
.h2-kmp-yazi {
  font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.5;
}
.h2-kmp-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700;
  color: var(--kmp-color, var(--crimson));
  padding: 7px 14px; border-radius: 7px;
  border: 1px solid color-mix(in srgb, var(--kmp-color, var(--crimson)) 30%, transparent);
  background: color-mix(in srgb, var(--kmp-color, var(--crimson)) 8%, transparent);
  transition: all .2s; letter-spacing: .3px;
}
.h2-kmp-btn i { font-size: 10px; transition: transform .2s; }
.h2-kmp-btn:hover {
  background: color-mix(in srgb, var(--kmp-color, var(--crimson)) 18%, transparent);
  transform: translateX(2px);
}
.h2-kmp-btn:hover i { transform: translateX(3px); }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

/* Dönen halkalar */
.h2-ring {
  position: absolute; top: 50%; left: 50%;
  border-radius: 50%; border: 1px solid;
  pointer-events: none;
}
.h2-ring.r1 {
  width: 380px; height: 380px; margin: -190px 0 0 -190px;
  border-color: rgba(201,168,76,0.08);
  animation: spin 20s linear infinite;
}
.h2-ring.r2 {
  width: 460px; height: 460px; margin: -230px 0 0 -230px;
  border-color: rgba(179,18,23,0.05);
  border-style: dashed;
  animation: spin 30s linear infinite reverse;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Aşağı kaydır */
.h2-scroll-hint {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding-bottom: 36px; color: rgba(255,255,255,0.2);
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  transition: color .2s;
}
.h2-scroll-hint:hover { color: rgba(201,168,76,0.6); }
.h2-scroll-arrow {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 12px; animation: bounce 2s ease infinite;
}
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(5px)} }

/* Responsive */
@media (max-width: 900px) {
  .h2-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .h2-right { display: none; }
  .h2-badge { justify-content: center; }
  .h2-btns  { justify-content: center; }
  .h2-features { justify-content: center; }
  .h2-divider { justify-content: center; }
  .h2-desc { margin-left: auto; margin-right: auto; }
}

/* ── MARQUEE ── */
.marquee-wrap {
  background: var(--crimson); overflow: hidden; padding: 12px 0;
  border-top: 1px solid var(--crimson-dark); border-bottom: 1px solid var(--crimson-dark);
}
.marquee-track {
  display: flex; width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 10px; padding: 0 28px;
  font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.9);
}
.marquee-item i { color: var(--gold-light); }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── SECTION TITLES ── */
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 52px; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--crimson); margin-bottom: 12px;
}
.section-label::before, .section-label::after {
  content: ''; height: 1px; width: 28px; background: var(--crimson); display: block;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 40px); font-weight: 900; color: var(--dark);
  margin-bottom: 14px; line-height: 1.2;
}
.section-desc { font-size: 16px; color: var(--text-muted); max-width: 520px; margin: 0 auto; }

/* ── PRODUCT CARDS ── */
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 28px;
}
.product-card {
  background: #fff; border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border);
  transition: all .3s; position: relative;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 16px 50px var(--shadow); border-color: rgba(179,18,23,0.15); }
.product-img-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 1; background: var(--cream);
}
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-img-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-size: 72px; color: var(--border);
}
.product-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--crimson); color: #fff;
  font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 100px;
  display: block; width: fit-content;
}
.product-badge + .product-badge { top: auto; margin-top: 4px; }
/* Birden fazla badge'i dikey sırala */
.product-img-wrap { position: relative; }
.product-img-wrap .product-badge:nth-child(2) { top: 38px; }
.product-img-wrap .product-badge:nth-child(3) { top: 64px; }
.product-badge.gold { background: var(--gold); color: var(--dark); }
.product-actions-hover {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  display: flex; flex-direction: column; gap: 8px;
  opacity: 0; transform: translateX(8px);
  transition: all .25s;
}
.product-card:hover .product-actions-hover { opacity: 1; transform: none; }
.prod-action-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.95); border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--text); transition: all .2s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.prod-action-btn:hover { background: var(--crimson); color: #fff; }
.product-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.product-cat { font-size: 11px; color: var(--crimson); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
.product-name {
  font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700;
  color: var(--dark); margin-bottom: 8px; line-height: 1.3;
}
.product-name a:hover { color: var(--crimson); }
.product-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; flex: 1; }
.product-footer { display: flex; flex-direction: column; gap: 12px; margin-top: auto; }
.product-price { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.price-current { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 900; color: var(--crimson); }
.price-old { font-size: 13px; color: var(--text-muted); text-decoration: line-through; }
.btn-add-cart {
  background: var(--dark); color: #fff; border: none;
  padding: 10px 18px; border-radius: 8px; font-size: 13px; font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: all .2s; white-space: nowrap; width: 100%; cursor: pointer;
}
.price-old { font-size: 14px; color: var(--text-muted); text-decoration: line-through; }
.btn-add-cart {
  background: var(--dark); color: #fff; border: none;
  padding: 10px 18px; border-radius: 8px; font-size: 13px; font-weight: 600;
  display: flex; align-items: center; gap: 6px;
  transition: all .2s; white-space: nowrap;
}
.btn-add-cart:hover { background: var(--crimson); box-shadow: 0 4px 16px rgba(179,18,23,0.3); }

/* ── CATEGORIES SHOWCASE ── */
.categories-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px;
}
.cat-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); text-align: center; padding: 32px 20px;
  transition: all .3s; cursor: pointer; text-decoration: none;
  display: block;
}
.cat-card:hover { transform: translateY(-4px); border-color: var(--crimson); box-shadow: 0 12px 40px var(--shadow); }
.cat-icon { font-size: 48px; margin-bottom: 14px; line-height: 1; }
.cat-icon .fa { font-size: 44px; color: var(--crimson); display: block; }
.cat-img-wrap {
  width: 100%; aspect-ratio: 16/9; overflow: hidden;
  border-radius: 10px; margin-bottom: 14px;
}
.cat-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.cat-card:hover .cat-img-wrap img { transform: scale(1.06); }
.cat-name { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.cat-count { font-size: 12px; color: var(--text-muted); }
.cat-card:hover .cat-name { color: var(--crimson); }

/* ── WHY US ── */
.why-section { background: var(--dark); }
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 36px;
}
.why-item { text-align: center; }
.why-icon {
  width: 72px; height: 72px; margin: 0 auto 18px;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--gold); transition: all .3s;
}
.why-item:hover .why-icon { background: var(--crimson); border-color: var(--crimson); color: #fff; transform: scale(1.1); }
.why-title { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.why-desc { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; }
.why-section .section-title { color: #fff; }
.why-section .section-desc { color: rgba(255,255,255,0.4); }

/* ── BANNER ── */
/* ── FOOTER BANNER (dinamik) ── */
.fbanner {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--fb-ust,#8B0000) 0%, var(--fb-alt,#B31217) 100%);
  padding: 52px 0;
  transition: background .4s;
}
.fbanner-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 80% 140% at 50% 50%, rgba(255,255,255,0.05), transparent);
}
.fbanner-desen {
  position: absolute; inset: 0; pointer-events: none;
}
.fbanner-glow {
  position: absolute; border-radius: 50%; pointer-events: none; filter: blur(70px);
}
.fbanner-glow.gl1 { width: 500px; height: 400px; top: -160px; left: -100px; background: rgba(255,255,255,0.06); }
.fbanner-glow.gl2 { width: 350px; height: 300px; bottom: -120px; right: -60px;  background: rgba(0,0,0,0.18); }
.fbanner-kapat {
  position: absolute; top: 14px; right: 18px; z-index: 10;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.65); font-size: 12px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .2s;
}
.fbanner-kapat:hover { background: rgba(255,255,255,0.22); color: #fff; }

.fbanner-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr auto auto;
  align-items: center; gap: 40px;
}
/* Sol */
.fbanner-sol { display: flex; align-items: center; gap: 22px; min-width: 0; }
.fbanner-ikon-kutu {
  position: relative; flex-shrink: 0;
  width: 70px; height: 70px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 18px; display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: #fff; box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.fbanner-ikon-halka {
  position: absolute; inset: -7px; border-radius: 25px;
  border: 1.5px solid rgba(255,255,255,0.15);
  animation: fbPulse 2.8s ease-in-out infinite;
}
@keyframes fbPulse { 0%,100%{transform:scale(1);opacity:.6} 50%{transform:scale(1.12);opacity:.12} }
.fbanner-rozet {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
  padding: 4px 12px; border-radius: 100px;
  font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.8); margin-bottom: 9px;
}
.fbanner-rozet-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #fde047; animation: fbPulse 2s infinite;
}
.fbanner-baslik {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 2.2vw, 32px); font-weight: 900;
  color: #fff; line-height: 1.2; margin-bottom: 6px;
}
.fbanner-aciklama { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.5; }

/* Sayaç */
.fbanner-sayac {
  display: flex; align-items: center; gap: 4px;
  background: rgba(0,0,0,0.22); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 14px 18px; flex-shrink: 0;
}
.fbanner-sayac-kart { text-align: center; }
.fbanner-sayac-sayi {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 30px; font-weight: 900; color: #fff;
  line-height: 1; min-width: 40px;
}
.fbanner-sayac-ad {
  display: block; font-size: 9px; color: rgba(255,255,255,0.38);
  letter-spacing: 1.5px; text-transform: uppercase; margin-top: 3px;
}
.fbanner-sayac-sep {
  font-size: 24px; font-weight: 900; color: rgba(255,255,255,0.25);
  margin-bottom: 10px; line-height: 1;
}
/* Sağ */
.fbanner-sag { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; flex-shrink: 0; }
.fbanner-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: var(--fb-alt, var(--crimson));
  padding: 13px 26px; border-radius: 10px;
  font-size: 14px; font-weight: 800; white-space: nowrap;
  box-shadow: 0 6px 28px rgba(0,0,0,0.2);
  transition: all .25s;
}
.fbanner-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,0,0,0.28); }
.fbanner-btn .fa-arrow-right { transition: transform .25s; }
.fbanner-btn:hover .fa-arrow-right { transform: translateX(4px); }
.fbanner-ek-bilgi { font-size: 12px; color: rgba(255,255,255,0.4); }
.fbanner-ek-bilgi .fa-clock { margin-right: 4px; }

@media (max-width: 960px) {
  .fbanner-inner { grid-template-columns: 1fr; gap: 20px; }
  .fbanner-sag   { align-items: flex-start; }
}
@media (max-width: 600px) {
  .fbanner-ikon-kutu { display: none; }
  .fbanner { padding: 36px 0; }
}

/* promo-banner (eski uyumluluk) */
.btn-gold {
  background: var(--gold); color: var(--dark);
  padding: 14px 36px; border-radius: 8px; border: none;
  font-size: 15px; font-weight: 700; display: inline-flex; align-items: center; gap: 8px;
  transition: all .25s; box-shadow: 0 6px 24px rgba(201,168,76,0.4);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px;
}
.testimonial-card {
  background: #fff; border-radius: var(--radius-lg); padding: 28px;
  border: 1px solid var(--border); position: relative;
}
.testimonial-card::before {
  content: '"'; font-family: 'Playfair Display', serif;
  font-size: 80px; line-height: 1; color: var(--crimson); opacity: .12;
  position: absolute; top: 10px; left: 20px;
}
.t-stars { color: var(--gold); font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
.t-text { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--cream);
  display: flex; align-items: center; justify-content: center; font-size: 20px;
  border: 2px solid var(--border);
}
.t-name { font-weight: 600; font-size: 14px; color: var(--dark); }
.t-city { font-size: 12px; color: var(--text-muted); }

/* ── PRODUCT LIST PAGE ── */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  padding: 40px 0;
}
.sidebar { position: sticky; top: 90px; align-self: start; }
.sidebar-box {
  background: #fff; border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 24px; margin-bottom: 20px;
}
.sidebar-title {
  font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700;
  color: var(--dark); margin-bottom: 18px; padding-bottom: 14px;
  border-bottom: 2px solid var(--crimson);
}
.filter-list a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 14px;
  color: var(--text-muted); font-weight: 600; transition: color .2s;
}
.filter-list a:last-child { border-bottom: none; }
.filter-list a:hover, .filter-list a.active { color: var(--crimson); }
.filter-list .count {
  background: var(--cream); color: var(--text-muted);
  font-size: 11px; padding: 2px 8px; border-radius: 100px;
}
.filter-list a.active .count { background: var(--crimson); color: #fff; }

.shop-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px; flex-wrap: wrap; gap: 12px;
}
.toolbar-info { font-size: 14px; color: var(--text-muted); }
.toolbar-info strong { color: var(--dark); }
.toolbar-sort select {
  border: 1px solid var(--border); padding: 8px 16px; border-radius: 8px;
  font-size: 14px; font-family: inherit; background: #fff; color: var(--text);
  cursor: pointer; outline: none;
}

/* ── PRODUCT DETAIL ── */
.product-detail { padding: 50px 0; }
.detail-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.detail-gallery { position: sticky; top: 90px; }
.gallery-main {
  position: relative;
  border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 1;
  background: var(--cream); margin-bottom: 14px; border: 1px solid var(--border);
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 10px; }
.thumb {
  width: 72px; height: 72px; border-radius: 8px; overflow: hidden;
  border: 2px solid transparent; cursor: pointer; transition: border-color .2s;
}
.thumb.active, .thumb:hover { border-color: var(--crimson); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.detail-info .product-cat { font-size: 12px; color: var(--crimson); font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px; }
.detail-title {
  font-family: 'Playfair Display', serif; font-size: clamp(24px,3vw,36px);
  font-weight: 900; color: var(--dark); line-height: 1.2; margin-bottom: 14px;
}
.detail-stars { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; }
.review-count { font-size: 13px; color: var(--text-muted); }
.detail-price { margin-bottom: 20px; }
.detail-price .price-current { font-size: 36px; }
.detail-desc { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 24px; }
.detail-meta { margin-bottom: 28px; }
.meta-row { display: flex; gap: 8px; font-size: 14px; margin-bottom: 6px; }
.meta-row strong { color: var(--dark); min-width: 100px; }
.meta-row span { color: var(--text-muted); }
.qty-wrap { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.qty-input { display: flex; align-items: center; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.qty-btn { width: 38px; height: 44px; background: var(--cream); border: none; font-size: 18px; font-weight: 600; color: var(--dark); cursor: pointer; transition: background .2s; }
.qty-btn:hover { background: var(--crimson); color: #fff; }
.qty-num { width: 50px; text-align: center; border: none; font-size: 16px; font-weight: 600; font-family: inherit; background: #fff; outline: none; }
.btn-add-cart-lg {
  flex: 1; background: var(--crimson); color: #fff; border: none;
  padding: 14px 28px; border-radius: 8px; font-size: 16px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: all .25s; box-shadow: 0 6px 24px rgba(179,18,23,0.3);
}
.btn-add-cart-lg:hover { background: var(--crimson-light); transform: translateY(-2px); }
.detail-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.detail-badge {
  display: flex; align-items: center; gap: 8px;
  border: 1px solid var(--border); padding: 8px 14px; border-radius: 8px;
  font-size: 12px; color: var(--text-muted);
}
.detail-badge i { color: var(--gold); }

/* ── SEPET ── */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 32px; padding: 40px 0; }
.cart-table { background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden; }

/* ── Başlık satırı ── */
.cart-header-row {
  display: flex; align-items: center; gap: 16px;
  padding: 12px 20px; background: var(--cream);
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

/* ── Ürün satırı ── */
.cart-row {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px; border-bottom: 1px solid var(--border);
}
.cart-row:last-child { border-bottom: none; }

.cart-col-price  { width: 90px;  text-align: center; font-size: 14px; flex-shrink: 0; }
.cart-col-qty    { width: 110px; text-align: center; flex-shrink: 0; }
.cart-col-total  { width: 90px;  text-align: right;  font-size: 15px; flex-shrink: 0; }
.cart-col-remove { width: 40px;  text-align: center; flex-shrink: 0; }

/* Mobilde gizle */
.cart-mobile-meta { display: none; }

.cart-product { display: flex; align-items: center; gap: 14px; }
.cart-img { width: 64px; height: 64px; border-radius: 8px; object-fit: cover; border: 1px solid var(--border); flex-shrink: 0; }
.cart-product-name { font-weight: 600; color: var(--dark); font-size: 15px; margin-bottom: 2px; }
.cart-remove { background: none; border: none; color: #dc2626; font-size: 16px; cursor: pointer; padding: 6px; transition: transform .2s; }
.cart-remove:hover { transform: scale(1.2); }

/* ── Mobil: kart düzeni ── */
@media (max-width: 640px) {
  .cart-header-row { display: none; }
  .cart-row { flex-wrap: wrap; gap: 10px; padding: 14px 16px; }

  /* Ürün bilgisi tam genişlik */
  .cart-row .cart-product { flex: 0 0 100%; }
  .cart-img { width: 52px; height: 52px; }
  .cart-product-name { font-size: 14px; }

  /* Mobil fiyat satırı göster */
  .cart-mobile-meta {
    display: flex; align-items: center; gap: 8px;
    margin-top: 6px; font-size: 13px; color: var(--text-muted); flex-wrap: wrap;
  }

  /* Masaüstü kolonları gizle */
  .cart-col-price, .cart-col-total { display: none; }

  /* Adet ve sil yan yana */
  .cart-col-qty    { width: auto; flex: 1; }
  .cart-col-remove { width: auto; margin-left: auto; }
}
.cart-product { display: flex; align-items: center; gap: 14px; }
.cart-img { width: 64px; height: 64px; border-radius: 8px; object-fit: cover; border: 1px solid var(--border); }
.cart-product-name { font-weight: 600; color: var(--dark); font-size: 15px; }
.cart-remove { background: none; border: none; color: #dc2626; font-size: 16px; cursor: pointer; padding: 6px; transition: transform .2s; }
.cart-remove:hover { transform: scale(1.2); }

.order-summary { background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--border); padding: 28px; align-self: start; position: sticky; top: 90px; }
.summary-title { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 20px; }
.summary-row { display: flex; justify-content: space-between; font-size: 15px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.summary-row:last-child { border-bottom: none; }
.summary-total { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 900; color: var(--crimson); }
.coupon-form { display: flex; gap: 8px; margin: 18px 0; }
.coupon-form input { flex: 1; border: 1px solid var(--border); padding: 10px 14px; border-radius: 8px; font-size: 14px; font-family: inherit; outline: none; }
.coupon-form input:focus { border-color: var(--crimson); }
.btn-coupon { background: var(--dark); color: #fff; border: none; padding: 10px 18px; border-radius: 8px; font-size: 14px; font-weight: 600; white-space: nowrap; cursor: pointer; transition: background .2s; }
.btn-coupon:hover { background: var(--crimson); }

/* ── FORMS ── */
.form-card {
  background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--border);
  padding: 40px; max-width: 520px; margin: 50px auto;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}
.form-title { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 900; color: var(--dark); margin-bottom: 6px; }
.form-subtitle { font-size: 14px; color: var(--text-muted); margin-bottom: 30px; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--border); border-radius: 8px;
  font-size: 14px; font-family: inherit; color: var(--text);
  background: #fff; transition: border-color .2s; outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--crimson); box-shadow: 0 0 0 3px rgba(179,18,23,0.08);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-check { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-muted); }
.form-check input { accent-color: var(--crimson); width: 16px; height: 16px; }
.btn-form {
  width: 100%; background: var(--crimson); color: #fff; border: none;
  padding: 14px; border-radius: 8px; font-size: 16px; font-weight: 700;
  cursor: pointer; transition: all .25s; box-shadow: 0 6px 24px rgba(179,18,23,0.3);
}
.btn-form:hover { background: var(--crimson-light); transform: translateY(-1px); }
.form-link { text-align: center; margin-top: 18px; font-size: 14px; color: var(--text-muted); }
.form-link a { color: var(--crimson); font-weight: 600; }

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  padding: 60px 0; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; opacity: .04;
  background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-title {
  font-family: 'Playfair Display', serif; font-size: clamp(28px,4vw,48px);
  font-weight: 900; color: #fff; margin-bottom: 10px;
}
.page-hero-sub { font-size: 16px; color: rgba(255,255,255,0.5); }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 14px; }
.breadcrumb a, .breadcrumb span { font-size: 13px; color: rgba(255,255,255,0.7); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: rgba(255,255,255,0.35); }
.breadcrumb .current { color: #fff; font-weight: 600; }

/* Açık arka plan üzerindeki breadcrumb (ürün detay vb.) */
.breadcrumb-light a, .breadcrumb-light span { color: var(--text-muted); }
.breadcrumb-light a:hover { color: var(--crimson); }
.breadcrumb-light .sep { color: var(--border); }
.breadcrumb-light .current { color: var(--dark); font-weight: 700; }

/* ── ADMIN ── */
.admin-layout { display: flex; min-height: calc(100vh - 70px); }
.admin-sidebar {
  width: 260px; background: var(--dark); flex-shrink: 0;
  padding: 24px 0; position: sticky; top: 70px; height: calc(100vh - 70px);
  overflow-y: auto;
}
.admin-nav-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.25); padding: 8px 24px 6px; }
.admin-nav a {
  display: flex; align-items: center; gap: 12px; padding: 11px 24px;
  font-size: 14px; color: rgba(255,255,255,0.6); transition: all .15s; font-weight: 500;
}
.admin-nav a:hover { color: var(--gold); background: rgba(201,168,76,0.07); }
.admin-nav a.active { color: var(--gold); background: rgba(201,168,76,0.1); border-right: 3px solid var(--gold); }
.admin-nav a i { width: 18px; text-align: center; }
.admin-content { flex: 1; padding: 32px; background: #f5eeee; }
.admin-title { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 900; color: var(--dark); margin-bottom: 24px; }
.stat-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; margin-bottom: 32px; }
.stat-card { background: #fff; border-radius: var(--radius); padding: 24px; border: 1px solid var(--border); border-left: 4px solid var(--crimson); }
.stat-card.gold { border-left-color: var(--gold); }
.stat-card.green { border-left-color: #16a34a; }
.stat-card.blue { border-left-color: #2563eb; }
.stat-card-val { font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 900; color: var(--dark); }
.stat-card-label { font-size: 12px; color: var(--text-muted); font-weight: 600; letter-spacing: .5px; text-transform: uppercase; margin-top: 4px; }
.data-table { background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden; }
.data-table table { width: 100%; border-collapse: collapse; }
.data-table th { background: var(--dark); color: rgba(255,255,255,0.7); padding: 14px 18px; font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; text-align: left; }
.data-table td { padding: 14px 18px; border-bottom: 1px solid var(--border); font-size: 14px; vertical-align: middle; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--cream); }
.badge {
  display: inline-block; padding: 3px 10px; border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: .5px;
}
.badge-red    { background: #fef2f2; color: #991b1b; }
.badge-green  { background: #f0fdf4; color: #166534; }
.badge-yellow { background: #fefce8; color: #854d0e; }
.badge-blue   { background: #eff6ff; color: #1d4ed8; }
.badge-orange { background: #fff7ed; color: #c2410c; }
.badge-gray { background: var(--cream); color: var(--text-muted); }

/* ── PAGINATION ── */
.pagination { display: flex; justify-content: center; gap: 8px; margin: 40px 0; }
.page-link {
  width: 40px; height: 40px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); background: #fff; font-size: 14px; font-weight: 600;
  color: var(--text); transition: all .2s; text-decoration: none;
}
.page-link:hover { border-color: var(--crimson); color: var(--crimson); }
.page-link.active { background: var(--crimson); border-color: var(--crimson); color: #fff; }

/* ── FOOTER ── */
#site-footer { background: var(--dark); color: rgba(255,255,255,0.6); }
.footer-top { padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }
.footer-logo-link { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.footer-logo-link img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.footer-brand { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 900; color: #fff; }
.footer-brand-sub { font-size: 11px; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; }
.footer-desc { font-size: 14px; line-height: 1.75; margin-bottom: 22px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; font-size: 14px;
  transition: all .2s;
}
.footer-socials a:hover { background: var(--crimson); border-color: var(--crimson); color: #fff; }
.footer-col h4 {
  font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700;
  color: #fff; margin-bottom: 18px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { font-size: 14px; transition: color .2s; }
.footer-col ul a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-items { margin-bottom: 18px; }
.contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: 14px; }
.contact-item i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.contact-item a:hover { color: var(--gold); }
.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-badges span {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  padding: 6px 12px; border-radius: 6px; font-size: 12px;
}
.footer-badges span i { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding: 20px 0;
}
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; transition: color .2s; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ── RESPONSIVE ── */
/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — TABLEt & MOBİL
   1024px → Tablet | 768px → Mobil | 480px → Küçük Mobil
═══════════════════════════════════════════════════════════ */

/* ── 1024px: Tablet ──────────────────────────────────────── */

/* ═══════════════════════════════════════════════════════════════════
   ELER ZEYTİNLERİ — TAM MOBİL UYUMLULUK
   Breakpoints: 1024px (tablet) | 768px (mobil) | 480px (küçük)
═══════════════════════════════════════════════════════════════════ */

/* ────────────────────────────────────────────────────────────────
   1024px — TABLET
──────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  /* Hero */
  .hero-content  { grid-template-columns: 1fr; text-align: center; }
  .hero-visual   { display: none; }
  .hero-desc     { margin: 0 auto 36px; }
  .hero-btns     { justify-content: center; }
  .hero-stats    { justify-content: center; }

  /* Ürün/Sepet/Ödeme layout */
  .detail-grid   { grid-template-columns: 1fr; gap: 32px; }
  .cart-layout   { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 32px; }

  /* Shop layout: sidebar üste geçer */
  .shop-layout   { grid-template-columns: 1fr; }
  .sidebar       { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

  /* Inline grid'ler */
  .hakkimizda-hikaye,
  .iletisim-grid,
  .odeme-grid,
  .siparis-detay-grid,
  .destek-layout,
  .hesabim-grid  { display: block !important; }

  .hakkimizda-hikaye > *:not(:last-child),
  .iletisim-grid > *:not(:last-child),
  .odeme-grid > *:not(:last-child),
  .siparis-detay-grid > *:not(:last-child),
  .destek-layout > *:not(:last-child),
  .hesabim-grid > *:not(:last-child) { margin-bottom: 24px; }

  /* Admin */
  .admin-layout  { flex-direction: column; }
  .admin-sidebar { width: 100%; height: auto; position: static; display: flex; flex-wrap: wrap; gap: 4px; padding: 10px; }
  .admin-sidebar a { padding: 7px 14px; font-size: 13px; }
  .admin-content { padding: 20px 16px; }

  /* Kampanya istatistik kartları */
  [style*="grid-template-columns:repeat(3,1fr)"] { grid-template-columns: repeat(2,1fr) !important; }
}

/* ────────────────────────────────────────────────────────────────
   768px — MOBİL
──────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* ── Genel ── */
  .container     { padding: 0 16px; }
  .section       { padding: 44px 0; }
  * { -webkit-tap-highlight-color: transparent; }

  /* ── Header ── */
  .main-nav, .btn-outline-header { display: none !important; }
  .mobile-toggle {
    display: flex !important;
    background: none; border: none;
    color: rgba(255,255,255,0.8);
    font-size: 22px; align-items: center;
    padding: 8px; cursor: pointer;
  }
  .main-nav.open {
    display: flex !important;
    flex-direction: column;
    position: absolute; top: 70px; left: 0; right: 0;
    background: var(--dark);
    padding: 12px 16px 20px;
    border-top: 1px solid rgba(201,168,76,0.2);
    z-index: 9998; gap: 2px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  }
  .main-nav.open > a {
    padding: 13px 16px;
    border-radius: 8px;
    font-size: 15px;
    color: rgba(255,255,255,0.85) !important;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .main-nav.open > a:last-child { border-bottom: none; }
  .main-nav.open > a:hover,
  .main-nav.open > a.active { background: rgba(201,168,76,0.12); color: var(--gold) !important; }

  /* Mobil menüde nav-dropdown */
  .main-nav.open .nav-dropdown { position: static; width: 100%; }
  .main-nav.open .nav-dropdown > span {
    display: flex; align-items: center; justify-content: space-between;
    padding: 13px 16px; border-radius: 8px; cursor: pointer;
    color: rgba(255,255,255,0.85); font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .main-nav.open .dropdown-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; background: rgba(255,255,255,0.04);
    border-radius: 8px; margin: 4px 0 4px 8px; padding: 6px;
    border-left: 2px solid rgba(201,168,76,0.3);
  }
  .main-nav.open .dropdown-menu a {
    font-size: 13px !important;
    color: rgba(255,255,255,0.7) !important;
    padding: 9px 12px !important;
  }

  /* ── Hero ── */
  .page-hero     { padding: 32px 0; }
  .page-hero-title { font-size: clamp(20px, 5vw, 30px); }
  .h2-inner      { padding: 40px 16px 32px; }
  .h2-title      { font-size: clamp(28px, 7vw, 48px); }
  .h2-desc       { font-size: 15px; }

  /* ── Ürün Listesi ── */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-body  { padding: 10px 12px 12px; }
  .product-name  { font-size: 13px; }
  .product-desc  { display: none; }
  .price-current { font-size: 16px; }

  /* ── Ürün Detay ── */
  .detail-grid   { grid-template-columns: 1fr; gap: 20px; }
  .gallery-main  { height: 260px; }
  .gallery-thumbs { gap: 8px; }
  .thumb         { width: 60px; height: 60px; }
  .detail-title  { font-size: clamp(20px, 5vw, 28px); }
  .detail-price .price-current { font-size: 28px; }
  .qty-wrap      { flex-direction: column; gap: 10px; }
  .btn-add-cart-lg { width: 100%; justify-content: center; font-size: 15px; }
  .detail-badges { flex-wrap: wrap; gap: 8px; }
  .detail-badge  { font-size: 11px; padding: 6px 10px; }

  /* Tab butonları yatay kaydır */
  .tabs-nav {
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap; scrollbar-width: none; padding-bottom: 2px;
    gap: 6px;
  }
  .tabs-nav::-webkit-scrollbar { display: none; }
  .tab-btn { white-space: nowrap; flex-shrink: 0; padding: 10px 14px !important; }

  /* ── Shop Sidebar ── */
  .shop-layout   { grid-template-columns: 1fr; gap: 0; }
  .sidebar       { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
  .sidebar-box   { margin-bottom: 0; }
  .filter-list   { max-height: 150px; overflow-y: auto; }

  /* Shop toolbar */
  .shop-toolbar  { flex-direction: column; gap: 10px; align-items: flex-start; }

  /* ── Kategoriler ── */
  .categories-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px; }

  /* ── Sepet ── */
  .cart-layout   { grid-template-columns: 1fr; }
  .fiyat-ozet    { position: static !important; width: auto !important; }
  .cart-item     { gap: 12px; }
  .cart-img      { width: 60px; height: 60px; border-radius: 8px; }

  /* ── Ödeme ── */
  .odeme-grid    { display: block !important; }
  .odeme-grid > *:not(:last-child) { margin-bottom: 20px; }
  .form-row      { grid-template-columns: 1fr !important; }

  /* ── Sipariş ── */
  .siparis-detay-grid { display: block !important; }
  .siparis-detay-grid > *:not(:last-child) { margin-bottom: 20px; }

  /* ── Hesabım ── */
  .hesabim-grid  { display: block !important; }
  .hesabim-grid > *:not(:last-child) { margin-bottom: 20px; }

  /* ── Blog ── */
  .blog-layout   { display: block !important; }
  .blog-layout > aside { order: -1; margin-bottom: 24px; }
  .blog-detay-grid { display: block !important; }
  .blog-detay-grid > aside { display: none; }

  /* ── Hakkımızda ── */
  .hakkimizda-hikaye { display: block !important; }
  .hakkimizda-hikaye > *:not(:last-child) { margin-bottom: 24px; }
  .hakkimizda-resim  { display: none; }
  .hakkimizda-stats  { flex-wrap: wrap; gap: 14px !important; }
  .hakkimizda-stats > * { min-width: calc(50% - 8px); }

  /* ── İletişim ── */
  .iletisim-grid { display: block !important; }
  .iletisim-grid > *:not(:last-child) { margin-bottom: 24px; }

  /* ── Destek ── */
  .destek-layout { display: block !important; }
  .destek-layout > *:not(:last-child) { margin-bottom: 20px; }

  /* ── Footer ── */
  .footer-grid   { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 10px; }

  /* ── Tablolar ── */
  .data-table    { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .data-table table { min-width: 520px; }

  /* ── Admin ── */
  .admin-layout  { flex-direction: column; }
  .admin-sidebar { width: 100%; height: auto; position: static; display: flex; flex-wrap: wrap; gap: 4px; padding: 10px; }
  .admin-sidebar a { padding: 7px 12px; font-size: 12px; white-space: nowrap; }
  .admin-content { padding: 16px 12px; }
  .admin-content .data-table { overflow-x: auto; }
  .admin-content table { min-width: 500px; }

  /* ── Inline grid'ler (attribute selector) ── */
  [style*="grid-template-columns:1fr 1fr"][style*="gap:64px"],
  [style*="grid-template-columns: 1fr 1fr"][style*="gap: 64px"],
  [style*="grid-template-columns:1fr 1fr"][style*="gap:48px"],
  [style*="grid-template-columns: 1fr 1fr"][style*="gap: 48px"],
  [style*="grid-template-columns:1fr 300px"],
  [style*="grid-template-columns: 1fr 300px"],
  [style*="grid-template-columns:1fr 280px"],
  [style*="grid-template-columns: 1fr 280px"],
  [style*="grid-template-columns:1fr 380px"],
  [style*="grid-template-columns: 1fr 380px"],
  [style*="grid-template-columns:1fr 360px"],
  [style*="grid-template-columns: 1fr 360px"],
  [style*="grid-template-columns:300px 1fr"],
  [style*="grid-template-columns: 300px 1fr"],
  [style*="grid-template-columns:260px 1fr"],
  [style*="grid-template-columns: 260px 1fr"] { display: block !important; }

  /* Inline grid çocuklarına boşluk */
  .iletisim-grid > div + div,
  .hakkimizda-hikaye > div + div { margin-top: 24px; }

  /* ── Breadcrumb ── */
  .breadcrumb, .breadcrumb-light { font-size: 12px; gap: 5px; flex-wrap: wrap; }

  /* ── Sipariş progress ── */
  .siparis-progress { gap: 4px; }
  .adim-daire { width: 36px; height: 36px; font-size: 12px; }

  /* ── Dekont yükleme ── */
  [style*="grid-template-columns:1fr 1fr"][style*="gap:16px"] { display: block !important; }
  [style*="grid-template-columns:1fr 1fr"][style*="gap:16px"] > *:not(:last-child) { margin-bottom: 14px; }
}

/* ────────────────────────────────────────────────────────────────
   480px — KÜÇÜK MOBİL
──────────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  /* Genel */
  .container     { padding: 0 12px; }
  .section       { padding: 32px 0; }

  /* Ürünler tek kolon */
  .products-grid { grid-template-columns: 1fr; gap: 10px; }

  /* Sidebar tek kolon */
  .sidebar       { grid-template-columns: 1fr; }

  /* Kategoriler 2 kolon */
  .categories-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px; }
  .cat-card      { padding: 18px 10px; }
  .cat-icon      { font-size: 34px; margin-bottom: 8px; }
  .cat-name      { font-size: 13px; }
  .cat-count     { font-size: 11px; }

  /* Hero */
  .page-hero     { padding: 24px 0; }
  .page-hero-title { font-size: clamp(17px, 5vw, 24px); }
  .h2-title      { font-size: clamp(24px, 7vw, 38px); }

  /* Galeri */
  .gallery-main  { height: 220px; }
  .thumb         { width: 52px; height: 52px; }
  .detail-price .price-current { font-size: 24px; }
  .detail-title  { font-size: 18px; }

  /* Tab butonları */
  .tab-btn       { padding: 8px 10px !important; font-size: 11px !important; }

  /* Sipariş progress — yazıları gizle */
  .adim-label    { display: none; }
  .adim-daire    { width: 32px; height: 32px; font-size: 11px; }

  /* Sipariş tamamlandı adımlar */
  [style*="grid-template-columns:1fr 1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* Neden biz */
  .why-grid      { grid-template-columns: 1fr !important; }

  /* Footer */
  .footer-bottom-links { font-size: 11px; gap: 6px; }

  /* Breadcrumb */
  .breadcrumb, .breadcrumb-light { font-size: 11px; }
  .breadcrumb .sep { margin: 0 2px; }

  /* Sayfalama */
  .pagination    { gap: 4px; flex-wrap: wrap; justify-content: center; }
  .page-link     { width: 34px; height: 34px; font-size: 12px; }

  /* Hero butonlar tam genişlik */
  .hero-btns     { flex-direction: column; }
  .hero-btns .btn-primary,
  .hero-btns .btn-gold { width: 100%; justify-content: center; }

  /* Kampanya kartları */
  [style*="grid-template-columns:repeat(3,1fr)"],
  [style*="grid-template-columns: repeat(3, 1fr)"] { grid-template-columns: 1fr !important; }

  /* Kargo sistemi seçim kartları (admin ayarlar) */
  [style*="grid-template-columns:1fr 1fr"][style*="gap:14px"] { display: block !important; }
  [style*="grid-template-columns:1fr 1fr"][style*="gap:14px"] > *:not(:last-child) { margin-bottom: 10px; }

  /* Blog paylaş butonları */
  .paylasim-btns { flex-wrap: wrap; }
  .paylasim-btns a { flex: 1; min-width: 120px; justify-content: center; }

  /* Admin tablo */
  .admin-content table { min-width: 480px; }

  /* Filtreler */
  .filter-list   { max-height: 110px; }
  .shop-toolbar  { flex-direction: column; gap: 8px; align-items: flex-start; }
}

/* ────────────────────────────────────────────────────────────────
   YARDIMCI — Tüm boyutlarda çalışan düzeltmeler
──────────────────────────────────────────────────────────────── */

/* Destek CHAT */
.chat-ben    { align-items: flex-end; }
.chat-destek { align-items: flex-start; }
#chatMesajlar { scrollbar-width: thin; scrollbar-color: var(--border) transparent; }
#chatMesajlar::-webkit-scrollbar { width: 5px; }
#chatMesajlar::-webkit-scrollbar-thumb { background: var(--border); border-radius: 10px; }

/* YASAL SAYFALAR */
.yasal-icerik { font-size: 15px; line-height: 1.9; color: var(--text-muted); }
.yasal-icerik h1, .yasal-icerik h2 {
  font-family: 'Playfair Display', serif; color: var(--dark);
  margin: 36px 0 12px; font-weight: 700;
}
.yasal-icerik h1 { font-size: 28px; }
.yasal-icerik h2 {
  font-size: 19px; padding-bottom: 8px;
  border-bottom: 2px solid var(--cream); margin-top: 40px;
}
.yasal-icerik h2::before {
  content: ''; display: inline-block; width: 4px; height: 18px;
  background: var(--crimson); border-radius: 2px;
  margin-right: 10px; vertical-align: middle;
}
.yasal-icerik p { margin: 0 0 16px; }
.yasal-icerik ul, .yasal-icerik ol { padding-left: 24px; margin: 0 0 18px; }
.yasal-icerik li { margin-bottom: 8px; }
.yasal-icerik strong { color: var(--dark); font-weight: 700; }
.yasal-icerik a { color: var(--crimson); }
@media (max-width: 768px) {
  .yasal-icerik h1 { font-size: 22px; }
  .yasal-icerik h2 { font-size: 17px; }
}


/* ── SEPET MOBİL ─────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Sepet tablosu scroll */
  .cart-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

  /* Sipariş özeti sticky kaldır */
  .order-summary { position: static !important; }

  /* Ödeme formu */
  .form-row { grid-template-columns: 1fr !important; }

  /* Ödeme buton tam genişlik */
  .btn-primary[style*="width:100%"] { font-size: 14px !important; padding: 14px !important; }

  /* Adres seçim kartları */
  .adres-secim-kart { flex-direction: row; }
}

@media (max-width: 480px) {
  /* Sepet ürün hücresi */
  .cart-product { gap: 8px; }
  .cart-img { width: 48px !important; height: 48px !important; }
  .cart-product-name { font-size: 13px; }
  .cart-table td { padding: 12px 10px; font-size: 13px; }
  .cart-table th { padding: 10px; font-size: 11px; }

  /* Ödeme özet */
  .summary-title { font-size: 16px; }
  .summary-row   { font-size: 13px; }
  .summary-total { font-size: 20px !important; }

  /* Kayıtlı adres kartları dikey */
  .adres-secim-kart { padding: 12px; }
}

/* ── Admin Ayarlar Sayfası Responsive ───────────────────── */
@media (max-width: 1100px) {
  .admin-content { padding: 20px 16px; }
}
@media (max-width: 900px) {
  /* Ayarlar sekme nav'ı iki satıra düşer */
  .admin-content [style*="display:flex"][style*="border-bottom"] { flex-wrap: wrap; }
  /* 2 kolonlu grid'leri tek kolona düşür */
  .admin-content [style*="grid-template-columns:1fr 1fr"],
  .admin-content [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  .admin-content [style*="grid-template-columns:1fr 1fr 1fr"],
  .admin-content [style*="grid-template-columns: 1fr 1fr 1fr"] {
    grid-template-columns: 1fr 1fr !important;
  }
}
@media (max-width: 600px) {
  .admin-content [style*="grid-template-columns:1fr 1fr 1fr"],
  .admin-content [style*="grid-template-columns: 1fr 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  .admin-content { padding: 12px 10px; }
  .admin-title { font-size: 20px; margin-bottom: 16px; }
}

/* ── SİPARİŞ DETAY MOBİL ──────────────────────────────────── */
@media (max-width: 640px) {
  /* Sipariş kalem satırı */
  .siparis-kalem-row {
    flex-wrap: wrap !important;
    gap: 10px !important;
    padding: 14px 14px !important;
  }
  .siparis-kalem-row > div:first-child { /* resim */
    width: 52px !important; height: 52px !important;
  }
  .siparis-kalem-row > div:nth-child(2) { /* bilgi */
    flex: 1 !important; min-width: 0;
  }
  .siparis-kalem-row > div:last-child { /* fiyat */
    width: 100% !important; text-align: right;
    font-size: 15px !important;
    border-top: 1px solid var(--border);
    padding-top: 8px !important;
  }

  /* Sipariş progress adım yazıları */
  .siparis-adim-label { font-size: 9px !important; }

  /* Kargo bilgisi */
  .siparis-detay-grid > *:first-child { overflow-x: hidden; }

  /* Fiyat özeti satırları */
  .siparis-ozet-row { font-size: 13px !important; }
}

/* ── SİPARİŞ DETAY MOBİL ────────────────────────────────── */
@media (max-width: 640px) {
  /* Sipariş progress adımları */
  .siparis-detay-grid { display: block !important; }
  .siparis-detay-grid > * + * { margin-top: 16px; }

  /* Kalem satırı — resim + bilgi + fiyat */
  .siparis-kalem-row {
    flex-wrap: wrap !important;
    gap: 10px !important;
    padding: 14px 14px !important;
  }
  .siparis-kalem-row > div:first-child { /* resim */
    width: 52px !important; height: 52px !important;
  }
  .siparis-kalem-row > div:nth-child(2) { /* isim/adet */
    flex: 1 !important; min-width: 0 !important;
  }
  .siparis-kalem-row > div:last-child { /* fiyat */
    font-size: 15px !important;
  }

  /* Sipariş bilgi grid'leri */
  [style*="grid-template-columns:repeat"][style*="1fr"] {
    grid-template-columns: 1fr 1fr !important;
  }

  /* Progress bar adım yazısı kısalt */
  .adim-label { font-size: 10px !important; }
}

@media (max-width: 400px) {
  .siparis-kalem-row { padding: 12px !important; }
  .siparis-kalem-row > div:first-child {
    width: 44px !important; height: 44px !important;
  }
}

/* ── MOBİL AUTH BUTONLARI ────────────────────────────────── */
.mobile-auth-btns { display: none; }

@media (max-width: 768px) {
  .mobile-auth-btns {
    display: flex; align-items: center; gap: 4px;
  }
  .mobile-auth-btns a {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 8px;
    color: rgba(255,255,255,0.8); font-size: 16px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    text-decoration: none; transition: all .2s;
  }
  .mobile-auth-btns a:hover {
    background: rgba(255,255,255,0.2); color: #fff;
  }
  .mobile-auth-btns a:last-child {
    background: rgba(201,168,76,0.25);
    border-color: rgba(201,168,76,0.4);
    color: var(--gold);
  }
}

/* ── ÜRÜN DETAY GALERİ MOBİL ────────────────────────────── */
@media (max-width: 1024px) {
  .detail-gallery { position: static !important; }
}
