/* ============================================================
   GLOBAL & TYPOGRAPHY
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800;900&display=swap');

:root {
  --red:        #dc2626;
  --red-dark:   #b91c1c;
  --red-light:  #fee2e2;
  --gold:       #f59e0b;
  --dark:       #111827;
  --gray:       #6b7280;
  --light-bg:   #f9fafb;
  --white:      #ffffff;
  --radius:     14px;
  --shadow:     0 4px 24px rgba(0,0,0,.08);
  --shadow-md:  0 8px 32px rgba(0,0,0,.12);
}

* { box-sizing: border-box; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--light-bg);
  color: var(--dark);
  margin: 0;
  padding: 0;
}

/* ============================================================
   HERO HEADER — satış odaklı profesyonel tasarım
   ============================================================ */
.hero-header {
  position: relative;
  background: linear-gradient(160deg, #7f1d1d 0%, #b91c1c 35%, #dc2626 70%, #991b1b 100%);
  color: #fff;
  overflow: hidden;
}

/* Moda banner arka plan görseli */
.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../img/hero-bg.jpg');
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  opacity: .22;
  filter: grayscale(15%) brightness(1.1);
  pointer-events: none;
  transform: scale(1.02);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(127,29,29,.92) 0%, rgba(185,28,28,.78) 45%, rgba(153,27,27,.85) 100%),
    linear-gradient(to top, rgba(0,0,0,.25) 0%, transparent 50%);
  pointer-events: none;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    radial-gradient(ellipse at 70% 20%, rgba(251,191,36,.1) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(255,255,255,.05) 0%, transparent 45%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.03'%3E%3Cpath d='M0 30h60M30 0v60'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 2;
}
.hero-glow-1 {
  width: 500px; height: 500px;
  background: rgba(251,191,36,.18);
  top: -150px; right: -100px;
}
.hero-glow-2 {
  width: 350px; height: 350px;
  background: rgba(255,255,255,.06);
  bottom: -50px; left: -100px;
}

/* Aciliyet şeridi */
.hero-urgency {
  position: relative;
  z-index: 10;
  background: rgba(0,0,0,.35);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 8px 0;
  font-size: .78rem;
}
.hero-urgency-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.hero-urgency-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.85);
  font-weight: 600;
}
.hero-urgency-item i { color: #fbbf24; }
.hero-urgency-item strong { color: #fff; }

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.3); }
}

/* Nav */
.hero-nav {
  position: relative;
  z-index: 10;
  padding: 14px 0;
}
.hero-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
}
.hero-logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, rgba(255,255,255,.2), rgba(255,255,255,.05));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  color: #fbbf24;
}
.hero-logo-text {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -.3px;
}
.hero-logo-img {
  height: 42px;
  max-width: 220px;
  width: auto;
  object-fit: contain;
  display: block;
}
.hero-nav-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50px;
  color: #fff;
  font-size: .84rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
}
.hero-nav-btn:hover {
  background: #fff;
  color: var(--red);
}

/* Hero içerik */
.hero-content {
  position: relative;
  z-index: 5;
  padding: 24px 0 44px;
}

.hero-discount-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #1c1917;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: 1.2px;
  padding: 6px 14px;
  border-radius: 6px;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(251,191,36,.35);
}

.hero-headline {
  margin: 0 0 14px;
  line-height: 1.05;
}
.hero-headline-top {
  display: block;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: 4px;
}
.hero-headline-main {
  display: block;
  font-size: clamp(2.4rem, 7vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -1px;
  text-shadow: 0 2px 20px rgba(0,0,0,.2);
}

.hero-subline {
  font-size: clamp(.95rem, 2vw, 1.08rem);
  color: rgba(255,255,255,.88);
  line-height: 1.55;
  margin-bottom: 22px;
  max-width: 480px;
}
.hero-subline strong { color: #fbbf24; }

/* Fiyat kutusu */
.hero-price-box {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(0,0,0,.3);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 18px 22px;
  margin-bottom: 20px;
  max-width: 420px;
}
.hero-price-label {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: rgba(255,255,255,.55);
  margin-bottom: 4px;
}
.hero-price-strike {
  font-size: 1.15rem;
  font-weight: 700;
  color: rgba(255,255,255,.45);
  text-decoration: line-through;
}
.hero-price-divider {
  color: rgba(255,255,255,.3);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.hero-price-now {
  display: flex;
  align-items: flex-start;
  line-height: 1;
}
.hero-price-num {
  font-size: clamp(2.2rem, 6vw, 3rem);
  font-weight: 900;
  color: #fbbf24;
}
.hero-price-tl {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fbbf24;
  margin-top: 6px;
  margin-left: 2px;
}
.hero-price-save {
  display: inline-block;
  margin-top: 6px;
  background: rgba(34,197,94,.2);
  color: #86efac;
  font-size: .72rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 50px;
}

/* Güven grid */
.hero-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 22px;
  max-width: 420px;
}
.hero-trust-item {
  text-align: center;
  padding: 10px 6px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  transition: background .2s;
}
.hero-trust-item:hover { background: rgba(255,255,255,.14); }
.hero-trust-item i {
  display: block;
  font-size: 1.15rem;
  color: #fbbf24;
  margin-bottom: 4px;
}
.hero-trust-item span {
  font-size: .65rem;
  font-weight: 700;
  line-height: 1.25;
  color: rgba(255,255,255,.9);
}

/* CTA */
.hero-cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #1c1917;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(251,191,36,.45), 0 0 0 0 rgba(251,191,36,.4);
  animation: cta-pulse 2.5s infinite;
  transition: transform .2s, box-shadow .2s;
  margin-bottom: 18px;
}
.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(251,191,36,.55);
  color: #1c1917;
}
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(251,191,36,.45), 0 0 0 0 rgba(251,191,36,.3); }
  50% { box-shadow: 0 8px 32px rgba(251,191,36,.45), 0 0 0 8px rgba(251,191,36,0); }
}
.hero-cta-main {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem;
  font-weight: 900;
}
.hero-cta-sub {
  font-size: .72rem;
  font-weight: 700;
  opacity: .75;
}

/* Sosyal kanıt */
.hero-social {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-social-avatars {
  display: flex;
}
.hero-social-avatars span {
  width: 30px; height: 30px;
  background: linear-gradient(135deg, #fca5a5, #f87171);
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem;
  font-weight: 800;
  margin-left: -8px;
  color: #fff;
}
.hero-social-avatars span:first-child { margin-left: 0; }
.hero-social-avatars span:last-child {
  background: rgba(255,255,255,.2);
  font-size: .6rem;
}
.hero-social-text {
  font-size: .82rem;
  color: rgba(255,255,255,.85);
  line-height: 1.3;
}
.hero-social-text strong { color: #fff; }
.hero-stars {
  display: block;
  color: #fbbf24;
  font-size: .75rem;
  letter-spacing: 1px;
}
.hero-stars em {
  font-style: normal;
  color: rgba(255,255,255,.7);
  font-size: .72rem;
  margin-left: 4px;
}

/* Sağ görsel alan */
.hero-visual {
  position: relative;
  padding: 16px 0 24px;
}
.hero-visual-badge {
  position: absolute;
  top: 0; right: 0;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 700;
  color: #fff;
}
.hero-visual-badge::before {
  content: '';
  width: 7px; height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

.hero-showcase {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 52px 0 22px;
  min-height: 340px;
}
.hero-showcase-aura {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 420px;
  height: 420px;
  background:
    radial-gradient(circle, rgba(251,191,36,.42) 0%, rgba(220,38,38,.18) 38%, transparent 68%);
  border-radius: 50%;
  filter: blur(12px);
  animation: heroAuraPulse 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes heroAuraPulse {
  0%, 100% { opacity: .75; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}
.hero-showcase-sparkles {
  position: absolute;
  inset: 12% 8% 18%;
  pointer-events: none;
  z-index: 1;
}
.hero-showcase-sparkles span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fde68a;
  box-shadow: 0 0 12px rgba(251,191,36,.9);
  animation: heroSparkle 2.4s ease-in-out infinite;
}
.hero-showcase-sparkles span:nth-child(1) { top: 8%; left: 18%; animation-delay: 0s; }
.hero-showcase-sparkles span:nth-child(2) { top: 22%; right: 12%; animation-delay: .6s; width: 4px; height: 4px; }
.hero-showcase-sparkles span:nth-child(3) { bottom: 28%; left: 8%; animation-delay: 1.2s; }
.hero-showcase-sparkles span:nth-child(4) { bottom: 14%; right: 20%; animation-delay: 1.8s; width: 5px; height: 5px; }
.hero-showcase-sparkles span:nth-child(5) { top: 42%; left: 4%; animation-delay: .9s; width: 3px; height: 3px; }
@keyframes heroSparkle {
  0%, 100% { opacity: .2; transform: scale(.8); }
  50% { opacity: 1; transform: scale(1.4); }
}
.hero-showcase-bundle {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #78350f;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .3px;
  padding: 7px 16px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(251,191,36,.45);
  animation: heroBundleBounce 2.8s ease-in-out infinite;
}
@keyframes heroBundleBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-4px); }
}

.hero-showcase-grid {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 4px;
  align-items: flex-end;
  justify-content: center;
}
.hero-showcase-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(0,0,0,.42);
  border: 3px solid rgba(255,255,255,.3);
  transition: transform .45s cubic-bezier(.34,1.2,.64,1), box-shadow .45s ease, border-color .35s ease;
  will-change: transform;
}
.hero-showcase-card img {
  display: block;
  width: 172px;
  height: 232px;
  object-fit: cover;
}
.hero-showcase-card-1 {
  transform: rotate(-12deg) translateY(22px) translateX(14px);
  animation: heroFloat1 4.2s ease-in-out infinite;
  z-index: 1;
}
.hero-showcase-card-2 {
  transform: scale(1.22) translateY(-12px);
  z-index: 3;
  border-color: rgba(251,191,36,.65);
  box-shadow:
    0 28px 64px rgba(0,0,0,.45),
    0 0 48px rgba(251,191,36,.32);
  animation: heroFloat2 4.2s ease-in-out infinite;
}
.hero-showcase-card-2 img {
  width: 208px;
  height: 282px;
}
.hero-showcase-card-3 {
  transform: rotate(12deg) translateY(22px) translateX(-14px);
  animation: heroFloat3 4.2s ease-in-out infinite;
  z-index: 1;
}
@keyframes heroFloat1 {
  0%, 100% { transform: rotate(-12deg) translateY(22px) translateX(14px); }
  50% { transform: rotate(-10deg) translateY(10px) translateX(14px); }
}
@keyframes heroFloat2 {
  0%, 100% { transform: scale(1.22) translateY(-12px); }
  50% { transform: scale(1.26) translateY(-22px); }
}
@keyframes heroFloat3 {
  0%, 100% { transform: rotate(12deg) translateY(22px) translateX(-14px); }
  50% { transform: rotate(10deg) translateY(10px) translateX(-14px); }
}
.hero-showcase-card.is-spotlight {
  z-index: 5 !important;
  border-color: rgba(255,255,255,.75);
  box-shadow:
    0 32px 72px rgba(0,0,0,.5),
    0 0 56px rgba(251,191,36,.4);
}
.hero-showcase-card-1.is-spotlight {
  transform: rotate(-4deg) translateY(-6px) translateX(20px) scale(1.08);
  animation: none;
}
.hero-showcase-card-2.is-spotlight {
  transform: scale(1.3) translateY(-20px);
  animation: none;
}
.hero-showcase-card-3.is-spotlight {
  transform: rotate(4deg) translateY(-6px) translateX(-20px) scale(1.08);
  animation: none;
}
.hero-showcase-card:hover {
  z-index: 6 !important;
  animation: none;
}
.hero-showcase-card-1:hover {
  transform: rotate(-3deg) scale(1.1) translateY(-14px) translateX(18px);
}
.hero-showcase-card-2:hover {
  transform: scale(1.32) translateY(-24px);
  box-shadow:
    0 36px 80px rgba(0,0,0,.5),
    0 0 60px rgba(251,191,36,.45);
}
.hero-showcase-card-3:hover {
  transform: rotate(3deg) scale(1.1) translateY(-14px) translateX(-18px);
}
.hero-showcase-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255,255,255,.35) 48%,
    transparent 62%
  );
  transform: translateX(-120%);
  animation: heroShine 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}
.hero-showcase-card-2 .hero-showcase-shine { animation-delay: 1.2s; }
@keyframes heroShine {
  0%, 72%, 100% { transform: translateX(-120%); }
  38% { transform: translateX(120%); }
}
.hero-card-tag {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 4;
  background: var(--red);
  color: #fff;
  font-size: .78rem;
  font-weight: 900;
  padding: 5px 10px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,.35);
}
.hero-card-tag-pulse {
  animation: heroTagPulse 1.8s ease-in-out infinite;
}
@keyframes heroTagPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
.hero-card-hot {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  color: #fde68a;
  font-size: .62rem;
  font-weight: 800;
  padding: 5px 8px;
  border-radius: 8px;
  border: 1px solid rgba(251,191,36,.35);
}
.hero-card-hot i { color: #f97316; }
.hero-showcase-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  background: linear-gradient(transparent, rgba(0,0,0,.82));
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  padding: 28px 10px 10px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-visual-stats {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}
.hero-stat {
  text-align: center;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 12px 18px;
  min-width: 80px;
}
.hero-stat strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
}
.hero-stat span {
  font-size: .68rem;
  font-weight: 700;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.hero-stat-highlight {
  background: rgba(251,191,36,.2);
  border-color: rgba(251,191,36,.35);
}
.hero-stat-highlight strong { color: #fbbf24; }

.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  line-height: 0;
}
.hero-wave svg { display: block; width: 100%; height: 44px; }

@media (max-width: 991px) {
  .hero-trust-grid { grid-template-columns: repeat(4, 1fr); max-width: 100%; }
  .hero-price-box { max-width: 100%; }
  .hero-showcase { min-height: 280px; padding: 44px 0 18px; }
  .hero-showcase-aura { width: 340px; height: 340px; }
  .hero-showcase-card img { width: 128px; height: 172px; }
  .hero-showcase-card-2 img { width: 156px; height: 210px; }
  .hero-visual-badge { position: relative; margin-bottom: 12px; display: inline-flex; }
  .hero-bg-image { opacity: .16; background-position: 60% center; }
}
@media (max-width: 576px) {
  .hero-urgency-inner { gap: 10px; font-size: .7rem; }
  .hero-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-cta { width: 100%; }
  .hero-visual-stats { flex-wrap: wrap; }
  .hero-stat { flex: 1; min-width: 70px; padding: 10px 12px; }
}

/* Eski header stilleri (admin vb. için korunuyor) */
.top-bar {
  background: var(--dark);
  color: #d1d5db;
  font-size: .78rem;
  padding: 7px 0;
}
.top-bar .container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.top-bar span i { margin-right: 4px; color: var(--gold); }

.site-header {
  background: var(--red);
  padding: 14px 0;
  box-shadow: 0 2px 12px rgba(220,38,38,.35);
}
.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header .logo-text {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  letter-spacing: 1px;
}
.site-header .logo-text span { color: var(--gold); }
.site-header .site-logo-img {
  height: 36px;
  max-width: 180px;
  width: auto;
  object-fit: contain;
  display: block;
}
.site-header .site-logo-link {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

/* ============================================================
   CAMPAIGN BANNER (eski - yedek)
   ============================================================ */
.campaign-banner {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 50%, #991b1b 100%);
  color: #fff;
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
.campaign-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.banner-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
}
.banner-wave svg { display: block; width: 100%; }

.campaign-badge {
  display: inline-block;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.campaign-main-title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
}
.campaign-main-title .highlight {
  color: var(--gold);
  font-size: 1.3em;
}
.campaign-price-block {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
}
.price-big {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.price-label {
  font-size: 1rem;
  font-weight: 600;
  opacity: .9;
}
.campaign-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.feature-pill {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
}
.feature-pill i { margin-right: 5px; color: var(--gold); }

/* ============================================================
   SELECTION PROGRESS BAR (sticky)
   ============================================================ */
.selection-progress-bar {
  background: #fff;
  border-bottom: 2px solid var(--red-light);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  padding: 10px 0;
  z-index: 999;
  top: 0;
}
.selection-progress-track {
  height: 10px;
  border-radius: 10px;
  background: #fee2e2;
}
.selection-progress-track .progress-bar {
  border-radius: 10px;
}
.progress-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}
.selection-count-text { font-size: .95rem; font-weight: 700; white-space: nowrap; }
.selection-count-text .cnt { color: var(--red); font-size: 1.3rem; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  text-align: center;
  padding: 50px 0 30px;
}
.section-header h2 {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 8px;
}
.section-header p { color: var(--gray); font-size: 1rem; }
.section-header .badge-pill {
  display: inline-block;
  background: var(--red-light);
  color: var(--red);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 14px;
  border-radius: 50px;
  margin-bottom: 10px;
}

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
  border: 3px solid transparent;
  user-select: none;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.product-card.selected {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(220,38,38,.2), var(--shadow-md);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #f3f4f6;
}

/* --- Ürün galerisi --- */
.product-gallery {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.gallery-track {
  display: flex;
  height: 100%;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.gallery-slide {
  flex: 0 0 100%;
  min-width: 100%;
  height: 100%;
}
.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  cursor: pointer;
  z-index: 4;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  opacity: 0;
  transition: opacity .2s, background .15s;
}
.product-gallery:hover .gallery-nav { opacity: 1; }
.gallery-nav:hover { background: #fff; color: var(--red); }
.gallery-prev { left: 6px; }
.gallery-next { right: 42px; }

.gallery-dots {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 4;
}
.gallery-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255,255,255,.55);
  cursor: pointer;
  transition: all .2s;
}
.gallery-dot.active {
  background: #fff;
  width: 18px;
  border-radius: 4px;
}

.gallery-zoom {
  position: absolute;
  bottom: 34px;
  left: 8px;
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  cursor: pointer;
  z-index: 4;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
  transition: transform .15s;
}
.gallery-zoom:hover { transform: scale(1.1); }

.gallery-kargo-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #f97316, #ea580c);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  text-align: center;
  padding: 5px 8px;
  letter-spacing: .3px;
  z-index: 3;
}
.gallery-kargo-badge i { margin-right: 4px; }
.gallery-kargo-text {
  display: inline-block;
  transition: opacity .35s ease, transform .35s ease;
}
.gallery-kargo-text.is-changing {
  opacity: 0;
  transform: translateY(4px);
}

.product-card.selected .product-gallery::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(220,38,38,.12);
  pointer-events: none;
  z-index: 2;
}

.select-check {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px; height: 32px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
  opacity: 0;
  transform: scale(.6);
  transition: opacity .2s, transform .25s;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
  z-index: 6;
}
.product-card.selected .select-check {
  opacity: 1;
  transform: scale(1);
}

.select-number {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 26px; height: 26px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
  font-weight: 800;
  opacity: 0;
  transform: scale(.6);
  transition: opacity .2s, transform .25s;
  z-index: 6;
}
.product-card.selected .select-number {
  opacity: 1;
  transform: scale(1);
}

.product-info {
  padding: 12px 14px;
}
.product-info h3 {
  font-size: .82rem;
  font-weight: 700;
  margin: 0 0 5px;
  color: var(--dark);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-social-proof {
  font-size: .72rem;
  color: var(--gray);
  margin: 0 0 4px;
  line-height: 1.3;
}
.product-social-proof i { color: var(--red); margin-right: 3px; }
.product-social-proof strong { color: var(--red); }
.product-detail-line {
  font-size: .68rem;
  color: #9ca3af;
  margin: 0 0 4px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.original-price {
  font-size: .8rem;
  color: var(--gray);
  text-decoration: line-through;
}

.btn-add-cart {
  width: 100%;
  border: none;
  border-top: 1px solid #f3f4f6;
  background: var(--red);
  color: #fff;
  font-size: .84rem;
  font-weight: 800;
  padding: 13px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: background .2s ease, transform .15s ease;
  letter-spacing: .2px;
}
.btn-add-cart:hover {
  background: var(--red-dark);
}
.btn-add-cart:active {
  transform: scale(.98);
}
.btn-add-cart.is-selected {
  background: #16a34a;
}
.btn-add-cart.is-selected:hover {
  background: #15803d;
}

/* --- Galeri lightbox (modern popup) --- */
.gallery-lightbox .modal-backdrop {
  background: rgba(15, 23, 42, .72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.gallery-lightbox-dialog {
  max-width: min(920px, 94vw);
  margin: 1.25rem auto;
}
.gallery-lightbox-content {
  position: relative;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  background: linear-gradient(165deg, rgba(30,41,59,.96) 0%, rgba(15,23,42,.98) 100%);
  box-shadow:
    0 24px 80px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.08);
  padding: 18px 18px 16px;
  overflow: visible;
  transform-origin: center center;
}
.gallery-lightbox.show .gallery-lightbox-content {
  animation: galleryPopIn .34s cubic-bezier(.22,1,.36,1);
}
@keyframes galleryPopIn {
  from {
    opacity: 0;
    transform: scale(.94) translateY(14px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.gallery-lightbox-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 8px 24px rgba(0,0,0,.28);
  transition: transform .2s, background .2s, color .2s;
}
.gallery-lightbox-close:hover {
  transform: scale(1.06);
  background: var(--red);
  color: #fff;
}
.gallery-lightbox-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  padding: 0 4px;
}
.gallery-lightbox-title {
  margin: 0;
  color: #f8fafc;
  font-size: .95rem;
  font-weight: 800;
  line-height: 1.35;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.gallery-lightbox-counter {
  flex-shrink: 0;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .4px;
  color: #e2e8f0;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  padding: 5px 11px;
}
.gallery-lightbox-stage {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
}
.gallery-lightbox-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #0f172a;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
  min-height: 320px;
  max-height: min(68vh, 640px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-lightbox-img {
  width: 100%;
  max-height: min(68vh, 640px);
  object-fit: contain;
  display: block;
  opacity: 1;
  transform: scale(1);
  transition: opacity .28s ease, transform .35s cubic-bezier(.4,0,.2,1);
}
.gallery-lightbox-img.is-changing {
  opacity: 0;
  transform: scale(.985);
}
.gallery-lightbox-nav {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: #fff;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .2s, border-color .2s, transform .2s;
}
.gallery-lightbox-nav:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.35);
  transform: scale(1.05);
}
.gallery-lightbox-nav:disabled {
  opacity: .35;
  cursor: default;
  transform: none;
}
.gallery-lightbox-thumbs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  padding: 2px 4px 0;
  overflow-x: auto;
  scrollbar-width: thin;
}
.gallery-lightbox-thumb {
  flex: 0 0 auto;
  width: 62px;
  height: 78px;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
  background: rgba(255,255,255,.06);
  cursor: pointer;
  opacity: .72;
  transition: opacity .2s, border-color .2s, transform .2s, box-shadow .2s;
}
.gallery-lightbox-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-lightbox-thumb:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.gallery-lightbox-thumb.active {
  opacity: 1;
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(220,38,38,.25);
}

@media (max-width: 768px) {
  .gallery-nav { opacity: 1; width: 24px; height: 24px; font-size: .75rem; }
  .gallery-next { right: 38px; }

  .gallery-lightbox-dialog {
    max-width: 100%;
    margin: .75rem;
  }
  .gallery-lightbox-content {
    border-radius: 18px;
    padding: 14px 12px 12px;
  }
  .gallery-lightbox-close {
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    font-size: .9rem;
  }
  .gallery-lightbox-stage {
    grid-template-columns: 1fr;
    gap: 0;
    position: relative;
  }
  .gallery-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 36px;
    height: 36px;
    font-size: 1rem;
    background: rgba(15,23,42,.55);
  }
  .gallery-lightbox-prev { left: 8px; }
  .gallery-lightbox-next { right: 8px; }
  .gallery-lightbox-frame {
    min-height: 52vh;
    max-height: 58vh;
  }
  .gallery-lightbox-img {
    max-height: 58vh;
  }
  .gallery-lightbox-thumb {
    width: 54px;
    height: 68px;
  }
}

/* ============================================================
   ORDER FORM SECTION
   ============================================================ */
.order-section { padding-bottom: 60px; }

.form-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  margin-bottom: 20px;
}
.form-card-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-card-title i {
  width: 36px; height: 36px;
  background: var(--red-light);
  color: var(--red);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* Selected product rows in form */
.selected-product-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: var(--light-bg);
  border-radius: 12px;
  margin-bottom: 12px;
}
.selected-product-row img {
  width: 68px;
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}
.selected-product-row .product-details { flex: 1; min-width: 0; }
.selected-product-row .product-details h4 {
  font-size: .9rem;
  font-weight: 700;
  margin: 0 0 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.size-select-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.size-select-wrap label { font-size: .8rem; font-weight: 700; color: var(--gray); margin: 0; }
.size-btn-group { display: flex; gap: 6px; flex-wrap: wrap; }
.size-btn {
  padding: 4px 12px;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  background: #fff;
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .15s;
  color: var(--dark);
}
.size-btn:hover { border-color: var(--red); color: var(--red); }
.size-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

/* Form controls */
.form-floating > .form-control,
.form-floating > .form-select {
  border-radius: 12px;
  border: 1.5px solid #e5e7eb;
  font-size: .95rem;
  font-family: 'Nunito', sans-serif;
  transition: border-color .2s;
}
.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(220,38,38,.1);
}
.form-floating > label { font-size: .9rem; color: var(--gray); }

/* ============================================================
   ORDER SUMMARY SIDEBAR
   ============================================================ */
.order-summary-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  position: sticky;
  top: 70px;
}
.order-summary-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--light-bg);
}
.summary-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.summary-item img {
  width: 48px; height: 64px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.summary-item-info { flex: 1; min-width: 0; }
.summary-item-info span {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.summary-item-info small { color: var(--gray); font-size: .75rem; }

.summary-divider { border-top: 1.5px dashed #e5e7eb; margin: 16px 0; }

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .9rem;
  margin-bottom: 10px;
}
.summary-row .label { color: var(--gray); font-weight: 600; }
.summary-row .value { font-weight: 700; }

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding: 14px;
  background: var(--red-light);
  border-radius: 12px;
}
.summary-total .label { font-weight: 800; font-size: 1rem; color: var(--red); }
.summary-total .value { font-weight: 900; font-size: 1.5rem; color: var(--red); }

.btn-order {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 15px;
  font-size: 1.05rem;
  font-weight: 800;
  font-family: 'Nunito', sans-serif;
  width: 100%;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 4px 16px rgba(220,38,38,.35);
}
.btn-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(220,38,38,.45);
}
.btn-order:disabled {
  background: #d1d5db;
  box-shadow: none;
  transform: none;
  cursor: not-allowed;
}
.btn-order .spinner-border { width: 1.1rem; height: 1.1rem; }

.security-icons {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 14px;
}
.security-icon {
  text-align: center;
  font-size: .72rem;
  color: var(--gray);
  font-weight: 600;
}
.security-icon i { display: block; font-size: 1.2rem; margin-bottom: 3px; }

/* ============================================================
   CARD SIZE BUTTONS (right side of product image, like original)
   ============================================================ */
.card-sizes {
  position: absolute;
  right: 7px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 3;
  max-height: 85%;
  overflow-y: auto;
  scrollbar-width: none;
}
.card-sizes::-webkit-scrollbar { display: none; }

.card-size-btn {
  width: 30px;
  height: 24px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(4px);
  border: 1.5px solid rgba(209,213,219,.8);
  border-radius: 6px;
  font-size: .7rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .15s;
  color: #374151;
  line-height: 1;
  padding: 0;
}
.card-size-btn:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(220,38,38,.3);
}
.card-size-btn.picked {
  background: #fff;
  color: var(--red);
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(220,38,38,.25);
}
.card-size-btn.active {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  box-shadow: 0 2px 8px rgba(220,38,38,.4);
}

/* Small screens: slightly smaller */
@media (max-width: 576px) {
  .card-size-btn { width: 24px; height: 20px; font-size: .62rem; border-radius: 4px; }
  .card-sizes { gap: 3px; right: 5px; }
}

.size-count-label {
  font-size: .72rem;
  color: var(--gray);
  font-weight: 600;
  white-space: nowrap;
}

/* ============================================================
   SIZE FILTER BAR
   ============================================================ */
.size-filter-bar {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  border: 1px solid #f3f4f6;
}
.size-filter-label {
  font-size: .85rem;
  font-weight: 800;
  color: var(--dark);
  white-space: nowrap;
  padding-right: 4px;
  border-right: 2px solid var(--red-light);
  margin-right: 4px;
}
.size-filter-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.size-filter-btn {
  min-width: 42px;
  padding: 6px 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  font-size: .84rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .15s;
  color: var(--dark);
  font-family: 'Nunito', sans-serif;
  text-align: center;
  line-height: 1.2;
}
.size-filter-btn:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-light);
  transform: translateY(-1px);
}
.size-filter-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  box-shadow: 0 3px 12px rgba(220,38,38,.25);
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section { padding: 20px 0 70px; }
.faq-section .accordion-button {
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  font-size: .95rem;
  border-radius: 12px !important;
}
.faq-section .accordion-button:not(.collapsed) {
  background: var(--red-light);
  color: var(--red);
  box-shadow: none;
}
.faq-section .accordion-item {
  border: 1.5px solid #e5e7eb;
  border-radius: 12px !important;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-section .accordion-button::after {
  filter: none;
}
.faq-section .accordion-button:not(.collapsed)::after {
  filter: invert(22%) sepia(95%) saturate(3000%) hue-rotate(340deg);
}

/* ============================================================
   SUCCESS MODAL
   ============================================================ */
.success-modal-body { text-align: center; padding: 40px 30px; }
.success-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: #fff;
  animation: pop .4s ease;
}
@keyframes pop {
  0% { transform: scale(.5); opacity: 0; }
  70% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}
.order-number-box {
  background: var(--light-bg);
  border: 2px dashed var(--red);
  border-radius: 14px;
  padding: 16px 24px;
  margin: 20px 0;
}
.order-number-box .label { font-size: .82rem; color: var(--gray); font-weight: 600; margin-bottom: 4px; }
.order-number-box .number { font-size: 1.6rem; font-weight: 900; color: var(--dark); letter-spacing: 2px; }

/* ============================================================
   SIZE CHART MODAL
   ============================================================ */
.size-table { font-size: .85rem; }
.size-table th { background: var(--red); color: #fff; font-weight: 700; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  position: relative;
  background: linear-gradient(165deg, #0f172a 0%, #111827 42%, #1a1f2e 100%);
  color: #9ca3af;
  margin-top: 0;
  overflow: hidden;
}
.site-footer-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 90%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(220,38,38,.7), rgba(245,158,11,.5), transparent);
}
.site-footer-main {
  padding: 56px 0 40px;
  position: relative;
  z-index: 1;
}

.footer-brand { max-width: 340px; }
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 16px;
}
.footer-logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 8px 20px rgba(220,38,38,.35);
}
.footer-logo-text {
  font-size: 1.35rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -.3px;
}
.footer-logo-img {
  height: 44px;
  max-width: 220px;
  width: auto;
  object-fit: contain;
  display: block;
}
.footer-tagline {
  font-size: .9rem;
  line-height: 1.65;
  color: #cbd5e1;
  margin-bottom: 22px;
}
.footer-tagline strong { color: var(--gold); }

.footer-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.footer-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: .78rem;
  font-weight: 700;
  color: #e5e7eb;
}
.footer-trust-item i {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.footer-heading {
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: #fff;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(220,38,38,.45);
  display: inline-block;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li + li { margin-top: 10px; }
.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: .88rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .2s, transform .2s;
}
.footer-links a i {
  font-size: .65rem;
  color: var(--red);
  transition: transform .2s;
}
.footer-links a:hover {
  color: #fff;
}
.footer-links a:hover i { transform: translateX(3px); }

.footer-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .86rem;
  color: #cbd5e1;
  line-height: 1.5;
}
.footer-info-list li + li { margin-top: 12px; }
.footer-info-list i {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-info-list strong { color: #fff; }

.footer-contact-text {
  font-size: .86rem;
  color: #94a3b8;
  line-height: 1.55;
  margin-bottom: 16px;
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-social-btn {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.footer-social-btn:hover {
  transform: translateY(-3px);
  color: #fff;
}
.footer-social-btn.whatsapp {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow: 0 6px 18px rgba(34,197,94,.3);
}
.footer-social-btn.instagram {
  background: linear-gradient(135deg, #f43f5e, #db2777);
  box-shadow: 0 6px 18px rgba(244,63,94,.3);
}
.footer-social-btn.facebook {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  box-shadow: 0 6px 18px rgba(59,130,246,.3);
}
.footer-no-social {
  font-size: .8rem;
  color: #64748b;
  font-style: italic;
}
.footer-wa-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.35);
  color: #86efac;
  font-size: .84rem;
  font-weight: 800;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.footer-wa-cta:hover {
  background: rgba(34,197,94,.22);
  color: #bbf7d0;
}

.site-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0 28px;
  position: relative;
  z-index: 1;
}
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 24px;
}
.footer-copy {
  margin: 0;
  font-size: .82rem;
  color: #94a3b8;
}
.footer-copy strong { color: #e5e7eb; }
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
}
.footer-bottom-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 600;
  transition: color .2s;
}
.footer-bottom-links a:hover { color: #fff; }
.footer-dot { color: #475569; }
.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-payments span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  font-weight: 700;
  color: #64748b;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 999px;
  padding: 6px 12px;
}
.footer-payments i { color: var(--gold); }

@media (max-width: 991px) {
  .site-footer-main { padding: 44px 0 32px; }
  .footer-brand { max-width: 100%; margin-bottom: 8px; }
}
@media (max-width: 576px) {
  .site-footer-main { padding: 36px 0 28px; }
  .footer-trust-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-payments { justify-content: center; }
}

/* ============================================================
   TRACKING PAGE
   ============================================================ */
.tracking-card {
  max-width: 600px;
  margin: 60px auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.tracking-header {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  padding: 30px;
  text-align: center;
  color: #fff;
}
.tracking-header h2 { font-weight: 900; margin-bottom: 4px; }
.tracking-body { padding: 30px; }

.status-timeline { list-style: none; padding: 0; margin: 0; }
.status-timeline li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  position: relative;
}
.status-timeline li:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 36px;
  width: 2px;
  height: calc(100% + 0px);
  background: #e5e7eb;
}
.status-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
  z-index: 1;
}
.status-icon.active { background: var(--red); color: #fff; box-shadow: 0 0 0 3px rgba(220,38,38,.2); }
.status-icon.done { background: #22c55e; color: #fff; }
.status-icon.pending { background: #e5e7eb; color: #9ca3af; }
.status-label { font-weight: 700; font-size: .9rem; }
.status-sublabel { font-size: .8rem; color: var(--gray); }

/* ============================================================
   ADMIN PANEL
   ============================================================ */
.admin-sidebar {
  width: 240px;
  min-height: 100vh;
  background: var(--dark);
  position: fixed;
  left: 0; top: 0;
  padding: 24px 16px;
  z-index: 100;
}
.admin-sidebar .brand {
  color: #fff;
  font-weight: 900;
  font-size: 1.1rem;
  padding: 8px 12px 24px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 16px;
}
.admin-sidebar .brand span { color: var(--gold); }
.admin-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  color: #9ca3af;
  text-decoration: none;
  font-weight: 600;
  font-size: .9rem;
  transition: all .15s;
  margin-bottom: 4px;
}
.admin-nav-link:hover, .admin-nav-link.active {
  background: rgba(220,38,38,.2);
  color: #fff;
}
.admin-nav-link.active { color: #fca5a5; }
.admin-content { margin-left: 240px; padding: 30px; min-height: 100vh; }
.admin-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
.admin-top-bar h1 { font-size: 1.4rem; font-weight: 900; margin: 0; }

.admin-filter-panel {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 18px 20px;
  margin-bottom: 20px;
  border: 1px solid rgba(15,23,42,.05);
}
.admin-filter-panel .filter-title {
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: #9ca3af;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.admin-filter-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.admin-filter-actions .btn-filter {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 800;
  font-size: .86rem;
  padding: 10px 18px;
}
.admin-filter-actions .btn-filter:hover { color: #fff; opacity: .95; }
.admin-filter-actions .btn-filter-reset {
  border: 1.5px solid #e5e7eb;
  background: #fff;
  color: #4b5563;
  border-radius: 10px;
  font-weight: 700;
  font-size: .86rem;
  padding: 10px 16px;
  text-decoration: none;
}
.admin-filter-actions .btn-filter-reset:hover {
  background: #f9fafb;
  color: #111827;
}
.admin-filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.admin-filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
  border-radius: 999px;
  padding: 5px 12px;
  font-size: .75rem;
  font-weight: 700;
}

.stat-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
  border-left: 4px solid var(--red);
}
.stat-card .stat-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.stat-card .stat-value { font-size: 1.8rem; font-weight: 900; line-height: 1; margin-bottom: 4px; }
.stat-card .stat-label { font-size: .85rem; color: var(--gray); font-weight: 600; }

.status-badge {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
}
.status-yeni          { background: #dbeafe; color: #1d4ed8; }
.status-hazirlaniyor  { background: #fef3c7; color: #d97706; }
.status-kargoda       { background: #d1fae5; color: #059669; }
.status-teslim_edildi { background: #dcfce7; color: #16a34a; }
.status-iptal         { background: #fee2e2; color: #dc2626; }

/* ============================================================
   UTILITY
   ============================================================ */
.text-red { color: var(--red) !important; }
.bg-red-light { background: var(--red-light) !important; }

.btn-red {
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 8px 20px;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  cursor: pointer;
  transition: background .15s;
}
.btn-red:hover { background: var(--red-dark); color: #fff; }

/* Scroll margin for anchor links */
#orderSection { scroll-margin-top: 60px; }
#urunler      { scroll-margin-top: 60px; }

/* Mobile adjustments */
@media (max-width: 768px) {
  .campaign-main-title { font-size: 2rem; }
  .price-big { font-size: 2.8rem; }
  .admin-sidebar { display: none; }
  .admin-content { margin-left: 0; padding: 20px; }
  .form-card { padding: 18px; }
  .order-summary-card { position: static; }
}

/* WhatsApp yüzen buton */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9990;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .45);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.whatsapp-float:hover {
  color: #fff;
  background: #1ebe57;
  transform: scale(1.08);
  box-shadow: 0 12px 28px rgba(37, 211, 102, .55);
}
@media (max-width: 768px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
    font-size: 1.75rem;
  }
}

@media (max-width: 576px) {
  .top-bar .container { gap: 1rem; font-size: .72rem; }
  .selected-product-row { flex-wrap: wrap; }
}

/* Tema önizleme çubuğu (admin) */
.theme-preview-bar {
  position: sticky;
  top: 0;
  z-index: 1100;
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  color: #fff;
  font-size: .84rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(37,99,235,.35);
}
.theme-preview-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  flex-wrap: wrap;
}
.theme-preview-bar-inner i { margin-right: 6px; }
.theme-preview-bar-link {
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
.theme-preview-bar-link:hover {
  background: #fff;
  color: #1d4ed8;
}
body.is-theme-preview { scroll-padding-top: 48px; }
