:root {
  --bg-body: #fdfdfd;
  --bg-card: #ffffff;
  --bg-chip: #f3f4f6;
  --bg-chip-active: #d71920; /* Oses kırmızısı */
  --border-soft: rgba(209, 213, 219, 0.9);
  --text-main: #111827;
  --text-muted: #6b7280;
  --accent: #d71920;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-soft: 0 14px 30px rgba(15, 23, 42, 0.15);
  /* Kampanya kutusundaki “%50 bedava” yazısı — boyut (ör. 1.05 = %5 büyük, 1.15 = %15) */
  --pk-em-font-size: 1.3em;
  /* Kampanya kutusu sağ üst büyük “%50” (.pk-pct-num) — rem veya px */
  --pk-pct-num-size: 2.2rem;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #fefce8 0, #fef2f2 45%, #f9fafb 100%);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

.app {
  min-height: 100vh;
  max-width: 480px;
  margin: 0 auto;
  padding: 16px 14px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 14px 16px 12px;
  margin: -8px -8px 0;
  backdrop-filter: blur(18px);
  background: linear-gradient(
      120deg,
      rgba(0, 143, 61, 0.12),
      transparent 50%
    ),
    rgba(255, 255, 255, 0.92);
  border-radius: 0 0 24px 24px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
}

.hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.order-button {
  border: none;
  outline: none;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  background: linear-gradient(135deg, #d71920, #f97316);
  color: #f9fafb;
  text-decoration: none;
  box-shadow: 0 10px 18px rgba(220, 38, 38, 0.4);
  white-space: nowrap;
  cursor: pointer;
}

.order-button:active {
  transform: scale(0.96);
}

.order-button:focus-visible {
  outline: 2px solid rgba(34, 197, 94, 0.9);
  outline-offset: 2px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero-logo {
  height: 44px;
  width: auto;
  border-radius: 10px;
}

.brand-name {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

.category-chips {
  margin-top: 4px;
  padding: 8px 2px 0;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.category-chips::-webkit-scrollbar {
  display: none;
}

.chip {
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: var(--bg-chip);
  color: var(--text-muted);
  border-radius: 999px;
  padding: 7px 13px;
  font-size: 0.78rem;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.16s ease-out;
}

.chip.active {
  background: linear-gradient(135deg, #d71920, #f97316);
  border-color: transparent;
  color: #f9fafb;
  box-shadow: 0 10px 20px rgba(220, 38, 38, 0.35);
}

.chip:active {
  transform: scale(0.96);
}

main {
  padding-top: 2px;
}

.menu-section {
  margin-top: 18px;
}

.section-title {
  margin: 0 0 10px;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.menu-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.menu-card {
  display: flex;
  gap: 10px;
  padding: 10px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.menu-image {
  width: 92px;
  height: 92px;
  border-radius: 16px;
  object-fit: cover;
  flex-shrink: 0;
  background: #f3f4f6;
  cursor: pointer;
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out;
}

.menu-image:active {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.25);
}

.image-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 40;
}

.image-lightbox.open {
  display: flex;
}

.image-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(10px);
}

.image-lightbox-img {
  position: relative;
  max-width: 92vw;
  max-height: 70vh;
  border-radius: 18px;
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.85);
}

.menu-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 6px;
  min-width: 0;
}

.menu-name {
  margin: 0;
  font-size: 0.95rem;
}

.menu-desc {
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.menu-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu-price {
  font-weight: 600;
  color: var(--accent);
  font-size: 0.95rem;
}

.menu-tag {
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 999px;
  background: #ecfdf5;
  border: 1px solid rgba(34, 197, 94, 0.5);
  color: #166534;
}

/* Paket günleri kampanyası (10 / 20 / 30) */
.paket-kampanya-spotlight {
  position: relative;
  margin: 0 0 14px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 2px solid rgba(251, 191, 36, 0.85);
  box-shadow:
    0 0 0 1px rgba(215, 25, 32, 0.35),
    0 18px 40px rgba(180, 30, 40, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  background: linear-gradient(
    145deg,
    #7f1d1d 0%,
    #d71920 35%,
    #ea580c 70%,
    #b45309 100%
  );
}

.pk-glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle at 30% 20%,
    rgba(254, 243, 199, 0.55) 0%,
    transparent 45%
  );
  pointer-events: none;
  animation: pk-shimmer 5s ease-in-out infinite;
}

@keyframes pk-shimmer {
  0%,
  100% {
    opacity: 0.65;
    transform: translate(0, 0) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(4%, 2%) scale(1.05);
  }
}

.pk-inner {
  position: relative;
  padding: 14px 14px 12px;
  color: #fffaf0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.pk-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.pk-ribbon {
  display: inline-flex;
  align-items: center;
  letter-spacing: 0.14em;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fef3c7;
}

.pk-pct {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1;
  flex-shrink: 0;
}

.pk-pct-num {
  font-size: var(--pk-pct-num-size);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fef08a;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.35));
}

.pk-pct-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  opacity: 0.95;
  margin-top: 2px;
}

.pk-dates {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.pk-date {
  display: inline-flex;
  min-width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.pk-date-num {
  font-size: 1.05rem;
  font-weight: 700;
}

.pk-dot {
  font-weight: 700;
  opacity: 0.85;
  font-size: 1.1rem;
}

.pk-title {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
}

.pk-desc {
  margin: 0 0 10px;
  font-size: 0.78rem;
  line-height: 1.45;
  text-align: center;
  opacity: 0.97;
}

.pk-desc strong {
  color: #fef9c3;
  font-weight: 600;
}

.pk-em {
  display: inline-block;
  padding: 1px 6px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.2);
  font-weight: 800;
  font-size: var(--pk-em-font-size);
  color: #fef08a;
  text-shadow:
    0 0 5px rgba(254, 240, 138, 0.28),
    0 1px 2px rgba(0, 0, 0, 0.28);
}

.pk-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
  padding-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.pk-thumb {
  width: 88px;
  height: 88px;
  border-radius: 16px;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.pk-foot {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.pk-note {
  margin: 0;
  font-size: 0.68rem;
  line-height: 1.4;
  opacity: 0.92;
}

.pk-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
  color: #7f1d1d;
  background: linear-gradient(180deg, #fef3c7, #fde68a);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.pk-cta:active {
  transform: scale(0.98);
}

.pk-cta:focus-visible {
  outline: 2px solid #fef08a;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .pk-glow {
    animation: none;
  }
}

/* Alt kısım sade bırakıldı */

@media (min-width: 520px) {
  .app {
    padding-top: 24px;
  }

  .hero {
    margin-top: 0;
    border-radius: 22px;
  }
}

