/* ============================================================
   Corner Grill 17 — styles.css
============================================================ */

:root {
  --bg: #0A0A0A;
  --bg-alt: #1C1C1C;
  --bg-footer: #050505;
  --red: #D0102A;
  --red-dark: #7A0C1A;
  --white: #FFFFFF;
  --gold: #FFD700;
  --font-title: 'Bebas Neue', 'Oswald', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --radius: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }

.section-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 1px;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 70px; height: 4px;
  background: linear-gradient(90deg, var(--red), var(--red-dark));
  border-radius: 4px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(208, 16, 42, 0.15);
  border: 1px solid var(--red);
  color: var(--white);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(30px) scale(0.98); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0) scale(1); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.9rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}
.btn-red { background: linear-gradient(135deg, var(--red), var(--red-dark)); color: var(--white); box-shadow: 0 8px 24px rgba(208,16,42,0.35); }
.btn-outline { background: transparent; border: 2px solid var(--white); color: var(--white); }
.btn:hover { transform: translateY(-3px); }
.btn-red:hover { box-shadow: 0 12px 30px rgba(208,16,42,0.55); }
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.btn:hover::before { left: 130%; }

/* ============================================================
   Navbar
============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 1000;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--red);
  transition: padding 0.3s ease;
}
.navbar.scrolled { box-shadow: 0 6px 24px rgba(0,0,0,0.5); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.6rem 1.25rem;
  max-width: 1300px;
  margin: 0 auto;
}

.nav-logo { display: flex; align-items: center; gap: 0.6rem; }
.nav-logo img { height: 50px; width: 50px; object-fit: contain; }
.nav-logo span { font-family: var(--font-title); font-size: 1.3rem; letter-spacing: 1px; display: none; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}
.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 0.3rem 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 0.7rem; }

.btn-phone-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(208,16,42,0.45);
}
.btn-phone-nav .phone-full { display: inline; }
.btn-phone-nav .phone-short { display: none; }

.lang-toggle {
  display: flex;
  background: var(--bg-alt);
  border: 1px solid var(--red);
  border-radius: 999px;
  overflow: hidden;
}
.lang-pill {
  padding: 0.4rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  transition: background 0.25s ease, color 0.25s ease;
}
.lang-pill.active { background: var(--red); color: var(--white); }

.btn-order-nav {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  font-weight: 700;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  white-space: nowrap;
}

.cart-icon-btn {
  position: relative;
  font-size: 1.35rem;
  padding: 0.2rem 0.3rem;
}
.cart-count {
  position: absolute;
  top: -4px; right: -6px;
  background: var(--red);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  padding: 0 3px;
}
.cart-icon-btn.bounce { animation: cartBounce 0.5s ease; }
@keyframes cartBounce {
  0%,100% { transform: scale(1); }
  30% { transform: scale(1.35); }
  60% { transform: scale(0.9); }
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  padding: 0.4rem;
}
.hamburger span { display:block; width:24px; height:2px; background:#FFFFFF; border-radius:2px; transition: transform 0.3s ease, opacity 0.3s ease; margin: 5px 0; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,7px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-7px); }

/* ============================================================
   Hero
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 7rem 1rem 4rem;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('img/hero.png') center/cover no-repeat;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 1;
}
#emberContainer {
  position: absolute; inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.ember {
  position: absolute;
  bottom: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, #FFD27A 0%, #D0102A 60%, transparent 100%);
  opacity: 0;
  animation-name: emberRise;
  animation-timing-function: ease-in;
  animation-iteration-count: infinite;
}
@keyframes emberRise {
  0% { opacity: 0; bottom: -10px; transform: translateX(0); }
  10% { opacity: 1; }
  70% { opacity: 0.8; }
  100% { opacity: 0; bottom: 100%; transform: translateX(var(--drift)); }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 780px;
  margin: 0 auto;
}

.hero-logo {
  animation: heartbeat 2s ease-in-out infinite !important;
}
@keyframes heartbeat {
  0%,100% { transform: scale(1); }
  14% { transform: scale(1.12); }
  28% { transform: scale(1); }
  42% { transform: scale(1.08); }
  70% { transform: scale(1); }
}
@media(max-width:768px){ .hero-logo{ width:110px!important;max-width:110px!important;height:110px!important; } }

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(2.8rem, 9vw, 5.5rem);
  letter-spacing: 2px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 0 30px rgba(208,16,42,0.6);
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 500;
  margin: 1rem 0 0.4rem;
  color: #EDEDED;
}

.hero-tagline {
  font-family: var(--font-title);
  color: var(--red);
  font-size: 1.15rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-title);
  font-size: clamp(1.4rem, 4vw, 2rem);
  letter-spacing: 1px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  padding: 0.7rem 1.6rem;
  border-radius: 12px;
  margin: 0 0 1.8rem;
  box-shadow: 0 10px 30px rgba(208,16,42,0.45);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
}
.hero-stats .stat {
  font-size: 0.85rem;
  font-weight: 600;
  color: #DADADA;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.5rem 1rem;
  border-radius: 999px;
}

/* ============================================================
   Bestsellers slider
============================================================ */
.bestsellers { background: var(--bg); padding: 3.5rem 0 3rem; }
.bs-header {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto 1.5rem; padding: 0 1.25rem;
}
.bs-header h2 {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.bs-arrows { display: flex; gap: 0.6rem; }
.bs-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 1px solid var(--red);
  color: var(--white);
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s ease;
}
.bs-arrow:hover { background: var(--red); }

.bs-track-wrap { overflow: hidden; padding: 0 1.25rem; }
.bs-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.bs-track::-webkit-scrollbar { display: none; }

.bs-card {
  flex: 0 0 78%;
  scroll-snap-align: start;
  background: var(--bg-alt);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.bs-card:hover { transform: translateY(-6px); border-color: var(--red); }
.bs-card img { width: 100%; height: 150px; object-fit: cover; }
.bs-info { padding: 0.8rem 1rem 1rem; display: flex; justify-content: space-between; align-items: center; }
.bs-info h4 { font-size: 0.95rem; font-weight: 600; }
.bs-info span { font-family: var(--font-title); color: var(--red); font-size: 1.1rem; }

@media (min-width: 640px) {
  .bs-card { flex: 0 0 45%; }
}
@media (min-width: 992px) {
  .bs-card { flex: 0 0 23.5%; }
}

/* ============================================================
   Info bar
============================================================ */
.info-bar {
  background: linear-gradient(90deg, var(--red-dark), var(--bg));
  padding: 1rem 0;
}
.info-bar .container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.8rem;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
}
.info-bar a { transition: color 0.2s ease; }
.info-bar a:hover { color: var(--gold); }

/* ============================================================
   Menu
============================================================ */
.menu-section { padding: 5rem 0 4rem; }

.category-tabs {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  margin-bottom: 2.5rem;
  scrollbar-width: none;
}
.category-tabs::-webkit-scrollbar { display: none; }
.tab-pill {
  flex: 0 0 auto;
  padding: 0.55rem 1.2rem;
  border: 1.5px solid var(--red);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  background: transparent;
  transition: background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.tab-pill.active, .tab-pill:hover { background: var(--red); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 640px) {
  .menu-grid { grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
}
@media (min-width: 992px) {
  .menu-grid { grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
}

.menu-card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid transparent;
  background-image: linear-gradient(var(--bg-alt), var(--bg-alt));
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  display: flex;
  flex-direction: column;
}
.menu-card:hover {
  transform: translateY(-8px);
  border-color: var(--red);
  box-shadow: 0 16px 34px rgba(208,16,42,0.3);
}
.menu-card-img { aspect-ratio: 1/1; overflow: hidden; }
.menu-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.menu-card:hover .menu-card-img img { transform: scale(1.08); }

.menu-card-body { padding: 0.9rem 1rem 1.1rem; display: flex; flex-direction: column; gap: 0.35rem; flex: 1; }
.menu-card-body h3 { font-family: var(--font-title); font-size: 1.05rem; letter-spacing: 0.5px; text-transform: uppercase; }
.card-desc {
  font-size: 0.75rem;
  color: #B8B8B8;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ref-img { font-size: 0.65rem; color: #6E6E6E; font-style: italic; }
.card-footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; padding-top: 0.6rem; flex-wrap: wrap; }
.card-price { font-family: var(--font-title); font-size: 1.2rem; color: var(--red); }
.card-price.ask { font-size: 0.8rem; font-family: var(--font-body); font-weight: 600; color: var(--gold); }

.btn-add {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.5rem 0.7rem;
  border-radius: 8px;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-add:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(208,16,42,0.4); }

/* ============================================================
   Cart Panel
============================================================ */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1998;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.cart-overlay.show { opacity: 1; visibility: visible; }

.cart-panel {
  position: fixed; top: 0; right: 0;
  width: 400px; max-width: 100vw;
  height: 100vh;
  background: var(--bg-alt);
  border-left: 3px solid var(--red);
  z-index: 1999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s ease;
}
.cart-panel.open { transform: translateX(0); }

.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 1.3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.cart-header h3 { font-family: var(--font-title); font-size: 1.3rem; letter-spacing: 1px; }
.cart-close { font-size: 1.4rem; }

.cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.3rem; }
.cart-empty { color: #999; text-align: center; margin-top: 2rem; }

.cart-item {
  display: grid;
  grid-template-columns: 55px 1fr auto;
  gap: 0.8rem;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cart-item img { width: 55px; height: 55px; object-fit: cover; border-radius: 10px; }
.cart-item-info h5 { font-size: 0.85rem; margin-bottom: 0.2rem; }
.cart-item-info span { color: var(--red); font-weight: 700; font-size: 0.85rem; }
.cart-item-qty { display: flex; align-items: center; gap: 0.5rem; }
.qty-btn {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--red);
  color: var(--white);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
}

.cart-footer { padding: 1.2rem 1.3rem 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); }
.cart-total-row { display: flex; justify-content: space-between; font-family: var(--font-title); font-size: 1.3rem; margin-bottom: 1rem; }
.cart-total-row span:last-child { color: var(--red); }
.btn-cart-confirm { width: 100%; background: linear-gradient(135deg, var(--red), var(--red-dark)); color: var(--white); padding: 0.9rem; border-radius: 10px; font-weight: 700; }

@media (max-width: 480px) { .cart-panel { width: 100vw; } }

/* ============================================================
   Catering
============================================================ */
.catering {
  position: relative;
  background: linear-gradient(rgba(0,0,0,0.70), rgba(0,0,0,0.70)), url('img/catering.png') center/cover no-repeat;
  padding: 5rem 0;
}
.catering-content { text-align: center; max-width: 700px; margin: 0 auto 3rem; }
.catering-content h2 {
  font-family: var(--font-title);
  font-size: clamp(2rem, 5vw, 3rem);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.catering-content p { color: #DADADA; margin-bottom: 1.6rem; }
.catering-list {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.8rem;
  margin-bottom: 2rem;
}
.catering-list li {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.catering-form {
  background: var(--bg-alt);
  border: 1px solid rgba(208,16,42,0.4);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  max-width: 750px;
  margin: 0 auto;
}
.catering-form h3 {
  font-family: var(--font-title);
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.form-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .full { grid-column: 1 / -1; }
}
.form-grid label { display: block; font-size: 0.8rem; margin-bottom: 0.4rem; color: #CCC; font-weight: 600; }
.form-grid input, .form-grid select, .form-grid textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 0.7rem 0.9rem;
  color: var(--white);
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color 0.25s ease;
}
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { outline: none; border-color: var(--red); }
.form-grid textarea { resize: vertical; min-height: 90px; }
.form-submit-wrap { text-align: center; margin-top: 1.6rem; }

/* ============================================================
   Reviews
============================================================ */
.reviews { padding: 5rem 0; background: var(--bg); }
.reviews-google {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  margin-bottom: 2.5rem; flex-wrap: wrap;
}
.reviews-google svg { width: 24px; height: 24px; }
.reviews-google .stars { color: var(--gold); letter-spacing: 2px; }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}
@media (min-width: 700px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

.review-card {
  background: var(--bg-alt);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 1.4rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.review-card:hover { transform: translateY(-6px); border-color: var(--red); }
.review-head { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.9rem; }
.review-head img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.review-head h5 { font-size: 0.9rem; }
.review-head .stars { color: var(--gold); font-size: 0.75rem; }
.review-card p { font-size: 0.85rem; color: #CCC; line-height: 1.5; }

/* ============================================================
   About
============================================================ */
.about { padding: 4.5rem 0; text-align: center; }
.about-lines { color: var(--red); font-weight: 700; font-size: 0.95rem; margin-bottom: 1.2rem; letter-spacing: 0.5px; }
.about p.about-text { max-width: 700px; margin: 0 auto; color: #CCC; line-height: 1.7; }

/* ============================================================
   Contact
============================================================ */
.contact { padding: 5rem 0; background: var(--bg-alt); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-info .row { display: flex; align-items: center; gap: 0.7rem; font-weight: 600; }
.contact-info h4 { font-family: var(--font-title); font-size: 1.3rem; text-transform: uppercase; margin-bottom: 0.3rem; }

.hours-row { align-items: flex-start !important; }
.hours-block strong {
  display: block; font-family: var(--font-title); letter-spacing: 0.5px;
  text-transform: uppercase; font-size: 1rem; margin-bottom: 0.5rem; color: var(--white);
}
.hours-table { list-style: none; display: flex; flex-direction: column; gap: 0.35rem; min-width: 250px; }
.hours-table li {
  display: flex; justify-content: space-between; gap: 1.5rem;
  font-size: 0.9rem; font-weight: 500; font-family: var(--font-body);
  padding-bottom: 0.35rem; border-bottom: 1px dashed rgba(255,255,255,0.12);
}
.hours-table li:last-child { border-bottom: none; }
.hours-table li span:first-child { color: rgba(255,255,255,0.6); font-weight: 600; }
.hours-table li span:last-child { color: var(--white); font-weight: 700; }
.hours-table li span.closed { color: var(--red); }
.social-row { display: flex; gap: 0.8rem; margin-top: 0.5rem; }
.social-row a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--red);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s ease;
}
.social-row a:hover { background: var(--red); }
.social-row svg { width: 18px; height: 18px; fill: var(--white); }

/* ============================================================
   Footer
============================================================ */
.footer { background: var(--bg-footer); border-top: 3px solid var(--red); padding: 3rem 0 1.5rem; }
.footer-top { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.6rem; margin-bottom: 2rem; }
.footer-top img { height: 55px; }
.footer-top h3 { font-family: var(--font-title); font-size: 1.6rem; letter-spacing: 1px; }
.footer-top .tag { color: var(--red); font-weight: 700; font-size: 0.85rem; }
.footer-info { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.2rem; font-size: 0.85rem; margin-bottom: 1.2rem; }
.footer-social { display: flex; justify-content: center; gap: 0.8rem; margin-bottom: 1.8rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--red);
  display: flex; align-items: center; justify-content: center;
}
.footer-social svg { width: 16px; height: 16px; fill: var(--white); }
.footer-bottom { text-align: center; font-size: 0.8rem; color: #999; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.4rem; }
.footer-bottom p { margin-bottom: 0.3rem; }

/* ============================================================
   Floating WhatsApp
============================================================ */
.wa-float {
  position: fixed;
  bottom: 22px; right: 22px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 1500;
  box-shadow: 0 6px 20px rgba(37,211,102,0.5);
  animation: waPulse 2.2s ease-in-out infinite;
}
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.55); }
  50% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
}

/* ============================================================
   Responsive nav (mobile menu)
============================================================ */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: 78%;
    max-width: 320px;
    background: rgba(5,5,5,0.98);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    border-left: 2px solid var(--red);
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-link { font-size: 1.3rem; }
  .btn-phone-nav .phone-full { display: none; }
  .btn-phone-nav .phone-short { display: inline; }
  .nav-order-text { display: none; }
}

@media (min-width: 901px) {
  .nav-logo span { display: inline; }
}

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