:root {
  --cabello-red: #860a09;
  --cabello-red-dark: #4f0505;
  --cabello-gold: #f1b913;
  --cabello-orange: #dc4d14;
  --cabello-green: #14913a;
  --paper: #e6d8c3;
  --shadow: 0 30px 90px rgba(30, 7, 2, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: #2a1209;
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 45%, #8b1110 55%, #5a0504 100%);
  font-family: Arial, Helvetica, sans-serif;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.app-shell {
  width: 100%;
  min-height: 100vh;
  padding: 40px 0;
  display: grid;
  place-items: center;
}

.phone-frame {
  position: relative;
  container-type: inline-size;
  width: 100%;
  max-width: 960px;
  min-height: 850px;
  border-radius: 40px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
  isolation: isolate;
}

.phone-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  box-shadow:
    inset 0 0 0 1px rgba(255, 238, 190, 0.55),
    inset 0 0 42px rgba(95, 20, 0, 0.12);
}

.site-header {
  position: relative;
  z-index: 6;
  height: clamp(74px, 17cqi, 160px);
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2cqi, 30px);
  padding: 0 clamp(16px, 3.2cqi, 34px);
  background:
    linear-gradient(90deg, rgba(70, 3, 3, 0.14), transparent 30%, rgba(255, 255, 255, 0.04) 68%, transparent),
    linear-gradient(135deg, #760707 0%, #900909 48%, #680606 100%);
  border-bottom: 1px solid rgba(255, 225, 151, 0.48);
  box-shadow: 0 6px 18px rgba(54, 8, 1, 0.16);
}

.brand-button,
.nav-button,
.menu-toggle {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.brand-button {
  flex: 0 0 auto;
  width: clamp(86px, 16cqi, 150px);
  height: clamp(86px, 16cqi, 150px);
  padding: 0;
  display: grid;
  place-items: center;
  transform: translateY(clamp(6px, 1.2cqi, 12px));
  transition: transform 160ms ease, filter 160ms ease;
}

.brand-button:hover,
.brand-button:focus-visible {
  outline: none;
  transform: translateY(clamp(4px, 0.9cqi, 9px)) scale(1.015);
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.18));
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.site-nav {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1.5cqi, 24px);
  padding-left: clamp(6px, 1cqi, 18px);
}

.nav-button {
  position: relative;
  min-height: 38px;
  padding: 6px 18px;
  color: #fff7ed;
  font-size: clamp(16px, 1.8cqi, 22px);
  font-weight: 700;
  letter-spacing: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.22);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.nav-button:hover,
.nav-button:focus-visible {
  outline: none;
  background: var(--cabello-red);
  color: #ffffff;
  border-color: var(--cabello-red);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(134, 10, 9, 0.4);
}

.nav-button.is-active {
  outline: none;
  background: var(--cabello-gold);
  color: #5a0504; /* Texto rojo oscuro para contrastar con el fondo amarillo */
  text-shadow: none;
  border-color: var(--cabello-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(241, 185, 19, 0.35);
}

.menu-toggle {
  flex: 0 0 auto;
  width: clamp(34px, 4.2cqi, 48px);
  height: clamp(34px, 4.2cqi, 48px);
  padding: 5px;
  display: grid;
  align-content: center;
  gap: 6px;
  transition: transform 160ms ease;
}

.menu-toggle span {
  display: block;
  height: 3px;
  border-radius: 999px;
  background: #fff7ed;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.22);
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  outline: none;
  transform: translateY(-1px) scale(1.015);
}

/* Obsolete image mapping styles removed */

.tap-toast {
  position: fixed;
  left: 50%;
  bottom: max(22px, env(safe-area-inset-bottom));
  z-index: 10;
  width: max-content;
  max-width: min(88cqi, 380px);
  padding: 14px 18px;
  border: 1px solid rgba(255, 219, 129, 0.55);
  border-radius: 999px;
  color: #fff9e8;
  background: linear-gradient(135deg, rgba(107, 4, 4, 0.96), rgba(216, 68, 13, 0.96));
  box-shadow: 0 18px 45px rgba(45, 5, 0, 0.34);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  transform: translate(-50%, 18px) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.tap-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.mobile-drawer {
  position: fixed;
  top: clamp(72px, 10cqi, 104px);
  right: clamp(14px, 4cqi, 32px);
  z-index: 20;
  width: min(280px, calc(100cqi - 28px));
  padding: 12px;
  border: 1px solid rgba(255, 220, 126, 0.48);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(90, 5, 5, 0.98), rgba(132, 9, 8, 0.96));
  box-shadow: 0 22px 60px rgba(29, 4, 0, 0.35);
}

.mobile-drawer[hidden] {
  display: none;
}

.drawer-link {
  width: 100%;
  min-height: 44px;
  margin: 3px 0;
  border: 0;
  border-radius: 12px;
  color: #fff6df;
  background: transparent;
  font-size: 17px;
  font-weight: 700;
  text-align: left;
  padding: 10px 14px;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.drawer-link:hover,
.drawer-link:focus-visible {
  outline: none;
  color: #ffffff;
  background: var(--cabello-red);
  transform: translateX(-3px) scale(1.02);
}

@media (max-width: 760px) {
  .app-shell {
    padding: 0;
    background: #fff5e7;
  }

  .phone-frame {
    width: 100%;
    max-width: none;
    min-height: 100vh;
    border-radius: 0;
    box-shadow: none;
  }
}

@container (max-width: 800px) {
  .site-header {
    gap: clamp(4px, 1cqi, 10px);
    padding-inline: clamp(4px, 1cqi, 10px);
    height: clamp(55px, 14cqi, 74px);
  }

  .brand-button {
    width: clamp(50px, 12cqi, 86px);
    height: clamp(50px, 12cqi, 86px);
    transform: translateY(clamp(2px, 0.5cqi, 6px));
  }

  .site-nav {
    gap: clamp(4px, 1.5cqi, 12px);
    padding-left: 4px;
  }

  .nav-button {
    padding: 5px clamp(8px, 1.5cqi, 14px);
    min-height: 30px;
    font-size: clamp(11px, 2.6cqi, 15px);
  }
  
  .qr-toggle {
    width: clamp(24px, 3.5cqi, 34px);
    height: clamp(24px, 3.5cqi, 34px);
    padding: 2px;
  }

  .hotspot:hover,
  .hotspot:focus-visible {
    transform: scale(1.02);
  }
}

/* ----------------------------------------------------------------------
. QR TOGGLE BUTTON
---------------------------------------------------------------------- */
.qr-toggle {
  flex: 0 0 auto;
  width: clamp(34px, 4.2cqi, 48px);
  height: clamp(34px, 4.2cqi, 48px);
  padding: 5px;
  display: grid;
  place-items: center;
  color: #fff7ed;
  transition: transform 160ms ease, color 160ms ease;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.qr-toggle:hover,
.qr-toggle:focus-visible {
  outline: none;
  color: var(--cabello-gold);
  transform: translateY(-1px) scale(1.05);
}

/* ----------------------------------------------------------------------
. DYNAMIC SCREEN CONTAINER
---------------------------------------------------------------------- */
.dynamic-screen {
  position: relative;
  width: 100%;
  min-height: calc(100vh - clamp(74px, 17cqi, 160px));
  padding: 0;
  background: var(--paper);
  color: #2a1209;
  font-family: system-ui, -apple-system, sans-serif;
}

.dynamic-screen::-webkit-scrollbar {
  width: 6px;
}

.dynamic-screen::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.03);
}

.no-padding {
  padding: 0 !important;
  overflow-x: hidden;
}

.dynamic-screen::-webkit-scrollbar-thumb {
  background-color: var(--cabello-red);
  border-radius: 10px;
}

/* ----------------------------------------------------------------------
. MENU STYLING (DYNAMIC HTML SCREEN)
---------------------------------------------------------------------- */
.menu-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 40px;
}

.menu-header {
  text-align: center;
  margin-bottom: 8px;
}

.menu-title {
  font-family: Georgia, serif;
  font-size: clamp(24px, 4.5cqi, 36px);
  color: var(--cabello-red);
  margin: 0;
  font-weight: 800;
}

.menu-subtitle {
  font-size: clamp(13px, 2cqi, 16px);
  color: #665;
  margin: 4px 0 0 0;
  font-weight: 500;
  line-height: 1.4;
}

.menu-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.menu-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 5cqi, 32px);
  color: #3e2723;
  margin: 30px 0 5px 0;
  padding: 0;
  background: transparent;
  text-align: center;
  font-weight: 800;
  display: block;
}

.menu-items-grid {
  display: grid;
  gap: 12px;
}

.menu-item-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fffdfa;
  border: 1px solid rgba(241, 185, 19, 0.3);
  border-radius: 20px;
  padding: 12px 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.menu-item-card:hover,
.menu-item-card:active {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(139, 17, 16, 0.3);
  border-color: var(--cabello-gold);
  background-color: var(--cabello-red);
}

.menu-item-card:hover .menu-item-name,
.menu-item-card:active .menu-item-name,
.menu-item-card:hover .price-value,
.menu-item-card:active .price-value {
  color: #fff;
}

.menu-item-card:hover .menu-item-desc,
.menu-item-card:active .menu-item-desc,
.menu-item-card:hover .price-prefix,
.menu-item-card:active .price-prefix {
  color: rgba(255, 255, 255, 0.85);
}

.menu-item-card:hover .menu-item-badge,
.menu-item-card:active .menu-item-badge {
  background: var(--cabello-gold);
  color: var(--cabello-red);
}

.menu-item-name, .menu-item-desc, .price-value, .price-prefix, .menu-item-badge {
  transition: color 0.3s ease, background-color 0.3s ease;
}

.menu-item-thumb {
  width: clamp(80px, 18cqi, 115px);
  height: clamp(65px, 14cqi, 90px);
  object-fit: cover;
  border-radius: 14px;
  background: #f3e9db;
  flex-shrink: 0;
  border: 2px solid rgba(241, 185, 19, 0.3);
}

.menu-item-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.menu-item-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(16px, 2.5cqi, 20px);
  font-weight: 800;
  color: #3e2723;
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.menu-item-desc {
  font-size: clamp(11px, 1.8cqi, 13px);
  color: #665;
  margin: 0;
  line-height: 1.3;
}

.menu-item-price-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  flex-shrink: 0;
}

.price-prefix {
  font-size: clamp(9px, 1.4cqi, 11px);
  color: #887;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1;
}

.price-value {
  font-family: 'Playfair Display', serif;
  font-size: clamp(17px, 3cqi, 22px);
  font-weight: 900;
  color: #d84315;
}

.menu-item-badge {
  background: linear-gradient(135deg, var(--cabello-gold) 0%, #d89c06 100%);
  color: #5a0504;
  font-size: clamp(9px, 1.4cqi, 11px);
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 99px;
  text-transform: uppercase;
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
  margin-left: 6px;
}

.guarniciones-section {
  background: #ffad5c;
  border-radius: 20px;
  padding: 24px 16px;
  border: none;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.4), 0 8px 24px rgba(220, 77, 20, 0.15);
  margin-top: 24px;
  text-align: center;
}

.guarniciones-title {
  font-family: Georgia, serif;
  font-size: clamp(20px, 3.5cqi, 26px);
  color: #5a0504;
  margin: 0 0 20px 0;
  font-weight: 800;
}

.guarniciones-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

@container (max-width: 600px) {
  .guarniciones-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 6px;
  }
}

.guarnicion-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.guarnicion-img {
  width: clamp(55px, 10cqi, 72px);
  height: clamp(55px, 10cqi, 72px);
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
  object-fit: cover;
  background: white;
  padding: 2px;
}

.guarnicion-name {
  font-size: clamp(12px, 1.8cqi, 14px);
  font-weight: 800;
  color: #2a1209;
}

.menu-actions-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 8px;
}

.menu-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 6px;
  border-radius: 12px;
  font-weight: 800;
  font-size: clamp(12px, 1.8cqi, 15px);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
  text-align: center;
}

.menu-action-btn.btn-call {
  background: var(--cabello-orange);
  color: white;
}

.menu-action-btn.btn-call:hover {
  background: #c33f0c;
  transform: translateY(-1px);
}

.menu-action-btn.btn-wa {
  background: var(--cabello-green);
  color: white;
}

.menu-action-btn.btn-wa:hover {
  background: #0f742d;
  transform: translateY(-1px);
}

.menu-action-btn.btn-nav {
  background: #fff;
  border: 2px solid #ffccd5;
  color: #d62246;
}

.menu-action-btn.btn-nav:hover {
  background: var(--cabello-red);
  color: white;
  border-color: var(--cabello-red);
  transform: translateY(-1px);
}

.food-gallery-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 10px 0;
  scrollbar-width: none;
}

.food-gallery-row::-webkit-scrollbar {
  display: none;
}

.food-gallery-row img {
  width: 110px;
  height: 75px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  border: 1px solid rgba(0,0,0,0.05);
}

/* ----------------------------------------------------------------------
. LOCATION & REVIEWS STYLING (DYNAMIC HTML SCREEN)
---------------------------------------------------------------------- */
.location-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 16px 40px 16px;
}

.location-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.location-title {
  font-family: Georgia, serif;
  font-size: clamp(18px, 3cqi, 22px);
  color: var(--cabello-red-dark);
  margin: 0;
  font-weight: 700;
  border-bottom: 2px solid var(--cabello-gold);
  padding-bottom: 4px;
}

.location-card-main {
  background: white;
  border: 1px solid rgba(241, 185, 19, 0.28);
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 6px 15px rgba(42, 18, 9, 0.03);
  display: flex;
  flex-direction: column-reverse;
  overflow: hidden;
}

.loc-card-left {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  padding: 16px 20px 24px 20px;
  gap: 6px;
}

.loc-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.loc-pin-icon {
  font-size: 18px;
}

.loc-card-title {
  font-family: Georgia, serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--cabello-red);
  margin: 0;
}

.loc-card-address {
  font-family: Georgia, serif;
  font-size: clamp(15px, 2.2cqi, 19px);
  font-weight: 800;
  color: #2a1209;
  margin: 0;
  line-height: 1.3;
}

.loc-card-desc {
  font-size: clamp(11px, 1.7cqi, 13px);
  color: #665;
  margin: 0;
  line-height: 1.35;
}

.loc-card-right {
  width: 100%;
  height: 220px;
  border-radius: 0;
  overflow: hidden;
  flex-shrink: 0;
}

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

.loc-actions-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.loc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 6px;
  border-radius: 12px;
  font-weight: 700;
  color: white;
  font-size: clamp(12px, 1.8cqi, 15px);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
  text-align: center;
}

.loc-btn-call { background: #e89a17; color: white; }
.loc-btn-call:hover { background: #c5810e; transform: translateY(-2px); box-shadow: 0 6px 15px rgba(232, 154, 23, 0.3); }

.loc-btn-wa { background: #0e6f2b; color: white; }
.loc-btn-wa:hover { background: #094f1e; transform: translateY(-2px); box-shadow: 0 6px 15px rgba(14, 111, 43, 0.3); }

.loc-btn-maps { background: #7c0808; color: white; }
.loc-btn-maps:hover { background: #5a0505; transform: translateY(-2px); box-shadow: 0 6px 15px rgba(124, 8, 8, 0.3); }

.loc-photos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  height: auto;
}

.loc-grid-left {
  border-radius: 16px;
  overflow: hidden;
  height: 220px;
}

.loc-grid-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.loc-grid-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: none;
  gap: 12px;
  height: 120px;
}

.loc-grid-right-img-container {
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
}

.loc-grid-right-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.loc-features-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: white;
  border-radius: 12px;
  padding: 16px 8px;
  border: 1px solid rgba(134, 10, 9, 0.1);
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  animation: sway 7s ease-in-out infinite;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.loc-features-bar:hover {
  animation-play-state: paused;
  background: var(--cabello-red);
  box-shadow: 0 8px 20px rgba(134, 10, 9, 0.2);
}

.loc-features-bar:hover .loc-feature-item,
.loc-features-bar:hover .loc-feature-icon {
  color: white;
}

.loc-feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: clamp(12px, 1.8cqi, 14px);
  font-weight: 700;
  color: #2a1209;
  text-align: center;
  transition: color 0.3s ease;
}

.loc-feature-icon {
  display: flex;
  align-items: center;
  color: var(--cabello-red);
  transition: color 0.3s ease;
}

.loc-feature-icon svg {
  width: 18px;
  height: 18px;
}

.visit-reasons-title {
  font-family: Georgia, serif;
  font-size: clamp(18px, 3cqi, 24px);
  color: var(--cabello-red-dark);
  text-align: center;
  margin: 16px 0 6px 0;
  font-weight: 800;
}

.visit-reasons-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reason-card {
  background: white;
  border: 1px solid rgba(134, 10, 9, 0.1);
  border-left: 4px solid var(--cabello-red);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  text-align: left;
  gap: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  animation: sway 8s ease-in-out infinite;
  transition: background-color 0.3s ease, border-left-color 0.3s ease;
  cursor: pointer;
}

.reason-card:nth-child(2) {
  animation-delay: -2s;
  animation-direction: reverse;
  border-left-color: var(--cabello-gold);
}

.reason-card:nth-child(3) {
  animation-delay: -4s;
}

.reason-card:hover {
  animation-play-state: paused;
  background: var(--cabello-red);
  border-left-color: var(--cabello-gold);
}

.reason-card:hover .reason-title,
.reason-card:hover .reason-desc {
  color: white;
}

.reason-card:hover .reason-icon-wrapper {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

@keyframes sway {
  0% { transform: translateX(-4px); }
  50% { transform: translateX(4px); }
  100% { transform: translateX(-4px); }
}

.reason-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(241, 185, 19, 0.15); /* --cabello-gold with opacity */
  color: var(--cabello-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.reason-icon-wrapper svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.reason-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reason-title {
  font-size: 15px;
  font-weight: 800;
  color: #2a1209;
  margin: 0;
  transition: color 0.3s ease;
}

.reason-desc {
  font-size: 13px;
  line-height: 1.4;
  color: #554;
  margin: 0;
  transition: color 0.3s ease;
}

.loc-bottom-banner {
  border-radius: 14px;
  overflow: hidden;
  background: var(--cabello-red-dark);
  display: flex;
  align-items: center;
  border: 1px solid rgba(255,225,151,0.2);
}

.loc-banner-left {
  flex: 1.2;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.loc-banner-title {
  font-family: Georgia, serif;
  font-size: clamp(13px, 2cqi, 16px);
  font-weight: 700;
  color: var(--cabello-gold);
  margin: 0;
}

.loc-banner-desc {
  font-size: clamp(10px, 1.7cqi, 12px);
  color: #fff6df;
  margin: 0;
  line-height: 1.3;
}

.loc-banner-right {
  flex: 1;
  height: 90px;
}

.loc-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviews-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.reviews-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(241, 185, 19, 0.06);
  border-radius: 14px;
  padding: 12px 16px;
  border: 1px dashed rgba(241, 185, 19, 0.4);
}

.reviews-rating-big {
  font-size: clamp(32px, 5cqi, 40px);
  font-weight: 900;
  color: var(--cabello-red);
  line-height: 1;
}

.reviews-rating-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stars-row {
  color: var(--cabello-gold);
  font-size: clamp(14px, 2.2cqi, 18px);
  letter-spacing: 0.5px;
}

.reviews-count {
  font-size: clamp(11px, 1.7cqi, 13px);
  color: #665;
  font-weight: 600;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review-card {
  background: white;
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.01);
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-author {
  font-weight: 700;
  font-size: clamp(13px, 1.8cqi, 15px);
  color: #2a1209;
}

.review-stars {
  color: var(--cabello-gold);
  font-size: clamp(11px, 1.6cqi, 13px);
}

.review-text {
  font-size: clamp(12px, 1.8cqi, 13.5px);
  line-height: 1.4;
  color: #554;
  margin: 0;
  font-style: italic;
}

.btn-leave-review {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  background: var(--cabello-red);
  color: white;
  border: none;
  border-radius: 99px;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(134, 10, 9, 0.25);
  transition: transform 160ms ease, background-color 160ms ease;
  width: 100%;
}

.btn-leave-review:hover {
  background: var(--cabello-red-dark);
  transform: translateY(-2px);
}

/* ----------------------------------------------------------------------
. QR CODE MODAL
---------------------------------------------------------------------- */
.qr-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(79, 5, 5, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 1;
  transition: opacity 200ms ease;
}

.qr-modal[hidden] {
  display: none;
  opacity: 0;
}

.qr-modal-content {
  position: relative;
  background: var(--paper);
  width: min(100%, 380px);
  border-radius: 24px;
  padding: clamp(24px, 5cqi, 36px) clamp(20px, 4cqi, 28px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  text-align: center;
  border: 1.5px solid rgba(255, 225, 151, 0.4);
  animation: qrZoom 200ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes qrZoom {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.qr-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 0;
  background: rgba(0,0,0,0.05);
  font-size: 20px;
  font-weight: 700;
  color: #665;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 150ms ease, color 150ms ease;
}

.qr-close:hover {
  background: var(--cabello-red);
  color: white;
}

.qr-modal-title {
  font-size: clamp(20px, 3.5cqi, 24px);
  color: var(--cabello-red);
  margin: 0 0 8px 0;
  font-weight: 800;
}

.qr-modal-subtitle {
  font-size: 14px;
  line-height: 1.4;
  color: #554;
  margin: 0 0 24px 0;
}

.qr-code-wrapper {
  background: white;
  width: max-content;
  padding: 16px;
  border-radius: 18px;
  margin: 0 auto 16px auto;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05), 0 8px 20px rgba(0,0,0,0.05);
}

.qr-code-image {
  display: block;
  max-width: 100%;
  height: auto;
}

.qr-modal-url {
  font-size: 15px;
  font-weight: 700;
  color: var(--cabello-orange);
  letter-spacing: 0.5px;
  margin: 0;
}

/* ----------------------------------------------------------------------
. LOCAL REVIEWS FORM & UI
---------------------------------------------------------------------- */
.add-review-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}

.review-form {
  background: white;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(241, 185, 19, 0.4);
  box-shadow: 0 4px 15px rgba(42, 18, 9, 0.04);
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: slideDown 300ms ease-out forwards;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.review-form-header h3 {
  font-family: Georgia, serif;
  font-size: 18px;
  color: var(--cabello-red-dark);
  margin: 0 0 4px 0;
}

.review-form-header p {
  font-size: 12px;
  color: #665;
  margin: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: #2a1209;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 14px;
  background: #faf8f5;
  transition: border-color 200ms ease, box-shadow 200ms ease;
  color: #2a1209;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--cabello-gold);
  background: white;
  box-shadow: 0 0 0 3px rgba(241, 185, 19, 0.15);
}

.star-rating-input {
  display: flex;
  gap: 4px;
}

.star-btn {
  font-size: 26px;
  color: #ddd;
  cursor: pointer;
  transition: color 150ms ease, transform 150ms ease;
  line-height: 1;
  user-select: none;
}

.star-btn:hover {
  transform: scale(1.15);
}

.star-btn.is-active {
  color: var(--cabello-gold);
}

.form-actions {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.btn-submit-review {
  flex: 1;
  background: var(--cabello-red);
  color: white;
  border: 0;
  border-radius: 8px;
  padding: 12px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background 200ms ease;
}

.btn-submit-review:hover {
  background: #6a0707;
}

.btn-submit-review:disabled {
  opacity: 0.7;
  cursor: wait;
}

.btn-cancel-review {
  background: #f1f1f1;
  color: #555;
  border: 0;
  border-radius: 8px;
  padding: 12px 16px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background 200ms ease;
}

.btn-cancel-review:hover {
  background: #e4e4e4;
}

.review-success-card {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: slideDown 300ms ease-out forwards;
}

.review-success-card .success-icon {
  width: 40px;
  height: 40px;
  background: #22c55e;
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: bold;
}

.review-success-card h4 {
  margin: 0;
  color: #166534;
  font-size: 16px;
}

.review-success-card p {
  margin: 0;
  color: #15803d;
  font-size: 13px;
  line-height: 1.4;
}

/* ----------------------------------------------------------------------
. GALERIA CAROUSEL
---------------------------------------------------------------------- */
.gallery-carousel-container {
  overflow: hidden;
  border-radius: 16px;
  padding: 16px 0;
  background: transparent;
  width: 100%;
}

.gallery-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: scrollGallery 30s linear infinite;
}

.gallery-track:hover {
  animation-play-state: paused;
}

.gallery-track.reverse {
  animation-direction: reverse;
  animation-duration: 35s; /* Slightly different speed for variation */
}

.gallery-item {
  width: 180px;
  height: 130px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

@keyframes scrollGallery {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ----------------------------------------------------------------------
. CONTACTO STYLES
---------------------------------------------------------------------- */
.contact-row-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fffdfa;
  border: 1px solid rgba(241, 185, 19, 0.2);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 16px;
}



.c-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.c-info {
  flex: 1;
}

.c-info h3 {
  font-family: Georgia, serif;
  font-size: 20px;
  color: #5a0504;
  margin: 0 0 4px 0;
  font-weight: bold;
}

.c-info p {
  font-size: 15px;
  color: #2a1209;
  margin: 0;
  line-height: 1.4;
}

.c-photo {
  width: 130px;
  height: 85px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  border: 1px solid rgba(0,0,0,0.1);
}

/* ----------------------------------------------------------------------
. REDUCED MOTION MEDIA QUERY
---------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* Video Thumbnails */
.video-thumbnail-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background-color: #3d1b11;
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.video-thumbnail-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.video-thumbnail-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.video-thumbnail-card:hover .video-thumbnail-overlay {
  background: rgba(0, 0, 0, 0.2);
}

.video-play-btn {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, background 0.2s ease;
}

.video-thumbnail-card:hover .video-play-btn {
  transform: scale(1.15);
  background: rgba(255, 255, 255, 0.4);
}

.video-play-btn svg {
  width: 16px;
  height: 16px;
  fill: #fff;
  margin-left: 2px;
}

/* ----------------------------------------------------------------------
. INICIO DINÁMICO
---------------------------------------------------------------------- */
/* ----------------------------------------------------------------------

/* ----------------------------------------------------------------------
. PREMIUM HOME DESIGN
---------------------------------------------------------------------- */
.home-premium-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 40px;
}

.hero-premium {
  position: relative;
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cabello-red-dark) 0%, var(--cabello-red) 100%);
  color: white;
  box-shadow: 0 20px 40px rgba(90, 5, 4, 0.25);
  display: flex;
  flex-direction: column;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  filter: blur(2px) contrast(1.2);
  mix-blend-mode: overlay;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(90,5,4,0.9) 100%);
}

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

.badge-premium {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.hero-title-premium {
  font-family: Georgia, serif;
  font-size: clamp(42px, 10cqi, 56px);
  font-weight: 900;
  line-height: 1;
  margin: 0 0 12px 0;
  text-shadow: 2px 4px 8px rgba(0,0,0,0.4);
}

.highlight-gold {
  color: var(--cabello-gold);
  display: block;
}

.hero-subtitle-premium {
  font-size: clamp(15px, 3.5cqi, 18px);
  line-height: 1.4;
  margin: 0 0 24px 0;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 1px 2px 4px rgba(0,0,0,0.3);
}

.hero-main-action {
  margin-bottom: 24px;
}

.btn-premium-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  text-decoration: none;
  padding: 16px 24px;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3), inset 0 2px 0 rgba(255,255,255,0.2);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.btn-premium-wa:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4), inset 0 2px 0 rgba(255,255,255,0.2);
}

.btn-premium-wa .btn-icon {
  font-size: 24px;
}

.hero-visual {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

.cazo-showcase {
  position: relative;
  width: 100%;
  max-width: 350px;
  margin-bottom: -15px; /* overlap */
}

.glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(241,185,19,0.4) 0%, transparent 70%);
  z-index: 0;
  filter: blur(20px);
}

.cazo-img-premium {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
  mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.floating-badge {
  position: absolute;
  z-index: 3;
  background: white;
  color: var(--cabello-red-dark);
  font-weight: 800;
  font-size: 11px;
  padding: 8px 12px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  animation: float 4s ease-in-out infinite;
}

.badge-1 {
  top: 20%;
  left: -10px;
  animation-delay: 0s;
}

.badge-2 {
  bottom: 30%;
  right: -10px;
  animation-delay: 2s;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

/* Bento Box Actions */
.quick-actions-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.bento-card {
  background: white;
  border-radius: 24px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(42, 18, 9, 0.05);
  border: 1px solid rgba(241, 185, 19, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(42, 18, 9, 0.1);
  border-color: var(--cabello-gold);
}

.card-call .bento-icon {
  background: linear-gradient(135deg, var(--cabello-orange) 0%, #c33f0c 100%);
}

.card-maps .bento-icon {
  background: linear-gradient(135deg, var(--cabello-red) 0%, var(--cabello-red-dark) 100%);
}

.bento-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 20px;
  color: white;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.bento-info h4 {
  margin: 0;
  font-size: 16px;
  color: var(--cabello-red-dark);
  font-weight: 800;
}

.bento-info p {
  margin: 4px 0 0 0;
  font-size: 13px;
  color: #665;
}

/* Social Proof */
.social-proof-premium {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, #fffdfa 0%, #fff5e6 100%);
  padding: 24px;
  border-radius: 24px;
  box-shadow: inset 0 2px 0 white, 0 10px 25px rgba(0,0,0,0.03);
  border: 1px solid rgba(241, 185, 19, 0.3);
}

.proof-stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.proof-number {
  font-size: 42px;
  font-weight: 900;
  color: var(--cabello-red);
  line-height: 1;
}

.proof-stars {
  color: var(--cabello-gold);
  font-size: 16px;
  letter-spacing: 2px;
  margin-top: 4px;
}

.proof-text strong {
  display: block;
  font-size: 16px;
  color: var(--cabello-red-dark);
  margin-bottom: 4px;
}

.proof-text p {
  margin: 0;
  font-size: 13px;
  color: #665;
  line-height: 1.4;
}

/* Menu Highlights */
.section-header-premium {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 16px;
  padding: 0 4px;
}

.section-header-premium h3 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(20px, 4cqi, 24px);
  color: var(--cabello-red-dark);
  font-weight: 800;
}

.btn-outline-premium {
  background: transparent;
  border: none;
  color: var(--cabello-red);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  padding: 4px 0;
}

.highlight-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 4px 4px 20px 4px;
  margin: 0 -4px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.highlight-slider::-webkit-scrollbar {
  display: none;
}

.highlight-card {
  flex: 0 0 calc(80% - 16px);
  max-width: 280px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  scroll-snap-align: center;
  border: 1px solid rgba(0,0,0,0.03);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.highlight-card:active {
  transform: scale(0.98);
}

.card-img-wrapper {
  width: 100%;
  height: 140px;
  overflow: hidden;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.highlight-card:hover .card-img-wrapper img {
  transform: scale(1.05);
}

.card-content {
  padding: 16px;
}

.card-content h4 {
  margin: 0;
  font-size: 16px;
  color: var(--cabello-red);
  font-weight: 800;
}

.card-content p {
  margin: 4px 0 0 0;
  font-size: 13px;
  color: #665;
}

/* NEW TRADITIONAL HOME LAYOUT */
.layout-traditional {
  background: #e6d8c3; /* Café claro rústico / madera suave */
  background-image: radial-gradient(#d4bca0 1px, transparent 1px);
  background-size: 20px 20px;
  font-family: Arial, sans-serif;
  color: #3e2723;
  width: 100%;
}

.hero-traditional {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.hero-top {
  position: relative;
  padding: 20px 15px 30px;
  min-height: 280px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-text {
  position: relative;
  width: 65%;
  z-index: 3;
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(38px, 9cqi, 55px);
  color: #3e2723;
  margin: 0;
  line-height: 1;
  font-weight: 800;
}

.hero-subtitle {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(26px, 6cqi, 36px);
  color: #d84315;
  margin: -5px 0 10px 0;
  transform: rotate(-3deg);
}

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px 0;
}

.ornament::before,
.ornament::after {
  content: '';
  height: 1px;
  background: #d84315;
  flex: 1;
}

.ornament-icon {
  margin: 0 10px;
  color: #d84315;
  font-size: 14px;
}

.hero-desc-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(14px, 3.5cqi, 16px);
  margin: 10px 0 5px;
  color: #3e2723;
}

.hero-desc {
  font-size: clamp(12px, 3cqi, 14px);
  line-height: 1.4;
  margin: 0 0 10px 0;
  font-weight: 500;
}

.hero-location {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  font-size: clamp(12px, 3cqi, 14px);
  font-weight: bold;
}

.hero-cazo-img {
  position: absolute;
  bottom: -20px;
  right: -30px;
  width: 70%;
  max-width: 350px;
  object-fit: contain;
  z-index: 1;
  filter: drop-shadow(-8px 15px 20px rgba(0,0,0,0.5));
}

.hero-bottom-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  position: relative;
  z-index: 2;
  margin-top: -20px;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 100%);
}

.contact-row-trad {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: -25px;
  padding: 0 15px;
  position: relative;
  z-index: 10;
}

.btn-trad {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 12px 5px;
  border-radius: 12px;
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-size: clamp(13px, 3.2cqi, 16px);
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  border: 2px solid white;
}

.btn-trad-call { background: #e65100; color: white; }
.btn-trad-wa { background: #2e7d32; color: white; }
.btn-trad-map { background: white; color: #d84315; }

.section-title-trad {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 6cqi, 32px);
  color: #3e2723;
  margin: 0 10px;
  font-weight: 800;
}

.menu-gallery-trad {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 0 15px;
}

.menu-item-trad {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border: 2px solid #fff;
}

.menu-item-trad img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guarniciones-trad {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 5px;
  padding: 0 15px;
  text-align: center;
}

.guarnicion-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.guarnicion-item img {
  width: 100%;
  max-width: 60px;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  border: 2px solid #fff;
}

.guarnicion-name {
  font-size: clamp(9px, 2.2cqi, 12px);
  font-weight: bold;
  color: #3e2723;
}

.tradicion-card {
  display: flex;
  margin: 20px 15px;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.tradicion-img {
  width: 50%;
  object-fit: cover;
}

.tradicion-content {
  width: 50%;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fdf5e6;
  border-left: 2px solid #e5d1b8;
}

.tradicion-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(16px, 4cqi, 22px);
  font-weight: 800;
  color: #3e2723;
  margin: 0 0 10px 0;
  line-height: 1.1;
}

.tradicion-text {
  font-size: clamp(10px, 2.5cqi, 12px);
  line-height: 1.4;
  margin: 0 0 10px 0;
}

.tradicion-footer {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(11px, 2.8cqi, 13px);
  color: #d84315;
  font-weight: bold;
}

/* --- CART STYLES --- */
.cart-toggle {
  position: relative;
  margin-left: clamp(2px, 1cqi, 10px);
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--cabello-red);
  color: white;
  border-radius: 50%;
  font-size: 10px;
  font-weight: bold;
  padding: 2px 5px;
  border: 1px solid white;
}

.cart-modal {
  position: absolute;
  top: clamp(65px, 15cqi, 80px);
  right: clamp(10px, 2cqi, 20px);
  width: calc(100% - 20px);
  max-width: 320px;
  max-height: 55%;
  z-index: 100;
  display: none;
  pointer-events: none;
}

.cart-modal:not([hidden]) {
  display: flex;
  pointer-events: auto;
}

.cart-modal-content {
  background: var(--paper, #fdf6e3);
  border: 2px solid var(--cabello-gold);
  border-radius: 16px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(54, 8, 1, 0.3);
  overflow: hidden;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  background: var(--cabello-red);
  color: white;
}

.cart-title {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
  background: rgba(255, 255, 255, 0.4);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-empty-msg {
  text-align: center;
  color: #666;
  font-style: italic;
  margin-top: 20px;
}

.cart-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(139, 17, 16, 0.2);
  font-size: 14px;
  font-weight: bold;
  color: #2a1209;
}

.cart-item-name {
  flex: 1;
  padding-right: 10px;
}

.cart-item-details {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-item-qty {
  color: var(--cabello-red);
}

.cart-item-remove {
  background: none;
  border: none;
  color: #999;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
}

.cart-footer {
  padding: 15px;
  background: white;
  border-top: 1px solid rgba(139, 17, 16, 0.2);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 900;
  color: #2a1209;
  margin-bottom: 15px;
}

.cart-checkout-btn {
  width: 100%;
  padding: 12px;
  background: #25D366;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.cart-checkout-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.cart-checkout-btn:not(:disabled):hover {
  background: #128C7E;
  transform: scale(1.02);
}

/* --- MENU QUANTITY SELECTORS --- */
.qty-controls {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  justify-content: flex-end;
}

.qty-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--cabello-gold);
  color: var(--cabello-red);
  font-size: 16px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.qty-val {
  font-size: 13px;
  font-weight: bold;
  min-width: 20px;
  text-align: center;
  color: #2a1209;
}

.qty-btn-otro {
  padding: 4px 8px;
  border-radius: 8px;
  background: var(--cabello-gold);
  color: #5a0504;
  border: none;
  font-weight: bold;
  font-size: 11px;
  cursor: pointer;
}

.add-to-cart-btn {
  padding: 6px 14px;
  border-radius: 20px;
  background: var(--cabello-red);
  color: white;
  border: none;
  font-weight: bold;
  font-size: 12px;
  cursor: pointer;
}

/* ----------------------------------------------------------------------
. SECCIÓN DE REDES SOCIALES (CONTACTO)
---------------------------------------------------------------------- */
.social-networks-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 20px;
  border: 1px solid rgba(241, 185, 19, 0.4);
  box-shadow: 0 6px 15px rgba(42, 18, 9, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.social-networks-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 3.8cqi, 24px);
  text-align: center;
  margin: 0 0 8px 0;
  font-weight: 800;
  /* Degradado amarillo-rosa pastel */
  background: linear-gradient(135deg, #ffd166 0%, #ff85a1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #ff85a1; /* Fallback */
  text-shadow: 1px 1px 2px rgba(42, 18, 9, 0.1);
}

.social-networks-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-network-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 800;
  font-size: clamp(14px, 2.2cqi, 17px);
  color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.social-network-btn:hover,
.social-network-btn:active {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  filter: brightness(1.08);
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.social-icon svg {
  width: 100%;
  height: 100%;
}

.social-name {
  flex: 1;
  font-family: system-ui, -apple-system, sans-serif;
  letter-spacing: 0.5px;
}

.social-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease;
}

.social-network-btn:hover .social-arrow {
  transform: translateX(4px);
}

.social-arrow svg {
  width: 100%;
  height: 100%;
}

/* Colores específicos de cada red social */
.btn-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.btn-tiktok {
  background: #010101;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-facebook {
  background: #1877f2;
}

