/* ==========================================
   Red & Black Theme
   ========================================== */

:root {
  --black: #0A0A0A;
  --surface: #111111;
  --surface-2: #1A1A1A;
  --surface-3: #222222;
  --border: #2A2A2A;
  --red: #C62828;
  --red-bright: #E53935;
  --red-dark: #8E0000;
  --red-glow: rgba(198, 40, 40, 0.3);
  --orange: #FF6F00;
  --green: #2E7D32;
  --text: #FAFAFA;
  --text-dim: #B0B0B0;
  --text-muted: #707070;
  --white: #FFFFFF;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
}

/* Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

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

/* ==========================================
   HEADER
   ========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 140px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo-img {
  width: 260px;
  height: 260px;
  object-fit: contain;
}

.burger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  width: 52px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}

.burger:hover {
  border-color: var(--red);
  background: var(--surface-3);
}

.burger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: currentColor;
  transition: all 0.3s;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 8px;
}

.nav-mobile.active {
  display: flex;
}

.nav-mobile .nav-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dim);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

.nav-mobile .nav-link:hover,
.nav-mobile .nav-link.active {
  color: var(--white);
  background: var(--surface-2);
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.header-phone:hover {
  color: var(--red);
}

.cart-btn {
  position: relative;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  padding: 12px 14px;
  cursor: pointer;
  transition: all 0.2s;
}

.cart-btn:hover {
  border-color: var(--red);
  background: var(--surface-3);
}

.cart-btn.cart-bounce {
  animation: cart-bounce 0.5s ease;
}

@keyframes cart-bounce {
  0% { transform: scale(1); }
  20% { transform: scale(1.25); }
  40% { transform: scale(0.9); }
  60% { transform: scale(1.1); }
  80% { transform: scale(0.95); }
  100% { transform: scale(1); }
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================
   PAGE SECTION
   ========================================== */
.main-content {
  flex: 1;
  padding-bottom: 90px;
}

.page-section {
  padding: 160px 0 80px;
  min-height: calc(100vh - 200px);
}

/* ==========================================
   HERO
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, var(--red-glow) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(255, 111, 0, 0.1) 0%, transparent 40%),
    linear-gradient(180deg, var(--black) 0%, var(--surface) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}

.hero-badge {
  display: inline-block;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--red-bright);
  margin-bottom: 32px;
}

.hero-title {
  font-size: clamp(48px, 10vw, 96px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero-accent {
  color: var(--red);
  background: linear-gradient(135deg, var(--red), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 64px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--red-bright);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--red-glow);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--text-dim);
  background: var(--surface-2);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

.btn-full {
  width: 100%;
}

.btn-danger {
  background: var(--red-dark);
  color: var(--white);
}

.btn-danger:hover {
  background: var(--red);
}

.hero-stats {
  display: flex;
  gap: 48px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  cursor: pointer;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ==========================================
   SECTION HEADERS
   ========================================== */
.section-header {
  text-align: left;
  margin-bottom: 2px;
}

.section-tag {
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  margin-bottom: 0;
}

.section-title-sm {
  font-size: clamp(16px, 3vw, 24px);
  text-align: left;
}

.section-desc {
  font-size: 16px;
  color: var(--text-dim);
  max-width: 500px;
  margin: 0 auto;
}

/* ==========================================
   MENU
   ========================================== */
.menu-section {
  padding: 148px 0 8px;
}

/* ==========================================
   DISHES SECTION
   ========================================== */
.dishes-section {
  padding: 150px 0 40px;
  background: var(--surface);
  min-height: 100vh;
}

.dishes-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 20px;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 13px;
  background: var(--red);
  color: var(--white);
  border: 1px solid var(--red);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}

.btn-back:hover {
  background: var(--red-bright);
  border-color: var(--red-bright);
}

.dishes-empty-text {
  text-align: center;
  color: var(--text-muted);
  padding: 40px 0;
}

.dishes-bottom-back {
  display: flex;
  justify-content: flex-start;
  margin-top: 32px;
}

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

/* ==========================================
   Category Cards
   ========================================== */
.category-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 0;
}

.category-card {
  position: relative;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(198, 40, 40, 0.2);
}

.category-card-large {
  position: relative;
}

.category-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.category-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 8px 12px;
  background: linear-gradient(rgba(0,0,0,0.7), transparent);
}

.category-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red-bg);
  border-radius: 50%;
  color: var(--red);
}

.category-card-large .category-card-icon {
  margin-top: 20px;
}

.category-card-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-align: left;
}

.category-card-count {
  font-size: 13px;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .category-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .category-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .category-card-img {
    height: 160px;
  }
}

.menu-filters {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover {
  border-color: var(--text-dim);
  color: var(--white);
}

.filter-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

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

.menu-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
}

.menu-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.menu-card-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.menu-card-img-png {
  object-fit: cover;
  background: var(--surface-3);
}

.menu-card-img-placeholder {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, var(--surface-2) 0%, var(--surface-3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-card-img-placeholder svg {
  color: var(--text-muted);
  opacity: 0.3;
}

.menu-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px;
  background: linear-gradient(rgba(0,0,0,0.6), transparent 30%, transparent 50%, rgba(0,0,0,0.85));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
}

.menu-card-top {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  text-align: left;
  line-height: 1 !important;
  pointer-events: auto;
}

.menu-card-category {
  font-size: 12px;
  font-weight: 600;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
}

.menu-card-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.1 !important;
  text-align: left;
}

.menu-card-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  text-align: left;
  line-height: 1.2 !important;
  margin: 0 !important;
  padding: 0 !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.menu-card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  pointer-events: auto;
}

.menu-card-btns {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
  pointer-events: auto;
}

.menu-card-img-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.menu-card-price {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  line-height: 1;
}

.menu-card-price span {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
}

.menu-card-weight-note {
  width: 100%;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  font-style: italic;
  margin-top: 1px;
}

.wt-mobile {
  display: none;
}

.add-to-cart-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  border: none;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.add-to-cart-btn:hover {
  background: var(--red-bright);
  transform: scale(1.1);
}

.menu-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
  font-size: 16px;
}

/* ==========================================
   ABOUT
   ========================================== */
.about-section {
  padding: 100px 0;
  background: var(--surface);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content .section-tag,
.about-content .section-title {
  text-align: left;
}

.about-text {
  font-size: 16px;
  color: var(--text-dim);
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 16px;
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}

.feature-text {
  font-size: 16px;
  font-weight: 600;
}

.about-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fire-element {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--red) 0%, var(--red-dark) 40%, transparent 70%);
  border-radius: 50%;
  animation: fire-pulse 3s ease-in-out infinite;
  filter: blur(2px);
}

@keyframes fire-pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 1; }
}

/* ==========================================
   CONTACTS
   ========================================== */
.contacts-section {
  padding: 100px 0;
}

.contacts-info {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  font-size: 16px;
}

.contact-row svg {
  color: var(--red);
  flex-shrink: 0;
}

.contact-row a {
  color: var(--red-bright);
  transition: color 0.2s;
}

.contact-row a:hover {
  color: var(--white);
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-iframe {
  width: 100%;
  height: 550px;
  display: block;
  border: none;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  height: auto;
  min-height: 70px;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.footer-codes {
  display: flex;
  justify-content: flex-end;
  padding: 0 24px 16px;
}

.footer-codes:empty {
  display: none;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 14px;
}

.footer-copy a {
  color: var(--red-bright);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-copy a:hover {
  color: var(--white);
}

/* ==========================================
   CART SIDEBAR
   ========================================== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  max-width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: var(--surface);
  border-left: 1px solid var(--border);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
}

.cart-sidebar.active {
  right: 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: 20px;
  font-weight: 700;
}

.cart-close {
  background: none;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  padding: 4px;
}

.cart-close:hover {
  color: var(--white);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.cart-empty {
  text-align: center;
  padding: 40px 0;
  color: var(--text-muted);
}

.cart-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.cart-item-left {
  width: 33%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  border-radius: var(--radius-sm);
  overflow: hidden;
  min-height: 80px;
}

.cart-item-img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.cart-item-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.cart-item-name {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.cart-item-price {
  font-size: 14px;
  color: var(--red-bright);
  font-weight: 600;
  margin-bottom: 8px;
}

.cart-item-desc {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 6px;
  display: none;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-qty-btn {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--red);
  border: none;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.cart-qty-btn:hover {
  background: var(--red-bright);
}

.cart-qty {
  font-size: 15px;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  align-self: flex-start;
}

.cart-item-remove:hover {
  color: var(--red);
}

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}

.cart-summary {
  margin-bottom: 16px;
}

.cart-summary-row {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

/* ==========================================
   TOAST NOTIFICATIONS
   ========================================== */
.toast-container {
  position: fixed;
  top: 88px;
  right: 24px;
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toast {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  min-width: 280px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: toast-in 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.toast.success {
  border-color: #2E7D32;
}

.toast.error {
  border-color: var(--red);
}

.toast-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.toast-text {
  font-size: 14px;
  font-weight: 500;
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ==========================================
   ADMIN LINK (small, corner)
   ========================================== */
.admin-link {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
}

.admin-link a {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  transition: all 0.2s;
}

.admin-link a:hover {
  border-color: var(--red);
  color: var(--white);
}

/* ==========================================
   DELIVERY TOGGLE & PHONE
   ========================================== */
.cart-delivery-toggle {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.delivery-btn {
  flex: 1;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.delivery-btn:hover {
  border-color: var(--text-dim);
  color: var(--white);
}

.delivery-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.delivery-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.cart-delivery-off {
  padding: 12px 16px;
  background: var(--surface-2);
  border: 1px solid var(--orange);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}

.cart-delivery-off p {
  color: var(--orange);
  font-size: 13px;
  margin: 0;
}

.cart-form-field {
  margin-bottom: 12px;
}

.cart-form-field input {
  width: 100%;
  padding: 12px 16px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.cart-form-field textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
  font-family: inherit;
}

.cart-phone input:focus {
  border-color: var(--red);
}

/* ==========================================
   MODAL
   ========================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
}

/* ==========================================
   ORDER CONFIRMATION MODAL
   ========================================== */
.order-modal {
  max-width: 600px;
}

.order-confirm {
  text-align: center;
}

.order-confirm-icon {
  margin-bottom: 16px;
}

.order-confirm h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.order-wait {
  color: var(--text-dim);
  margin-bottom: 24px;
}

.order-details {
  text-align: left;
  background: var(--surface-2);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 24px;
  max-height: 50vh;
  overflow-y: auto;
}

.order-items-list {
  padding: 8px 0;
}

.order-item-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}

.order-item-row:last-child {
  border-bottom: none;
}

.order-total-row {
  border-top: 2px solid var(--border);
  margin-top: 8px;
  padding-top: 10px;
  font-weight: 700;
  font-size: 16px;
}

.order-comment-row {
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-dim);
  border-top: 1px solid var(--border);
  margin-top: 8px;
}

.order-info-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.order-info-row:last-child {
  border-bottom: none;
}

.order-label {
  color: var(--text-dim);
}

.order-value {
  font-weight: 600;
}

.order-items-list {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.order-item-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 14px;
}

.order-total-row {
  padding-top: 12px;
  font-size: 18px;
}

.order-thanks {
  color: var(--text-dim);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.order-confirm h2 {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--text);
}

.order-wait {
  color: var(--text-dim);
  font-size: 15px;
  margin-bottom: 16px;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 768px) {
  .header-inner {
    height: 100px;
  }

  .logo-img {
    width: 180px;
    height: 180px;
  }

  .header-phone span {
    display: none;
  }

  .header-phone svg {
    width: 24px;
    height: 24px;
  }

  .burger {
    display: flex;
  }

  .nav-mobile {
    padding: 12px 16px 20px;
  }

  .section-header {
    margin-bottom: 2px;
  }

  .section-title {
    font-size: 24px;
  }

  .category-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .category-card-img {
    height: 120px;
  }

  .category-card-overlay {
    padding: 4px 8px;
  }

  .category-card-name {
    font-size: 13px;
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    align-items: start;
  }

  .menu-card-img {
    height: 140px;
  }

  .menu-card-img-placeholder {
    height: 140px;
  }

  .menu-card-overlay {
    padding: 6px;
  }

  .menu-card-name {
    font-size: 14px;
    text-align: left;
  }

  .menu-card-desc {
    font-size: 11px;
    text-align: left;
  }

  .menu-card-price {
    font-size: 16px;
  }

  .menu-card-price span {
    font-size: 12px;
  }

  .menu-card-weight-note {
    font-size: 10px;
  }

  .wt-full {
    display: none;
  }

  .wt-mobile {
    display: inline;
  }

  .btn-back {
    padding: 6px 10px;
    font-size: 11px;
  }

  .dishes-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .page-section {
    padding: 120px 0 60px;
  }

  .menu-section {
    padding: 100px 0 8px;
  }

  .dishes-section {
    padding: 100px 0 24px;
  }

  .section-header {
    margin-bottom: 2px;
  }

  .contact-row {
    font-size: 14px;
    gap: 10px;
  }

  .about-features {
    flex-direction: column;
    gap: 16px;
  }

  .footer {
    height: 70px;
  }

  .footer-logo {
    width: 48px;
    height: 48px;
  }

  .footer-copy {
    font-size: 13px;
  }

  .cart-sidebar {
    width: 100%;
  }

  .order-modal {
    max-width: 95vw;
    padding: 24px 16px;
  }

  .order-confirm-icon img {
    width: 80px !important;
    height: 80px !important;
  }

  .cart-item-desc {
    display: block;
  }

  .map-iframe {
    height: 400px;
  }
}

@media (max-width: 480px) {
  .header-inner {
    height: 80px;
  }

  .logo-img {
    width: 140px;
    height: 140px;
  }

  .cart-btn {
    padding: 10px 12px;
  }

  .category-card-img {
    height: 140px;
  }

  .section-title {
    font-size: 20px;
  }

  .map-iframe {
    height: 350px;
  }

  .contact-row {
    font-size: 13px;
  }
}

/* ==========================================
   BLOG
   ========================================== */
.blog-section {
  padding: 160px 0 80px;
  min-height: 100vh;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 15px;
  margin-top: 8px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: var(--red);
  transform: translateY(-2px);
}

.blog-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--surface-3);
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.blog-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-date {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.blog-card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.blog-card-excerpt {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
  flex: 1;
}

/* Article Page */
.article-page {
  padding: 160px 0 80px;
  min-height: 100vh;
}

.article-container {
  max-width: 800px;
  margin: 0 auto;
}

.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.article-breadcrumb a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.article-breadcrumb a:hover {
  color: var(--text);
}

.article-hero-img {
  width: 100%;
  max-height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
}

.article-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}

.article-date {
  font-size: 14px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 32px;
}

.article-content {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-dim);
}

.article-content p {
  margin-bottom: 16px;
}

.article-content h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin: 32px 0 16px;
}

.article-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin: 24px 0 12px;
}

.article-content img {
  max-width: 100%;
  border-radius: var(--radius-sm);
  margin: 16px 0;
}

.article-content a {
  color: var(--red-bright);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card-img {
    height: 160px;
  }

  .article-title {
    font-size: 24px;
  }

  .article-content {
    font-size: 15px;
  }
}

/* ==========================================
   SCROLL REVEAL ANIMATION
   ========================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   REDUCED MOTION
   ========================================== */
/* ==========================================
   PAGE GALLERY
   ========================================== */
.page-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.page-gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}

.page-hero img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .page-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .page-gallery-item img {
    height: 160px;
  }
}

@media (max-width: 480px) {
  .page-gallery {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .page-gallery-item img {
    height: 200px;
  }
}

/* ==========================================
   REDUCED MOTION
   ========================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
