/* =====================
   VARIABLES & RESET
======================== */
:root {
  --red: #e81c1c;
  --red-dark: #c0151a;
  --yellow: #ffc300;
  --yellow-dark: #e6a800;
  --dark: #1a1a1a;
  --dark2: #2c2c2c;
  --gray: #f5f5f5;
  --text: #333;
  --white: #fff;
  --whatsapp: #25d366;
  --whatsapp-dark: #1da851;
  --radius: 12px;
  --shadow: 0 4px 20px rgba(0,0,0,0.12);
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

/* =====================
   BUTTONS
======================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}
.btn-whatsapp:hover { background: var(--whatsapp-dark); transform: translateY(-2px); }

.btn-call {
  background: var(--yellow);
  color: var(--dark);
  font-weight: 700;
}
.btn-call:hover { background: var(--yellow-dark); transform: translateY(-2px); }

.w-full { width: 100%; justify-content: center; }
.mt-1 { margin-top: 8px; }

/* =====================
   NAVBAR
======================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--dark);
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 68px;
}

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.logo span { color: var(--yellow); }

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: 16px;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--yellow); }

.nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-btn {
  position: relative;
  background: var(--red);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}
.cart-btn:hover { background: var(--red-dark); transform: scale(1.05); }

@keyframes cart-bounce {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.3); }
  70%  { transform: scale(0.9); }
  100% { transform: scale(1); }
}
.cart-bounce { animation: cart-bounce 0.35s ease; }

/* =====================
   LANG SWITCHER
======================== */
.lang-switcher { position: relative; }

.lang-current {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
}
.lang-current:hover { background: rgba(255,255,255,0.2); }
.lang-current .fa-chevron-down { font-size: 0.65rem; opacity: 0.7; }

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  overflow: hidden;
  min-width: 140px;
  z-index: 2000;
  display: none;
}
.lang-dropdown.open { display: block; }

.lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark);
  text-align: left;
  transition: background var(--transition);
}
.lang-option:hover { background: var(--gray); }
.lang-option.active { background: #fff0f0; color: var(--red); font-weight: 700; }

/* RTL support */
[dir="rtl"] .nav-inner,
[dir="rtl"] .hero-btns,
[dir="rtl"] .card-footer,
[dir="rtl"] .cart-item,
[dir="rtl"] .contact-list li,
[dir="rtl"] .footer-inner { flex-direction: row-reverse; }
[dir="rtl"] .cart-sidebar { right: auto; left: 0; transform: translateX(-100%); }
[dir="rtl"] .cart-sidebar.open { transform: translateX(0); }
[dir="rtl"] .float-whatsapp { left: auto; right: 28px; }
[dir="rtl"] .lang-dropdown { right: auto; left: 0; }

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--yellow);
  color: var(--dark);
  font-size: 0.65rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger {
  display: none;
  color: var(--white);
  font-size: 1.4rem;
  margin-left: auto;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: var(--dark2);
  padding: 16px 20px;
}
.mobile-menu a {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu.open { display: flex; }

/* =====================
   HERO
======================== */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--dark) 0%, #3a0000 60%, #5c1000 100%);
  overflow: hidden;
  padding: 80px 0;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1568901346375-23c9450c58cd?w=1400&q=70') center/cover no-repeat;
  opacity: 0.12;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.hero-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 5px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--yellow); }

.hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* =====================
   SECTION TITLE
======================== */
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 48px;
  color: var(--dark);
}
.section-title span { color: var(--red); }

/* =====================
   HOW IT WORKS
======================== */
.how-it-works {
  padding: 80px 0;
  background: var(--gray);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

.step {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.step:hover { transform: translateY(-6px); }

.step-icon {
  width: 64px;
  height: 64px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
  color: var(--white);
}
.step:nth-child(3) .step-icon { background: var(--whatsapp); }
.step:nth-child(4) .step-icon { background: var(--yellow); color: var(--dark); }

.step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}
.step p { color: #666; font-size: 0.9rem; }

/* =====================
   MENU
======================== */
.menu-section {
  padding: 80px 0;
  background: var(--white);
}

.category-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.cat-btn {
  padding: 8px 20px;
  border-radius: 50px;
  border: 2px solid #ddd;
  background: var(--white);
  color: var(--text);
  font-weight: 600;
  font-size: 0.88rem;
  transition: var(--transition);
}
.cat-btn:hover, .cat-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

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

.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: 0 8px 30px rgba(0,0,0,0.15); }

.menu-card-img {
  height: 180px;
  overflow: hidden;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.menu-card:hover .menu-card-img img { transform: scale(1.07); }

.menu-card-img .img-placeholder {
  font-size: 4rem;
}

.menu-card-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.menu-card-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.menu-card-body p {
  font-size: 0.82rem;
  color: #777;
  line-height: 1.5;
  flex: 1;
  margin-bottom: 14px;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--red);
}
.price.tbd { font-size: 0.85rem; color: #999; font-weight: 500; }

.add-to-cart {
  background: var(--red);
  color: var(--white);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}
.add-to-cart:hover { background: var(--red-dark); transform: scale(1.1); }

/* =====================
   WHY US
======================== */
.why-us {
  padding: 80px 0;
  background: var(--dark);
}

.why-us .section-title { color: var(--white); }
.why-us .section-title span { color: var(--yellow); }

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.reason {
  text-align: center;
  padding: 36px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  transition: var(--transition);
}
.reason:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }

.reason i {
  font-size: 2.2rem;
  color: var(--yellow);
  margin-bottom: 16px;
}
.reason h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 8px; }
.reason p { color: rgba(255,255,255,0.6); font-size: 0.88rem; }

/* =====================
   CONTACT
======================== */
.contact-section {
  padding: 80px 0;
  background: var(--gray);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.contact-info h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--dark);
}
.contact-info h2 span { color: var(--red); }
.contact-info > p { color: #666; margin-bottom: 28px; line-height: 1.7; }

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}
.contact-list i {
  width: 38px;
  height: 38px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-list .fa-whatsapp { background: var(--whatsapp); }
.contact-list .fa-instagram { background: #e1306c; }
.contact-list a { color: var(--text); }
.contact-list a:hover { color: var(--red); }

.contact-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: var(--radius);
  align-self: flex-start;
  transition: var(--transition);
}
.map-link:hover { background: var(--red-dark); transform: translateY(-2px); }

/* =====================
   FOOTER
======================== */
.footer {
  background: var(--dark);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer .logo { font-size: 1.2rem; color: var(--white); }
.footer .logo span { color: var(--yellow); }
.footer p { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.footer-credit { font-size: 0.78rem !important; margin-top: 4px; }
.footer-credit a { color: var(--yellow); text-decoration: none; }
.footer-credit a:hover { text-decoration: underline; }

.footer-links {
  display: flex;
  gap: 16px;
}
.footer-links a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  transition: var(--transition);
}
.footer-links a:hover { background: var(--red); color: var(--white); }
.footer-links a:nth-child(2):hover { background: var(--whatsapp); }
.footer-links a:nth-child(3):hover { background: #e1306c; }

/* =====================
   FLOAT WHATSAPP
======================== */
.float-whatsapp {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 58px;
  height: 58px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 900;
  transition: transform var(--transition);
  animation: pulse-whatsapp 2.5s infinite;
}
.float-whatsapp:hover { transform: scale(1.12); }

@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 28px rgba(37,211,102,0.7); }
}

/* =====================
   CART SIDEBAR
======================== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 380px;
  max-width: 100vw;
  height: 100%;
  background: var(--white);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -4px 0 20px rgba(0,0,0,0.15);
}
.cart-sidebar.open { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px;
  background: var(--dark);
  color: var(--white);
}
.cart-header h3 { font-size: 1.1rem; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.cart-header button { color: rgba(255,255,255,0.7); font-size: 1.2rem; transition: color var(--transition); }
.cart-header button:hover { color: var(--white); }

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

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 100%;
  color: #bbb;
  text-align: center;
}
.cart-empty i { font-size: 3rem; }
.cart-empty p { font-size: 1rem; }

.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}
.cart-item-emoji { font-size: 2rem; flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-info h5 { font-size: 0.9rem; font-weight: 600; color: var(--dark); margin-bottom: 2px; }
.cart-item-info .removed-list { font-size: 0.75rem; color: var(--red); margin-bottom: 2px; }
.cart-item-info span { font-size: 0.82rem; color: var(--red); font-weight: 700; }

.qty-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}
.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  transition: var(--transition);
}
.qty-btn:hover { background: var(--red); color: var(--white); }
.qty-btn.remove-btn:hover { background: #ff4444; }
.qty-btn.delete-btn:hover { background: #ff4444; color: var(--white); }
.qty-num { font-weight: 700; font-size: 0.95rem; min-width: 20px; text-align: center; }

.cart-footer {
  padding: 20px;
  border-top: 2px solid var(--gray);
  background: var(--white);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
}
.cart-total strong { font-size: 1.3rem; color: var(--red); }

/* =====================
   ITEM DETAIL MODAL
======================== */
.item-modal {
  background: var(--white);
  border-radius: 16px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  transform: scale(0.95);
  transition: transform 0.3s ease;
  position: relative;
}
.modal-overlay.open .item-modal { transform: scale(1); }

.item-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  width: 36px;
  height: 36px;
  background: rgba(0,0,0,0.5);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition);
}
.item-modal-close:hover { background: var(--red); }

.item-modal-img {
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.item-modal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.item-modal-emoji { font-size: 5rem; }

.item-modal-body { padding: 24px; }
.item-modal-body h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}
.item-modal-body p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.ingredients-section {
  margin-bottom: 20px;
}
.ingredients-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.ingredients-title span {
  font-weight: 400;
  color: #999;
}
.ingredients-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ingredient-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--gray);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  user-select: none;
}
.ingredient-chip.removed {
  background: #ffe5e5;
  border-color: var(--red);
  color: var(--red);
  text-decoration: line-through;
}
.ingredient-chip i { font-size: 0.7rem; }

.item-modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.item-modal-footer .price { font-size: 1.4rem; }

/* =====================
   ORDER MODAL
======================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.order-modal {
  background: var(--white);
  border-radius: 16px;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}
.modal-overlay.open .order-modal { transform: scale(1); }

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--dark);
  color: var(--white);
  border-radius: 16px 16px 0 0;
}
.modal-header h3 { font-size: 1.1rem; display: flex; align-items: center; gap: 8px; }
.modal-header button { color: rgba(255,255,255,0.7); font-size: 1.2rem; transition: color var(--transition); }
.modal-header button:hover { color: var(--white); }

#orderForm { padding: 24px; }

.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color var(--transition);
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
}

.payment-options {
  display: flex;
  gap: 12px;
}

.payment-option {
  flex: 1;
  cursor: pointer;
}

.payment-option input { display: none; }

.payment-option span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  color: #666;
}

.payment-option input:checked + span {
  border-color: var(--red);
  background: #fff0f0;
  color: var(--red);
}

.payment-option span:hover { border-color: #bbb; }

.payment-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff8e1;
  color: #b7880a;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: 18px;
  border: 1px solid #ffc300;
}

.order-summary {
  background: var(--gray);
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 18px;
  font-size: 0.85rem;
  color: var(--dark);
}
.order-summary h4 { font-weight: 700; margin-bottom: 8px; }
.order-summary ul { display: flex; flex-direction: column; gap: 4px; }
.order-summary li { display: flex; justify-content: space-between; }
.order-summary .summary-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  color: var(--red);
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #ddd;
}

/* =====================
   RESPONSIVE
======================== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-actions .btn-call { display: none; }
  .hamburger { display: block; }

  .contact-grid { grid-template-columns: 1fr; }
  .map-placeholder { height: 220px; }

  .footer-inner { justify-content: center; text-align: center; }

  .hero { min-height: 500px; padding: 60px 0; }
}

/* =====================
   ADDRESS GRID
======================== */
.addr-grid { display: flex; flex-direction: column; gap: 8px; }
.addr-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.addr-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.addr-grid input {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  transition: border-color var(--transition);
  background: var(--white);
}
.addr-grid input:focus { outline: none; border-color: var(--red); }
.addr-grid input[readonly] { background: #f5f5f5; color: #888; cursor: default; }

/* Location button */
.btn-location {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px dashed #ccc;
  color: #555;
  padding: 10px 16px;
  border-radius: 10px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  width: 100%;
  justify-content: center;
  transition: all var(--transition);
}
.btn-location:hover { border-color: var(--red); color: var(--red); }
.btn-location.loc-ok { border-color: #4caf50; color: #4caf50; border-style: solid; }
.btn-location.loc-fail { border-color: #ff5722; color: #ff5722; border-style: solid; }
.location-status { font-size: 0.8rem; color: #888; margin-top: 4px; text-align: center; }

/* =====================
   CART TOAST
======================== */
.cart-toast {
  position: fixed;
  bottom: -90px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  color: var(--white);
  padding: 12px 16px 12px 14px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  transition: bottom 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
  white-space: nowrap;
  max-width: calc(100vw - 32px);
}
.cart-toast.show { bottom: 24px; }
.cart-toast-icon { color: #4caf50; font-size: 1.1rem; flex-shrink: 0; }
#cartToastMsg { font-size: 0.88rem; font-weight: 500; overflow: hidden; text-overflow: ellipsis; }
.cart-toast-btn {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 6px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.82rem;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: 'Poppins', sans-serif;
  transition: background var(--transition);
}
.cart-toast-btn:hover { background: var(--red-dark); }

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }

  .cart-sidebar { width: 100vw; }
}
