/* ==== Space Burguer e Dog — base styles ==== */

@import url('https://fonts.googleapis.com/css2?family=Bungee&family=Sigmar&family=Bagel+Fat+One&family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg-deep: #0a0420;
  --bg-card: #160a35;
  --bg-card-2: #1f1148;
  --purple: #7b2cbf;
  --purple-bright: #9d4edd;
  --orange: #ff6b1a;
  --orange-bright: #ff9233;
  --yellow: #ffc02e;
  --text: #f5efff;
  --text-dim: #b8a5d9;
  --border: rgba(157, 78, 221, 0.25);
  --display: 'Bungee', 'Sigmar', system-ui;
  --body: 'Inter', system-ui, sans-serif;
}

/* THEME: cartoon */
[data-theme="cartoon"] {
  --bg-deep: #faf3ff;
  --bg-card: #ffffff;
  --bg-card-2: #fff4e6;
  --text: #1a0a3a;
  --text-dim: #5e4a85;
  --border: rgba(123, 44, 191, 0.2);
}

/* THEME: premium */
[data-theme="premium"] {
  --bg-deep: #08040f;
  --bg-card: #0f0820;
  --bg-card-2: #16102a;
  --purple: #6a1fb8;
  --orange: #ff7a2e;
  --text: #ede7f7;
  --text-dim: #8e7ea8;
  --border: rgba(106, 31, 184, 0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ====== Cosmic background ====== */
.cosmic-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 50% at 80% 0%, rgba(255, 107, 26, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 30%, rgba(123, 44, 191, 0.35), transparent 60%),
    radial-gradient(ellipse 100% 60% at 50% 100%, rgba(157, 78, 221, 0.18), transparent 60%),
    var(--bg-deep);
  overflow: hidden;
}

[data-theme="cartoon"] .cosmic-bg {
  background:
    radial-gradient(ellipse 60% 40% at 80% 10%, rgba(255, 192, 46, 0.25), transparent 60%),
    radial-gradient(ellipse 60% 40% at 10% 80%, rgba(123, 44, 191, 0.15), transparent 60%),
    var(--bg-deep);
}

.cosmic-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, white, transparent),
    radial-gradient(1px 1px at 60% 70%, white, transparent),
    radial-gradient(2px 2px at 80% 20%, rgba(255,255,255,0.7), transparent),
    radial-gradient(1px 1px at 30% 80%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 90% 50%, white, transparent),
    radial-gradient(1.5px 1.5px at 45% 45%, rgba(255,255,255,0.7), transparent),
    radial-gradient(1px 1px at 15% 60%, white, transparent),
    radial-gradient(1px 1px at 70% 90%, rgba(255,255,255,0.6), transparent),
    radial-gradient(2px 2px at 5% 10%, white, transparent);
  background-size: 600px 600px, 500px 500px, 700px 700px, 400px 400px, 800px 800px, 550px 550px, 650px 650px, 450px 450px, 750px 750px;
  opacity: 0.55;
  animation: drift 120s linear infinite;
}

[data-theme="cartoon"] .cosmic-bg::before { opacity: 0; }

@keyframes drift {
  to { transform: translateY(-300px); }
}

/* ====== Layout helpers ====== */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  position: relative;
  padding: 100px 0;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.section-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--orange);
}

.section-title {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: 0.005em;
  color: var(--text);
  margin-bottom: 16px;
  text-shadow:
    2px 2px 0 rgba(0,0,0,0.35),
    0 8px 24px rgba(123, 44, 191, 0.25);
}

.section-title .accent {
  color: var(--orange);
  display: inline-block;
}

.section-title .accent-purple {
  color: var(--purple-bright);
}

.section-sub {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 600px;
  margin-bottom: 48px;
}

/* ====== Buttons ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--body);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.02em;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-bright));
  color: white;
  box-shadow: 0 8px 24px rgba(255, 107, 26, 0.35), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255, 107, 26, 0.5); }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: rgba(157, 78, 221, 0.15);
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover { background: rgba(157, 78, 221, 0.25); border-color: var(--purple-bright); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: rgba(255,255,255,0.05); }

.btn-lg { padding: 20px 36px; font-size: 17px; }

/* ====== Nav ====== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(10, 4, 32, 0.72);
  border-bottom: 1px solid var(--border);
}
[data-theme="cartoon"] .nav {
  background: rgba(255,255,255,0.85);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--text);
  text-decoration: none;
}

.nav-brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 0 24px rgba(157, 78, 221, 0.45);
}

.nav-brand .brand-name {
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 0.28em;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.nav-brand .brand-name .bw-purple { color: var(--purple-bright, #9d4edd); }
.nav-brand .brand-name .bw-orange { color: var(--orange, #ff6b1a); }
.nav-brand .brand-name .bw-white  { color: #fff; }
.nav-brand .brand-name .o { color: var(--orange); }
@media (max-width: 540px) {
  .nav-brand .brand-name { font-size: 16px; gap: 0.22em; }
}

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}

.nav-links a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dim);
  text-decoration: none;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.05); }
[data-theme="cartoon"] .nav-links a:hover { background: rgba(123,44,191,0.08); }

.nav-cta { margin-left: 12px; }

.nav-burger {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
}

@media (max-width: 880px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .nav-burger { display: inline-flex; }
}

/* ====== Hero ====== */
.hero {
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}

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

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 107, 26, 0.12);
  border: 1px solid rgba(255, 107, 26, 0.4);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--orange-bright);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-tag .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  animation: pulse 2s ease infinite;
}
@keyframes pulse { 50% { opacity: 0.5; } }

.hero h1 {
  font-family: var(--display);
  font-size: clamp(56px, 9vw, 110px);
  line-height: 1;
  letter-spacing: 0.005em;
  margin: 20px 0 24px;
  color: var(--text);
  text-shadow:
    3px 3px 0 rgba(0,0,0,0.4),
    0 12px 36px rgba(123, 44, 191, 0.4);
}
.hero h1 .line2 { color: var(--orange); display: block; transform: rotate(-1.5deg); transform-origin: left; }
.hero h1 .line3 { color: var(--purple-bright); display: block; }

.hero p.lede {
  font-size: 19px;
  color: var(--text-dim);
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.hero-stat .num {
  font-family: var(--display);
  font-size: 32px;
  color: var(--orange);
  line-height: 1;
}
.hero-stat .lab {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 4px;
}

.hero-art {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-art .planet {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
}
.hero-art .planet-1 {
  width: 60%; height: 60%;
  background: radial-gradient(circle at 30% 30%, var(--purple-bright), var(--purple));
  top: 5%; right: 0;
  opacity: 0.55;
}
.hero-art .planet-2 {
  width: 40%; height: 40%;
  background: radial-gradient(circle at 30% 30%, var(--orange-bright), var(--orange));
  bottom: 5%; left: 5%;
  opacity: 0.5;
}

.hero-art .logo-wrap {
  position: relative;
  z-index: 2;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 32px;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(123, 44, 191, 0.4),
    0 0 0 1px rgba(255,255,255,0.08),
    inset 0 1px 0 rgba(255,255,255,0.1);
  animation: float 6s ease-in-out infinite;
}
.hero-art .logo-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

@keyframes float {
  50% { transform: translateY(-12px) rotate(-1deg); }
}

.hero-art .orbit {
  position: absolute;
  inset: 0;
  border: 1.5px dashed rgba(255,255,255,0.08);
  border-radius: 50%;
  animation: spin 40s linear infinite;
}
.hero-art .orbit-2 {
  inset: 8%;
  animation-duration: 60s;
  animation-direction: reverse;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero-art .orbit-icon {
  position: absolute;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* ====== Featured items (top sellers) ====== */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .feat-grid { grid-template-columns: 1fr; } }

.feat-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(123, 44, 191, 0.25);
}

.feat-card .ribbon {
  position: absolute;
  top: 18px; left: 18px;
  padding: 4px 10px;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.1em;
  background: var(--orange);
  color: white;
  border-radius: 999px;
  z-index: 2;
}

.feat-card .img-area {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(123, 44, 191, 0.4), rgba(255, 107, 26, 0.25));
}

.smart-fallback {
  width: 100%; height: 100%;
  background:
    repeating-linear-gradient(45deg,
      rgba(255,255,255,0.04) 0,
      rgba(255,255,255,0.04) 12px,
      transparent 12px,
      transparent 24px),
    linear-gradient(135deg, rgba(123, 44, 191, 0.4), rgba(255, 107, 26, 0.25));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.smart-fallback .emoji {
  font-size: 64px;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4));
}
.smart-fallback .smart-label {
  font-family: ui-monospace, 'SF Mono', monospace;
  color: rgba(255,255,255,0.55);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.feat-card .img-area .smart-fallback .emoji { font-size: 88px; }

.feat-card .body {
  padding: 22px 24px 24px;
}

.feat-card .name {
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: 0.01em;
  color: var(--text);
  margin-bottom: 6px;
}

.feat-card .desc {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 16px;
  min-height: 42px;
}

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

.feat-card .price {
  font-family: var(--display);
  font-size: 24px;
  color: var(--orange);
}
.feat-card .price small { font-size: 13px; opacity: 0.8; margin-right: 2px; }

.feat-card .add-btn {
  background: var(--purple);
  border: none;
  color: white;
  width: 40px; height: 40px;
  border-radius: 12px;
  font-size: 22px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.feat-card .add-btn:hover { background: var(--purple-bright); transform: scale(1.06); }

/* ====== Cardápio (full menu) ====== */
.menu-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding: 6px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  width: fit-content;
}

.menu-tab {
  padding: 10px 20px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 14px;
  color: var(--text-dim);
  background: transparent;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.menu-tab.active {
  background: linear-gradient(135deg, var(--purple), var(--purple-bright));
  color: white;
  box-shadow: 0 4px 14px rgba(123, 44, 191, 0.4);
}

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

.menu-item {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: border-color 0.2s, transform 0.2s;
}
.menu-item:hover { border-color: var(--purple-bright); transform: translateY(-2px); }

.menu-item .thumb {
  width: 90px; height: 90px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 107, 26, 0.3), rgba(123, 44, 191, 0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  flex-shrink: 0;
}
.menu-item .thumb .smart-fallback .emoji { font-size: 44px; }
.menu-item .thumb .smart-fallback .smart-label { display: none; }

.menu-item .info h4 {
  font-family: var(--body);
  font-weight: 800;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 4px;
}
.menu-item .info p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.45;
}

.menu-item .end {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.menu-item .price {
  font-family: var(--display);
  font-size: 20px;
  color: var(--orange);
  white-space: nowrap;
}

/* ====== About ====== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; } }

.about-art {
  position: relative;
  aspect-ratio: 1;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--purple), var(--orange));
  box-shadow: 0 30px 80px rgba(123, 44, 191, 0.3);
}
.about-art img {
  width: 100%; height: 100%;
  object-fit: cover;
  mix-blend-mode: luminosity;
  opacity: 0.7;
  filter: contrast(1.1);
}
.about-art::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, transparent 30%, rgba(10, 4, 32, 0.6) 100%);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.about-stat {
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
}
.about-stat .num {
  font-family: var(--display);
  font-size: 36px;
  color: var(--orange);
  line-height: 1;
}
.about-stat .lab {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 6px;
}

/* ====== Promos ====== */
.promo-banner {
  position: relative;
  padding: 48px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 90% 50%, rgba(255, 107, 26, 0.4), transparent 50%),
    linear-gradient(135deg, var(--purple) 0%, #4a148c 100%);
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
}
@media (max-width: 720px) { .promo-banner { grid-template-columns: 1fr; padding: 32px; } }

.promo-banner h3 {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 0.95;
  color: white;
  margin-bottom: 12px;
}
.promo-banner h3 .y { color: var(--yellow); }
.promo-banner p { color: rgba(255,255,255,0.8); margin-bottom: 24px; max-width: 460px; }

.promo-price {
  text-align: center;
}
.promo-price .small {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
}
.promo-price .big {
  font-family: var(--display);
  font-size: clamp(64px, 9vw, 96px);
  color: var(--yellow);
  line-height: 1;
  text-shadow: 0 4px 20px rgba(255, 192, 46, 0.5);
}
.promo-price .big small { font-size: 28px; opacity: 0.8; }
.promo-price .strike {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  text-decoration: line-through;
  margin-top: 4px;
}

/* ====== Testimonials ====== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 880px) { .testi-grid { grid-template-columns: 1fr; } }

.testi-card {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  position: relative;
}
.testi-card .quote-mark {
  font-family: var(--display);
  font-size: 80px;
  color: var(--orange);
  line-height: 0.5;
  position: absolute;
  top: 24px; right: 24px;
  opacity: 0.5;
}

.testi-card .stars {
  color: var(--yellow);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testi-card blockquote {
  font-size: 15px;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 20px;
  font-weight: 500;
}

.testi-card .who {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-card .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 18px;
  color: white;
}
.testi-card .name { font-weight: 700; font-size: 14px; color: var(--text); line-height: 1.2; }
.testi-card .meta { font-size: 12px; color: var(--text-dim); }

/* ====== Gallery ====== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}
@media (max-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
}

.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, rgba(123, 44, 191, 0.4), rgba(255, 107, 26, 0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.gallery-item .smart-fallback .emoji { font-size: 56px; }
.gallery-item .smart-fallback .smart-label { display: none; }
.gallery-item:hover { transform: scale(1.02); }

.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.gallery-item .label {
  position: absolute;
  bottom: 12px; left: 12px;
  font-family: ui-monospace, 'SF Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 4px 8px;
  border-radius: 6px;
}

/* ====== Contact ====== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

.info-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
}
.info-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.info-row:last-child { border-bottom: none; }
.info-row .ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255, 107, 26, 0.15);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.info-row .lab {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 2px;
}
.info-row .val { color: var(--text); font-size: 15px; line-height: 1.4; }
.info-row .val a { color: inherit; text-decoration: none; }
.info-row .val a:hover { color: var(--orange); }

.hours-list { display: grid; gap: 6px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 4px 0;
}
.hours-row .day { color: var(--text-dim); }
.hours-row .time { color: var(--text); font-weight: 600; }
.hours-row.closed .time { color: #ef4444; }
.hours-row.today {
  background: rgba(255, 107, 26, 0.1);
  border-radius: 6px;
  padding: 6px 10px;
  margin: 0 -10px;
}
.hours-row.today .day { color: var(--orange); font-weight: 700; }

.map-wrap {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  height: 100%;
  min-height: 360px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: invert(0.9) hue-rotate(180deg) saturate(0.8); }
[data-theme="cartoon"] .map-wrap iframe { filter: none; }

/* ====== Footer ====== */
footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
  margin-top: 80px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.3));
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

.footer-brand p {
  font-size: 14px;
  color: var(--text-dim);
  margin: 16px 0;
  max-width: 320px;
}

.footer-col h5 {
  font-family: var(--body);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-dim);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-dim);
}

.socials { display: flex; gap: 8px; }
.socials a {
  width: 38px; height: 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  transition: all 0.2s;
}
.socials a:hover { background: var(--orange); color: white; border-color: var(--orange); }

/* ====== Floating WhatsApp ====== */
.fab-whatsapp {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
  z-index: 40;
  transition: transform 0.2s;
}
.fab-whatsapp:hover { transform: scale(1.08); }
.fab-whatsapp svg { width: 32px; height: 32px; }

/* utility */
.center-cta { text-align: center; margin-top: 40px; }

/* small bits */
.tag-pill {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(255, 107, 26, 0.15);
  border: 1px solid rgba(255, 107, 26, 0.4);
  color: var(--orange-bright);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-right: 4px;
}

.divider-stars {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin: 20px 0;
  color: var(--text-dim);
  font-size: 14px;
}
.divider-stars::before, .divider-stars::after {
  content: '';
  flex: 1;
  max-width: 100px;
  height: 1px;
  background: var(--border);
}
