/* ========================================
   CUSTOMER INTERFACE STYLES
   ======================================== */

/* --- Splash Screen --- */
.splash {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.splash.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.splash-content {
  text-align: center;
}
.splash-logo {
  animation: splashPulse 2s ease-in-out infinite;
}
.splash-logo-img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  margin: 0 auto 16px;
  display: block;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 30px rgba(196,30,58,0.3));
}
.splash-tagline {
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 500;
}
.splash-loader {
  margin-top: 32px;
}
.loader-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.loader-dots span {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: dotBounce 1.4s ease-in-out infinite;
}
.loader-dots span:nth-child(2) { animation-delay: 0.2s; }
.loader-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes splashPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}
@keyframes dotBounce {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
  40% { transform: scale(1); opacity: 1; }
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 0;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(13,10,8,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text-primary);
  white-space: nowrap;
}
.nav-logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
  mix-blend-mode: screen;
  border-radius: var(--radius-md);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}
.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
  background: var(--glass-light);
}
.nav-link.active {
  color: var(--red-light);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lang-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.cart-btn {
  position: relative;
}
.cart-count {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: var(--red);
  color: white;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-spring);
}
.cart-count.bump {
  animation: cartBump 0.4s var(--ease-spring);
}
@keyframes cartBump {
  0% { transform: scale(1); }
  50% { transform: scale(1.4); }
  100% { transform: scale(1); }
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.hamburger span {
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  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 {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 24px 60px;
  max-width: 1280px;
  margin: 0 auto;
  gap: 40px;
}
.hero-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(196,30,58,0.12), transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(255,215,0,0.06), transparent 50%),
    var(--bg-dark);
}
.floating-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.float-item {
  position: absolute;
  font-size: 2rem;
  opacity: 0.08;
  animation: floatItem 20s ease-in-out infinite;
}
.f1 { top: 15%; right: 10%; animation-delay: 0s; }
.f2 { top: 60%; right: 25%; animation-delay: -4s; font-size: 1.5rem; }
.f3 { top: 30%; left: 15%; animation-delay: -8s; }
.f4 { top: 75%; left: 10%; animation-delay: -12s; font-size: 1.8rem; }
.f5 { top: 45%; right: 45%; animation-delay: -16s; font-size: 1.4rem; }

@keyframes floatItem {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(20px, -30px) rotate(5deg); }
  50% { transform: translate(-10px, 20px) rotate(-3deg); }
  75% { transform: translate(15px, 10px) rotate(4deg); }
}

.hero-content {
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: var(--radius-full);
  color: #22c55e;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}
.badge-dot {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}
.title-line {
  display: block;
}
.title-line.accent {
  color: var(--red);
  background: linear-gradient(135deg, var(--red), var(--red-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
  animation: fadeInUp 0.8s ease-out 0.7s both;
}
.hero-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease-out 0.9s both;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s ease-out 1.1s both;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: fadeInUp 0.8s ease-out 1.3s both;
}
.stat {
  text-align: center;
}
.stat-number {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-primary);
}
.stat-plus {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold);
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  animation: fadeInUp 1s ease-out 0.6s both;
}
.hero-plate {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1;
}
.plate-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(196,30,58,0.15), transparent 70%);
  border-radius: 50%;
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
.plate-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(196,30,58,0.3);
  box-shadow: var(--shadow-xl), var(--shadow-glow-red);
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10%;
}
.plate-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s var(--ease-out);
  filter: drop-shadow(0 4px 20px rgba(196,30,58,0.3));
  mix-blend-mode: screen;
}
.hero-plate:hover .plate-image img {
  transform: scale(1.08);
}
.plate-badge {
  position: absolute;
  bottom: 10%;
  right: -10%;
  background: var(--gold);
  color: var(--bg-dark);
  padding: 12px 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), var(--shadow-glow-gold);
  text-align: center;
  animation: floatBadge 3s ease-in-out infinite;
}
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.badge-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.7;
}
.badge-price {
  display: block;
  font-size: 1.4rem;
  font-weight: 900;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  animation: fadeInUp 1s ease-out 1.5s both;
}
.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--text-muted);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.scroll-dot {
  width: 3px;
  height: 8px;
  background: var(--red);
  border-radius: 3px;
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { opacity: 0; transform: translateY(-4px); }
  50% { opacity: 1; transform: translateY(4px); }
}

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

/* --- Featured Section --- */
.featured {
  padding: 80px 0;
  position: relative;
}
.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

/* --- Menu Section --- */
.menu-section {
  padding: 80px 0 100px;
  position: relative;
}

.menu-tabs {
  display: flex;
  gap: 8px;
  justify-content: flex-start;
  flex-wrap: nowrap;
  margin-bottom: 40px;
  padding: 6px;
  background: var(--bg-surface);
  border-radius: var(--radius-full);
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.menu-tabs::-webkit-scrollbar { display: none; }
.tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.tab:hover {
  color: var(--text-primary);
}
.tab.active {
  background: var(--red);
  color: white;
  box-shadow: 0 2px 12px rgba(196,30,58,0.3);
}
.tab-icon {
  font-size: 1.1rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

/* --- Menu Card --- */
.menu-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}
.menu-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196,30,58,0.2);
  box-shadow: var(--shadow-lg);
}
.card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.menu-card:hover .card-image img {
  transform: scale(1.08);
}
.card-badges {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  gap: 6px;
}
.card-badge {
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}
.badge-popular {
  background: rgba(255,215,0,0.9);
  color: var(--bg-dark);
}
.badge-new {
  background: rgba(34,197,94,0.9);
  color: white;
}
.badge-calories {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 4px 10px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  color: var(--text-secondary);
}
.card-body {
  padding: 16px 20px 20px;
}
.card-name {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.card-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--red);
}
.card-price .currency {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}
.card-add {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--red);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-spring);
  font-size: 1.3rem;
}
.card-add:hover {
  transform: scale(1.1) rotate(90deg);
  background: var(--red-light);
}

/* --- About Section --- */
.about-section {
  padding: 80px 0;
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-content .section-badge {
  margin-bottom: 16px;
}
.about-content .section-title {
  text-align: start;
  margin-bottom: 20px;
}
.about-text {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.9;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
.feature {
  display: flex;
  gap: 12px;
  align-items: start;
}
.feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(196,30,58,0.1);
  border-radius: var(--radius-md);
}
.feature-text h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.feature-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.about-visual {
  position: relative;
}
.about-images {
  position: relative;
  height: 500px;
}
.about-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: absolute;
  box-shadow: var(--shadow-lg);
}
.main-img {
  width: 70%;
  height: 80%;
  top: 0;
  right: 0;
}
.main-img img,
.secondary-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.secondary-img {
  width: 50%;
  height: 40%;
  bottom: 0;
  left: 0;
  border: 4px solid var(--bg-dark);
}
.about-card {
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translateY(-50%);
  background: var(--red);
  color: white;
  padding: 20px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg), var(--shadow-glow-red);
}
.card-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
}
.card-text {
  font-size: 0.85rem;
  opacity: 0.9;
}

/* --- Contact Section --- */
.contact-section {
  padding: 80px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.contact-card:hover {
  border-color: rgba(196,30,58,0.2);
  transform: translateY(-2px);
}
.contact-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.contact-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

/* --- Cart Sidebar --- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}
.cart-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 400px;
  max-width: 90vw;
  background: var(--bg-dark);
  border-right: 1px solid var(--border);
  z-index: 3001;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: var(--transition-spring);
}
.cart-sidebar.active {
  transform: translateX(0);
}
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.cart-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
}
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: var(--text-muted);
}
.empty-icon {
  font-size: 3rem;
  margin-bottom: 12px;
  opacity: 0.5;
}
.cart-empty p {
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 4px;
}
.cart-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  animation: fadeInUp 0.3s ease-out;
}
.cart-item-img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
}
.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-item-info {
  flex: 1;
  min-width: 0;
}
.cart-item-name {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 2px;
}
.cart-item-extras {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.cart-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-item-price {
  font-weight: 700;
  color: var(--red);
  font-size: 0.9rem;
}
.cart-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart-qty button {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: var(--transition);
}
.cart-qty button:hover {
  border-color: var(--red);
  color: var(--red);
}
.cart-qty span {
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}
.cart-item-remove {
  color: var(--text-muted);
  font-size: 0.75rem;
  margin-top: 4px;
  cursor: pointer;
  transition: var(--transition);
}
.cart-item-remove:hover {
  color: var(--red);
}
.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}
.cart-summary {
  margin-bottom: 16px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.summary-row.total {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-primary);
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}

/* --- Item Modal --- */
.modal-image {
  position: relative;
  height: 260px;
  overflow: hidden;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-badges {
  position: absolute;
  bottom: 12px;
  right: 12px;
}
.calorie-badge {
  padding: 4px 12px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  color: var(--text-secondary);
}
.modal-body {
  padding: 24px;
}
.modal-body h2 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.modal-body > p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.modal-price {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--red);
  margin-bottom: 24px;
}
.modal-extras h4,
.modal-notes h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-secondary);
}
.extras-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.extra-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
}
.extra-chip:hover {
  border-color: var(--red);
}
.extra-chip.selected {
  background: rgba(196,30,58,0.15);
  border-color: var(--red);
  color: var(--red-light);
}
.extra-price {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.modal-notes {
  margin-bottom: 24px;
}
.modal-notes textarea {
  width: 100%;
  padding: 12px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  resize: none;
  outline: none;
  font-family: var(--font-ar);
}
.modal-notes textarea:focus {
  border-color: var(--red);
}
.modal-quantity {
  display: flex;
  align-items: center;
  gap: 16px;
}
.qty-control {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 6px 8px;
}
.qty-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
  color: var(--text-primary);
}
.qty-btn:hover {
  background: var(--red);
  color: white;
}
.qty-value {
  font-weight: 700;
  font-size: 1.1rem;
  min-width: 30px;
  text-align: center;
}
.btn-add {
  flex: 1;
  justify-content: space-between;
  padding: 14px 24px;
}
.add-price {
  font-weight: 800;
}

/* --- Checkout Modal --- */
.checkout-content {
  max-width: 560px;
  padding: 32px;
}
.checkout-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 32px;
}
.step {
  display: flex;
  align-items: center;
  gap: 8px;
}
.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
}
.step.active .step-num {
  background: var(--red);
  border-color: var(--red);
  color: white;
}
.step.completed .step-num {
  background: #22c55e;
  border-color: #22c55e;
  color: white;
}
.step-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}
.step.active .step-text {
  color: var(--text-primary);
}
.step-line {
  width: 40px;
  height: 2px;
  background: var(--border);
  margin: 0 8px;
}
.checkout-step-content {
  display: none;
}
.checkout-step-content.active {
  display: block;
  animation: fadeInUp 0.3s ease-out;
}
.checkout-step-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.order-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.order-type {
  cursor: pointer;
}
.order-type input { display: none; }
.type-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 16px;
  background: var(--bg-surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.order-type.active .type-card,
.order-type input:checked + .type-card {
  border-color: var(--red);
  background: rgba(196,30,58,0.1);
}
.type-icon {
  font-size: 1.8rem;
}
.type-name {
  font-size: 0.85rem;
  font-weight: 600;
}
.order-summary {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.checkout-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
}
.checkout-actions .btn {
  flex: 1;
}

/* --- Success Modal --- */
.success-content {
  text-align: center;
  padding: 40px 32px;
  max-width: 440px;
}
.success-animation {
  margin-bottom: 24px;
}
.success-circle {
  display: inline-block;
}
.success-ring {
  stroke-dasharray: 227;
  stroke-dashoffset: 227;
  animation: drawRing 0.8s ease-out 0.2s forwards;
}
.success-check {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: drawCheck 0.5s ease-out 0.8s forwards;
}
@keyframes drawRing {
  to { stroke-dashoffset: 0; }
}
@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}
.success-content h2 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.success-content > p {
  color: var(--text-secondary);
  margin-bottom: 4px;
}
.success-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.order-tracker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 28px;
}
.tracker-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.tracker-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 2px solid var(--border);
  transition: var(--transition);
}
.tracker-step.active .tracker-dot {
  background: #22c55e;
  border-color: #22c55e;
  box-shadow: 0 0 12px rgba(34,197,94,0.4);
}
.tracker-step span {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.tracker-step.active span {
  color: #22c55e;
  font-weight: 600;
}
.tracker-line {
  width: 40px;
  height: 2px;
  background: var(--border);
  margin: 0 8px;
  margin-bottom: 20px;
}

/* --- Footer --- */
.footer {
  padding: 40px 0 24px;
  border-top: 1px solid var(--border);
}
.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 4px;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--red);
}
.footer-social {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition);
}
.social-link:hover {
  background: var(--red);
  border-color: var(--red);
  color: white;
  transform: translateY(-2px);
}
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 120px;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-visual {
    order: -1;
  }
  .hero-plate {
    max-width: 300px;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-visual {
    order: -1;
  }
  .about-images {
    height: 360px;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(13,10,8,0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 16px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.active {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .featured-grid {
    grid-template-columns: 1fr 1fr;
  }
  .menu-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .order-types {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .featured-grid,
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }
  .menu-tabs {
    border-radius: var(--radius-lg);
    overflow-x: auto;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .menu-tabs::-webkit-scrollbar { display: none; }
  .tab {
    padding: 8px 14px;
    font-size: 0.8rem;
    flex-shrink: 0;
  }
  .modal-quantity {
    flex-direction: column;
  }
  .qty-control {
    width: 100%;
    justify-content: center;
  }
  .btn-add {
    width: 100%;
  }
}
