/* ============================================================
   PizzaScuro — Ana Stil Dosyası
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700&family=Dancing+Script:wght@600;700&display=swap');

/* ─── CSS Değişkenleri ─── */
:root {
  --primary:      #C0392B;
  --primary-dark: #922B21;
  --primary-light:#E74C3C;
  --accent:       #F39C12;
  --accent-dark:  #D68910;
  --dark:         #1A0A00;
  --dark-2:       #2C1810;
  --dark-3:       #3D2314;
  --surface:      #FFF8F0;
  --surface-2:    #FDEBD0;
  --text:         #2C1810;
  --text-muted:   #7F6E60;
  --text-light:   #BDA99A;
  --white:        #FFFFFF;
  --border:       rgba(192,57,43,0.15);
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:    0 8px 28px rgba(0,0,0,0.12);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.18);
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    22px;
  --radius-xl:    32px;
  --transition:   0.3s cubic-bezier(0.4,0,0.2,1);
  --hepha-filter: brightness(0);
}

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

/* ─── HEADER ─── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26,10,0,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(192,57,43,0.3);
  transition: var(--transition);
}
.header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  font-size: 2.2rem;
  line-height: 1;
  animation: spin-logo 8s linear infinite;
}
@keyframes spin-logo {
  0%,100% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #F39C12, #E74C3C, #F39C12);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}
.logo-slogan {
  font-family: 'Dancing Script', cursive;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(192,57,43,0.25);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}
.header-phone:hover { color: var(--accent); border-color: var(--accent); }
.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 3px 12px rgba(192,57,43,0.4);
}
.cart-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(192,57,43,0.5); }
.cart-badge {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--accent);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  display: none;
}
.cart-badge.visible { display: flex; }

.theme-toggle-btn {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
}
.theme-toggle-btn:hover {
  background: rgba(255,255,255,0.2);
  transform: rotate(15deg);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  width: 24px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── HERO SECTION ─── */
.hero {
  padding-top: 70px;
  min-height: 60vh;
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark-2) 40%, #4A1C0C 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(192,57,43,0.2) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(243,156,18,0.1) 0%, transparent 60%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: repeating-linear-gradient(
    45deg,
    white 0, white 1px,
    transparent 0, transparent 50%
  );
  background-size: 24px 24px;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 20px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(243,156,18,0.15);
  border: 1px solid rgba(243,156,18,0.3);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: 16px;
}
.hero-title span {
  background: linear-gradient(135deg, var(--accent), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); font-weight: 500; }
.hero-pizza {
  font-size: clamp(6rem, 12vw, 10rem);
  animation: float-pizza 4s ease-in-out infinite;
  line-height: 1;
  flex-shrink: 0;
}
@keyframes float-pizza {
  0%,100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-15px) rotate(5deg); }
}

/* ─── ANNOUNCEMENT BAR ─── */
.announcement {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--primary-dark));
  background-size: 200% auto;
  animation: slide-bg 4s linear infinite;
  padding: 10px 20px;
  text-align: center;
  color: white;
  font-size: 0.88rem;
  font-weight: 500;
}
@keyframes slide-bg {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ─── MENU SECTION ─── */
.menu-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 20px;
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-tag {
  display: inline-block;
  background: rgba(192,57,43,0.1);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid rgba(192,57,43,0.2);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 3px;
  margin: 12px auto 0;
}

/* ─── KATEGORİ FİLTRE ─── */
.category-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 36px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.category-tabs::-webkit-scrollbar { display: none; }
.cat-tab {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  background: white;
  border: 2px solid var(--border);
  transition: var(--transition);
  white-space: nowrap;
}
.cat-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.cat-tab.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-color: transparent;
  color: white;
  box-shadow: 0 4px 16px rgba(192,57,43,0.35);
}
.cat-tab .tab-icon { font-size: 1.1rem; }

/* ─── MENU GRID ─── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(192,57,43,0.3);
}
.product-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, #FFF0E6, #FFE0C8);
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.08); }
.product-emoji-bg {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
.featured-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: linear-gradient(135deg, var(--accent), #E67E22);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.product-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}
.product-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  flex: 1;
}
.product-ingredients {
  font-size: 0.78rem;
  color: var(--text-light);
  font-style: italic;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  background: rgba(255,248,240,0.5);
}
.product-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  font-family: 'Playfair Display', serif;
}
.add-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 3px 10px rgba(192,57,43,0.3);
}
.add-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 16px rgba(192,57,43,0.45);
}
.add-btn svg { transition: transform 0.2s; }
.add-btn:hover svg { transform: rotate(90deg); }

/* ─── ÖNE ÇIKANLAR ─── */
.featured-section {
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 60px 0;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}
.featured-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(192,57,43,0.15) 0%, transparent 70%);
}
.featured-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
.featured-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 12px;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}
.featured-scroll::-webkit-scrollbar { display: none; }
.featured-card {
  flex-shrink: 0;
  width: 260px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
  scroll-snap-align: start;
  backdrop-filter: blur(10px);
}
.featured-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(192,57,43,0.4);
  transform: translateY(-4px);
}
.featured-card .feat-emoji { font-size: 3.5rem; margin-bottom: 12px; }
.featured-card .feat-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}
.featured-card .feat-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent);
}
.featured-card .feat-add-btn {
  margin-top: 14px;
  width: 100%;
  padding: 9px;
  border-radius: var(--radius-sm);
  background: rgba(192,57,43,0.3);
  border: 1px solid rgba(192,57,43,0.5);
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}
.featured-card .feat-add-btn:hover {
  background: var(--primary);
  box-shadow: 0 4px 16px rgba(192,57,43,0.4);
}

/* ─── ALIŞ VERİŞ SEPETİ (DRAWER) ─── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(4px);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(420px, 100vw);
  height: 100vh;
  background: white;
  z-index: 2001;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0,0,0,0.2);
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  color: white;
}
.cart-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
}
.cart-close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 1.2rem;
  transition: var(--transition);
}
.cart-close:hover { background: rgba(192,57,43,0.3); }
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.cart-empty .empty-icon { font-size: 4rem; opacity: 0.4; }
.cart-item {
  display: flex;
  gap: 12px;
  align-items: center;
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 12px;
  border: 1px solid var(--border);
  animation: slideIn 0.3s ease;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
.cart-item-emoji { font-size: 2rem; flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 600; font-size: 0.9rem; color: var(--dark); margin-bottom: 2px; }
.cart-item-price { font-size: 0.85rem; color: var(--primary); font-weight: 700; }
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px 6px;
}
.qty-btn {
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-size: 1rem;
  font-weight: 700;
  transition: var(--transition);
}
.qty-btn:hover { background: var(--primary-dark); }
.qty-btn.minus { background: #E0E0E0; color: var(--text-muted); }
.qty-btn.minus:hover { background: #BDBDBD; }
.qty-val { font-weight: 700; font-size: 0.9rem; min-width: 20px; text-align: center; }
.cart-footer {
  padding: 20px 24px;
  border-top: 2px solid var(--border);
  background: var(--surface);
}
.cart-summary { margin-bottom: 16px; }
.cart-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.cart-row.total {
  border-top: 1px dashed var(--border);
  margin-top: 8px;
  padding-top: 12px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
}
.cart-row.total .total-price { color: var(--primary); font-size: 1.3rem; }
.order-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(192,57,43,0.35);
}
.order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(192,57,43,0.5);
}

/* ─── ORDER MODAL ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(6px);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: white;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: transform 0.3s;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}
.modal-overlay.open .modal-box { transform: scale(1); }
.modal-head {
  padding: 24px 28px;
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.modal-head h2 {
  font-family: 'Playfair Display', serif;
  color: white;
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.modal-head p { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.modal-body { padding: 24px 28px; }
.form-group { margin-bottom: 16px; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-input, .form-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  transition: var(--transition);
  background: var(--surface);
}
.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.1);
}
.form-textarea { resize: vertical; min-height: 80px; }
.order-summary-box {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 16px;
  border: 1px solid var(--border);
}
.order-summary-box h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.order-item-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding: 4px 0;
  color: var(--text-muted);
}
.order-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: 800;
  padding-top: 10px;
  margin-top: 8px;
  border-top: 1px dashed var(--border);
  color: var(--primary);
}
.submit-order-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(192,57,43,0.35);
}
.submit-order-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(192,57,43,0.45); }

/* ─── YORUMLAR ─── */
.reviews-section {
  background: white;
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.reviews-inner { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.reviews-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 36px;
  justify-content: center;
  flex-wrap: wrap;
}
.review-tab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid transparent;
  transition: var(--transition);
  color: var(--text-muted);
  background: var(--surface);
}
.review-tab-btn.active[data-platform="google"] {
  background: #4285F4;
  color: white;
  border-color: #4285F4;
}
.review-tab-btn.active[data-platform="instagram"] {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: white;
  border-color: transparent;
}
.review-tab-btn:hover:not(.active) {
  border-color: var(--border);
  background: white;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 20px;
}
.review-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 22px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.reviewer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.reviewer-info { flex: 1; }
.reviewer-name { font-weight: 700; font-size: 0.95rem; color: var(--dark); }
.reviewer-date { font-size: 0.78rem; color: var(--text-light); }
.review-stars { color: #F39C12; font-size: 0.85rem; letter-spacing: 1px; }
.review-text { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
.platform-icon { font-size: 1.2rem; flex-shrink: 0; }

/* ─── FOOTER ─── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
}
.footer-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 20px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}
.footer-brand .logo-name { font-size: 1.8rem; }
.footer-brand .logo-slogan { font-size: 0.9rem; margin-bottom: 16px; }
.footer-about { font-size: 0.88rem; line-height: 1.7; opacity: 0.7; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 1rem;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
}
.footer-col h4 {
  font-family: 'Playfair Display', serif;
  color: white;
  font-size: 1rem;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--accent); padding-left: 6px; }
.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.87rem;
}
.footer-contact-item .fc-icon { color: var(--accent); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: var(--accent); }

/* ─── FLOATING CART BUTTON (mobile) ─── */
.floating-cart {
  display: none;
  position: fixed;
  bottom: 24px; right: 20px;
  z-index: 999;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border-radius: 100px;
  padding: 14px 22px;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 6px 24px rgba(192,57,43,0.5);
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  animation: pulse-btn 2s infinite;
}
@keyframes pulse-btn {
  0%, 100% { box-shadow: 0 6px 24px rgba(192,57,43,0.5); }
  50% { box-shadow: 0 8px 32px rgba(192,57,43,0.7); }
}
.floating-cart.visible { display: flex; }
.floating-cart:hover { transform: scale(1.05); }

/* ─── TOAST BİLDİRİM ─── */
.toast-container { position: fixed; bottom: 90px; right: 20px; z-index: 5000; display: flex; flex-direction: column; gap: 10px; }
.toast {
  background: var(--dark-2);
  color: white;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 500;
  box-shadow: var(--shadow-md);
  animation: toast-in 0.4s ease, toast-out 0.4s ease 2.5s forwards;
  max-width: 280px;
  border-left: 3px solid var(--primary);
}
.toast.success { border-left-color: #27AE60; }
@keyframes toast-in { from { opacity: 0; transform: translateX(30px); } }
@keyframes toast-out { to { opacity: 0; transform: translateX(30px); } }

/* ─── ÇALIŞMA SAATLERİ ─── */
.hours-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--dark-2));
  padding: 28px 0;
}
.hours-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.hour-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 0.9rem;
}
.hour-item .h-icon { font-size: 1.3rem; opacity: 0.8; }
.hour-item strong { font-weight: 700; }

/* ─── RESPONSİVE ─── */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .header-phone { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-pizza { display: none; }
  .products-grid { grid-template-columns: 1fr; }
  .floating-cart.visible { display: flex; }
  .cart-btn .cart-label { display: none; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px; }
  .featured-card { width: 220px; }
}
@media (max-width: 480px) {
  .section-title { font-size: 1.6rem; }
  .hero-title { font-size: 2rem; }
  .products-grid { grid-template-columns: 1fr; gap: 16px; }
  .cart-drawer { width: 100vw; }
}

/* ─── MOBILE NAV ─── */
.mobile-nav {
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: rgba(26,10,0,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-110%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  border-bottom: 1px solid rgba(192,57,43,0.3);
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav .nav-link { padding: 12px 16px; font-size: 1rem; display: block; border-radius: var(--radius-sm); }
.mobile-nav .mobile-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 16px;
  margin-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ─── YÜKLEME ANİMASYONU ─── */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% auto;
  animation: skeleton-wave 1.5s infinite;
  border-radius: var(--radius-sm);
}
@keyframes skeleton-wave { 0% { background-position: 0% center; } 100% { background-position: 200% center; } }

/* ─── SCROLL TO TOP ─── */
.scroll-top {
  position: fixed;
  bottom: 24px; left: 20px;
  z-index: 999;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--dark-2);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--primary); transform: translateY(-3px); }

/* ─── WELCOME SCREEN ─── */
.hide-welcome #welcomeScreen { display: none !important; }

.welcome-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #0f0a08;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.welcome-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(192,57,43,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 100%, rgba(243,156,18,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.welcome-overlay.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.welcome-box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 360px;
  text-align: center;
  animation: wFadeUp 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes wFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Logo alanı ── */
.welcome-logo-wrap {
  margin-bottom: 20px;
}

.welcome-logo-img {
  height: 72px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.4));
}

.welcome-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #F5C842, #E74C3C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.welcome-tagline {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 36px;
}

/* ── Buton listesi ── */
.welcome-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wl-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 16px 18px;
  border-radius: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: left;
}

.wl-btn span {
  flex: 1;
}

.wl-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.wl-arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity 0.2s, transform 0.2s;
}

.wl-btn:hover .wl-arrow {
  opacity: 1;
  transform: translateX(3px);
}

.wl-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

/* Menü */
.wl-menu {
  background: rgba(192, 57, 43, 0.08);
  border-color: rgba(192, 57, 43, 0.2);
  color: var(--primary-dark);
}
.wl-menu:hover {
  background: rgba(192, 57, 43, 0.15);
  border-color: rgba(192, 57, 43, 0.4);
}

/* Instagram */
.wl-ig {
  background: rgba(188, 24, 136, 0.08);
  border-color: rgba(188, 24, 136, 0.2);
  color: #bc1888;
}
.wl-ig:hover {
  background: rgba(188, 24, 136, 0.15);
  border-color: rgba(188, 24, 136, 0.4);
}

/* Google Maps */
.wl-maps {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.1);
  color: var(--text);
}
.wl-maps:hover {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.2);
}

/* ─── DARK THEME OVERRIDES ─── */
html.dark-theme {
  --surface:      #0C0704;
  --surface-2:    #170D08;
  --text:         #EFDFD5;
  --text-muted:   #B8A599;
  --dark:         #FFFFFF;
  --dark-2:       #E8DED8;
  --border:       rgba(243, 156, 18, 0.15);
}

/* Base changes */
html.dark-theme .cat-tab,
html.dark-theme .product-card,
html.dark-theme .cart-drawer,
html.dark-theme .modal-box,
html.dark-theme .cart-item-qty,
html.dark-theme .form-input:focus,
html.dark-theme .form-textarea:focus {
  background-color: #1A0F0A;
  color: var(--text);
  border-color: rgba(255,255,255,0.1);
}

html.dark-theme .cart-item,
html.dark-theme .cart-footer,
html.dark-theme .order-summary-box,
html.dark-theme .form-input,
html.dark-theme .form-textarea,
html.dark-theme .product-footer {
  background-color: #0C0704;
  color: var(--text);
  border-color: rgba(255,255,255,0.08);
}

/* Components */
html.dark-theme .cat-tab:hover,
html.dark-theme .cat-tab.active {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
}

html.dark-theme .product-img-wrap {
  background: linear-gradient(135deg, #1A0F0A, #2C1810);
}

html.dark-theme .cart-header,
html.dark-theme .modal-head {
  background: linear-gradient(135deg, #1C100A, #0C0704);
  color: #fff;
}

html.dark-theme .add-btn,
html.dark-theme .order-btn,
html.dark-theme .feat-add-btn {
  color: #fff;
}

/* Texts targeting --dark internally */
html.dark-theme .section-title,
html.dark-theme .product-name,
html.dark-theme .cart-item-name,
html.dark-theme .cart-row.total,
html.dark-theme .w-maps {
  color: var(--dark);
}

/* Fix mobile nav */
html.dark-theme .mobile-nav {
  background: rgba(12, 7, 4, 0.98);
}

/* Welcome Screen Dark Overrides */
html.dark-theme .welcome-tagline {
  color: rgba(255, 255, 255, 0.35);
  font-weight: 400;
}
html.dark-theme .wl-menu {
  background: rgba(192, 57, 43, 0.15);
  border-color: rgba(192, 57, 43, 0.35);
  color: #F5C842;
}
html.dark-theme .wl-menu:hover {
  background: rgba(192, 57, 43, 0.25);
  border-color: rgba(192, 57, 43, 0.6);
}
html.dark-theme .wl-ig {
  background: rgba(188, 24, 136, 0.12);
  border-color: rgba(188, 24, 136, 0.3);
  color: #f8a4d4;
}
html.dark-theme .wl-ig:hover {
  background: rgba(188, 24, 136, 0.22);
  border-color: rgba(188, 24, 136, 0.55);
}
html.dark-theme .wl-maps {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
}
html.dark-theme .wl-maps:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  color: white;
}

html.dark-theme {
  --hepha-filter: brightness(0) invert(1);
}
