/* ============================================================== 
    RESTAN - ALTA COCINA & RESTAURANTE GOURMET
    Keepdigitall Landing Page Factory - Estilos Principales
=================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600;700&family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,400&family=Marcellus&display=swap');

/* ==========================================
   VARIABLES GLOBALES & PALETA DE COLOR
========================================== */
:root {
  --font-default: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Marcellus', Georgia, serif;
  --font-optional: 'Dancing Script', cursive;

  --color-primary: #826a45;
  --color-primary-dark: #6e5939;
  --color-primary-light: #ab8e5f;
  --color-secondary: #e7272d;
  --color-accent: #cf820a;
  
  --dark: #1b1b1b;
  --dark-secondary: #262525;
  --dark-deep: #111111;
  --color-heading: #04000b;
  --color-paragraph: #666666;
  --color-muted: #888888;
  --bg-light: #fcfbf9;
  --bg-gray: #f7f6f3;
  --bg-card: #ffffff;
  --border-color: #e5e2dc;
  --border-light: rgba(255, 255, 255, 0.15);
  --white: #ffffff;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 45px rgba(0, 0, 0, 0.14);
  --shadow-primary: 0 10px 25px rgba(130, 106, 69, 0.28);

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 30px;
}

/* ==========================================
   RESET & REGLAS BASE RESPONSIVE
========================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-default);
  font-weight: 400;
  color: var(--color-paragraph);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.site-wrapper {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100vw !important;
  position: relative !important;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast), background var(--transition-fast);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-weight: 400;
  line-height: 1.25;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

p, span, li, a {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

section[id] {
  scroll-margin-top: 85px;
}

/* Contenedores Flexibles */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.col-12 { flex: 0 0 100%; max-width: 100%; padding: 0 15px; }
.col-lg-3 { flex: 0 0 100%; max-width: 100%; padding: 0 15px; }
.col-lg-4 { flex: 0 0 100%; max-width: 100%; padding: 0 15px; }
.col-lg-5 { flex: 0 0 100%; max-width: 100%; padding: 0 15px; }
.col-lg-6 { flex: 0 0 100%; max-width: 100%; padding: 0 15px; }
.col-lg-7 { flex: 0 0 100%; max-width: 100%; padding: 0 15px; }
.col-lg-8 { flex: 0 0 100%; max-width: 100%; padding: 0 15px; }
.col-md-6 { flex: 0 0 100%; max-width: 100%; padding: 0 15px; }

@media (min-width: 768px) {
  .col-md-6 { flex: 0 0 50%; max-width: 50%; }
}

@media (min-width: 992px) {
  .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
  .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-lg-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
  .col-lg-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .offset-lg-2 { margin-left: 16.666667%; }
}

/* Clases de Utilidad */
.text-center { text-align: center; }
.text-end { text-align: right; }
.align-center { align-items: center; }
.d-flex { display: flex; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.default-padding { padding: 90px 0; }
.default-padding-top { padding-top: 90px; }
.default-padding-bottom { padding-bottom: 90px; }
.bg-gray { background-color: var(--bg-gray); }
.bg-dark { background-color: var(--dark); color: var(--white); }

/* Encabezados de Sección */
.site-heading {
  margin-bottom: 50px;
  position: relative;
}

.site-heading .sub-title {
  font-family: var(--font-optional);
  color: var(--color-primary);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
}

.site-heading .title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-heading);
  letter-spacing: -0.5px;
}

.site-heading.text-center .title::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: var(--color-primary);
  margin: 15px auto 0;
}

/* ==========================================
   BOTONES
========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 30px;
  font-family: var(--font-default);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 30px;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-smooth);
  text-decoration: none;
}

.btn-theme {
  background-color: var(--color-primary);
  color: var(--white) !important;
  box-shadow: var(--shadow-primary);
}

.btn-theme:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(130, 106, 69, 0.35);
}

.btn-outline {
  border-color: var(--color-primary);
  color: var(--color-primary) !important;
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--white) !important;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.85rem;
}

/* ==========================================
   TOP BAR
========================================== */
.top-bar-area {
  background-color: rgba(20, 20, 20, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
  color: #c5c5c5;
  padding: 10px 0;
  position: relative;
  z-index: 100;
}

.top-bar-area a {
  color: #c5c5c5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.top-bar-area a:hover {
  color: var(--color-primary-light);
}

.top-bar-list {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.top-bar-list i {
  color: var(--color-primary);
  font-size: 0.95rem;
}

.top-bar-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.top-bar-right i {
  color: var(--color-primary);
}

@media (max-width: 991px) {
  .top-bar-area {
    display: none; /* Simplificación limpia en móvil para cero clutter */
  }
}

/* ==========================================
   HEADER & NAVBAR
========================================== */
.site-header {
  position: fixed;
  top: 41px; /* Justo debajo de top bar en desktop */
  left: 0;
  width: 100%;
  z-index: 999;
  transition: all var(--transition-smooth);
}

@media (max-width: 991px) {
  .site-header {
    top: 0;
  }
}

.site-header.is-scrolled {
  top: 0;
  background-color: rgba(18, 18, 18, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  position: relative;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-brand img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.nav-menu-wrap {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links, .nav-list {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 28px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: 0.5px;
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary-light) !important;
}

.nav-link.active::after {
  width: 100%;
}

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

.header-actions .btn {
  padding: 10px 22px;
  font-size: 0.85rem;
}

/* Botón Hamburguesa Móvil */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  color: var(--white);
  font-size: 1.4rem;
  margin-left: auto;
  z-index: 1001;
}

@media (max-width: 1024px) {
  .nav-menu-wrap {
    display: none;
  }
  .header-actions {
    display: none !important;
  }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* Drawer Móvil Off-Canvas */
.mobile-drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-smooth), visibility var(--transition-smooth);
}

.mobile-drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100vh;
  background-color: var(--dark);
  z-index: 10001;
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform var(--transition-smooth), visibility var(--transition-smooth);
  display: flex;
  flex-direction: column;
  padding: 30px 24px;
  overflow-y: auto;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
}

.mobile-drawer.active,
.mobile-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-drawer-header img {
  height: 40px;
}

.drawer-close-btn {
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
}

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

.mobile-drawer-nav .nav-link {
  font-size: 1.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 10px 0;
}

.mobile-drawer-footer {
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-drawer-footer .btn {
  width: 100%;
}

/* ==========================================
   BANNER AREA (HERO)
========================================== */
.banner-style-four-area {
  position: relative;
  min-height: 560px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 150px 0 100px 0;
  overflow: hidden;
}

.banner-style-four-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(14, 14, 14, 0.85) 0%, rgba(14, 14, 14, 0.72) 100%);
  z-index: 1;
}

.banner-style-four-content {
  position: relative;
  z-index: 5;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto;
}

.banner-subtext {
  font-family: var(--font-optional);
  color: var(--color-primary-light);
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 10px;
  display: block;
}

.banner-style-four-content h1 {
  font-size: clamp(2.4rem, 6.5vw, 5.5rem);
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1.1;
  margin-bottom: 25px;
}

/* Texto Circular Giratorio */
.curve-text {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.curve-text svg {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 216, 163, 0.4);
  animation: rotateTextCircle 22s linear infinite;
}

.curve-text svg text {
  fill: #ffd8a3;
  font-family: var(--font-heading);
  font-size: 13.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@keyframes rotateTextCircle {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.curve-text-center-btn {
  position: absolute;
  width: 46px;
  height: 46px;
  background: var(--color-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: transform var(--transition-smooth), background var(--transition-smooth), color var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.curve-text-center-btn:hover {
  background: var(--white);
  color: var(--color-primary);
  transform: scale(1.1);
}

.curve-text-center-btn i {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center center;
}

.curve-text-center-btn:hover i,
.curve-text:hover .curve-text-center-btn i {
  transform: rotate(90deg);
}

/* ==========================================
   TOP FEATURE AREA (RESERVA & CATEGORÍAS)
========================================== */
.feature-style-three-area {
  position: relative;
  z-index: 20;
  padding-bottom: 70px;
}

/* Formulario de Reserva Flotante */
.reservation-form.light {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.09);
  padding: 45px 35px;
  margin-top: -70px; /* Superposición estética con el banner */
  position: relative;
  border: 1px solid var(--border-color);
}

.reservation-top-icon {
  width: 60px;
  height: 60px;
  background: #fbf7f2;
  border: 1px solid var(--color-primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.5rem;
  margin: 0 auto 15px auto;
}

.reservation-form h3 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
  position: relative;
}

.form-control {
  width: 100%;
  height: 52px;
  padding: 12px 18px;
  font-family: var(--font-default);
  font-size: 0.95rem;
  color: var(--dark);
  background-color: #faf9f7;
  border: 1px solid #e5e0d8;
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition-fast), background-color var(--transition-fast);
}

.form-control:focus {
  border-color: var(--color-primary);
  background-color: var(--white);
}

.form-select {
  appearance: none;
  background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23826a45%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 10px auto;
  padding-right: 38px;
  cursor: pointer;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 12px;
  margin-bottom: 16px;
  font-size: 0.86rem;
  color: #5a554e;
  line-height: 1.45;
  text-align: left;
}

.form-check-input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--color-primary);
  cursor: pointer;
  flex-shrink: 0;
}

.form-check-label {
  cursor: pointer;
  user-select: none;
}

.form-check-label a {
  color: var(--color-primary);
  text-decoration: underline;
  font-weight: 700;
}

.form-check-label a:hover {
  color: var(--color-primary-dark);
}

.reservation-form .btn {
  width: 100%;
  height: 52px;
  margin-top: 6px;
}

@media (max-width: 991px) {
  .reservation-form.light {
    margin-top: 30px; /* Flujo natural sin vacío ni desbordamiento */
    padding: 30px 20px;
  }
}

/* Categorías Populares (Carrusel con Pista Desplazable) */
.food-cat-items {
  padding-top: 35px;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.food-cat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.food-cat-header .flex-title {
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  display: flex;
  align-items: center;
  gap: 12px;
}

.food-cat-header .flex-title img {
  height: 28px;
  width: auto;
}

.carousel-nav-arrows {
  display: flex;
  gap: 10px;
}

.carousel-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-gray);
  border: 1px solid var(--border-color);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.carousel-arrow:hover {
  background: var(--color-primary);
  color: var(--white);
  border-color: var(--color-primary);
  transform: scale(1.06);
}

.food-cat-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 2px 14px 2px;
  min-width: 0;
  max-width: 100%;
}

.food-cat-track::-webkit-scrollbar {
  display: none;
}

.cat-card-item {
  position: relative;
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: 195px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: block;
  aspect-ratio: 4 / 5;
  background: var(--dark);
  scroll-snap-align: start;
  flex-shrink: 0;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

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

.cat-card-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.cat-card-item:hover img {
  transform: scale(1.08);
}

.cat-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px 18px 18px 18px;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.88) 100%);
  color: var(--white);
  z-index: 2;
}

.cat-card-overlay span {
  display: block;
  font-size: 0.82rem;
  color: var(--color-primary-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 4px;
}

.cat-card-overlay h5 {
  color: var(--white);
  font-size: 1.18rem;
  margin: 0;
}

@media (max-width: 991px) {
  .cat-card-item {
    flex: 0 0 calc((100% - 20px) / 2);
    min-width: 180px;
  }
}

@media (max-width: 480px) {
  .cat-card-item {
    flex: 0 0 78%;
    min-width: 160px;
  }
}

/* ==========================================
   SECCIÓN "POR QUÉ ELEGIRNOS" (ÍCONOS SOBRIOS)
========================================== */
.choose-us-style-one-one-area {
  padding: 80px 0;
  background-color: var(--white);
}

.choose-us-style-one-items {
  position: relative;
}

.choose-us-style-one {
  position: relative;
  z-index: 1;
  padding: 45px 35px;
  text-align: center;
  transition: transform var(--transition-smooth);
}

.choose-us-style-one:hover {
  transform: translateY(-4px);
}

/* BORDES INTERCONECTADOS EXACTOS AL REFERENTE */
@media (min-width: 992px) {
  /* Card 1 */
  .choose-us-style-one:first-child {
    border-top: 1px solid var(--color-primary);
    border-top-right-radius: 30px;
    border-right: 1px solid var(--color-primary);
  }
  
  /* Card 2 */
  .choose-us-style-one:nth-child(2) {
    border-bottom: 1px solid var(--color-primary);
    border-radius: 30px;
    border-left: 1px solid var(--color-primary);
    border-right: 1px solid var(--color-primary);
  }
  
  /* Card 3 */
  .choose-us-style-one:nth-child(3) {
    border-top: 1px solid var(--color-primary);
    border-top-left-radius: 30px;
    border-left: 1px solid var(--color-primary);
  }
}

@media (max-width: 991px) {
  .choose-us-style-one {
    border: 1px solid var(--color-primary);
    border-radius: 20px;
    margin-bottom: 20px;
  }
}

.choose-us-icon-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.choose-us-icon-wrap svg {
  width: 100%;
  height: 100%;
  transition: transform var(--transition-smooth);
}

.choose-us-style-one:hover .choose-us-icon-wrap svg {
  transform: scale(1.1);
}

.choose-us-style-one h4 {
  font-size: 1.5rem;
  margin-bottom: 14px;
  color: var(--color-heading);
}

.choose-us-style-one p {
  font-size: 0.95rem;
  color: var(--color-paragraph);
  line-height: 1.65;
}

/* ==========================================
   BIG DEAL (OFERTA ESPECIAL)
========================================== */
.big-deal-area {
  padding: 40px 0 80px 0;
}

.deal-style-one-items {
  padding: 70px 60px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-xl);
  background-color: #f1dfc2;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.deal-thumb-wrapper {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.deal-main-dish {
  width: 70%;
  max-width: 320px;
  position: relative;
  z-index: 2;
  border-radius: 50%;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.25));
}

.deal-dish-sub1 {
  position: absolute;
  left: 0;
  top: 10px;
  width: 42%;
  max-width: 180px;
  z-index: 1;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.18));
}

.deal-dish-sub2 {
  position: absolute;
  left: 10px;
  bottom: 0px;
  width: 40%;
  max-width: 170px;
  z-index: 3;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
}

.deal-badge-discount {
  position: absolute;
  top: 25px;
  right: 15%;
  background: var(--white);
  color: var(--color-heading);
  border-radius: 50%;
  width: 86px;
  height: 86px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  z-index: 4;
  border: 2px dashed var(--color-primary);
  animation: pulseBadge 3s ease-in-out infinite;
}

.deal-badge-discount strong {
  font-size: 1.5rem;
  color: var(--color-secondary);
  line-height: 1;
}

@keyframes pulseBadge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

.deal-info {
  padding-left: 20px;
}

.deal-info .sub-heading {
  font-family: var(--font-optional);
  color: var(--color-primary-dark);
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.deal-info h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--dark);
}

.deal-info p {
  font-size: 1.05rem;
  color: #4e483e;
  margin-bottom: 28px;
}

@media (max-width: 991px) {
  .deal-style-one-items {
    padding: 40px 24px;
  }
  .deal-info {
    padding-left: 0;
    margin-top: 40px;
    text-align: center;
  }
  .deal-thumb-wrapper {
    min-height: 300px;
  }
}

/* ==========================================
   FOOD SPECIALS MENU (CARTA & TABS)
========================================== */
.food-menu-style-three-area {
  padding: 80px 0;
  background-color: var(--white);
}

/* Tabs de Navegación */
.food-menu-nav-wrap {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 45px;
  flex-wrap: wrap;
}

.menu-tab-btn {
  background: var(--bg-gray);
  border: 1px solid var(--border-color);
  padding: 10px 24px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-heading);
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.menu-tab-btn:hover,
.menu-tab-btn.active {
  background: var(--color-primary);
  color: var(--white);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-primary);
}

/* Grid de Platos */
.food-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.food-menu-style-three {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.food-menu-style-three:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.food-menu-style-three .thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.food-menu-style-three .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.food-menu-style-three:hover .thumb img {
  transform: scale(1.06);
}

/* Muesca Curva Blanca y Badge de Precio / Reseña */
.thumb-corner-badge {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--white);
  padding: 12px 20px 8px 18px;
  border-top-right-radius: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 700;
  z-index: 3;
}

.thumb-corner-badge::after {
  position: absolute;
  right: -14px;
  bottom: 0;
  content: "";
  height: 14px;
  width: 14px;
  background: url('data:image/svg+xml,<svg viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11 0L0 0L0 11C0 4.9 4.9 0 11 0Z" fill="%23ffffff"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(-90deg);
}

.food-review {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  color: var(--color-heading);
}

.food-review i {
  color: #f7a105;
}

.dish-price {
  font-family: var(--font-default);
  font-size: 1.05rem;
  color: var(--color-primary);
  font-weight: 900;
}

.dish-price del {
  color: #a0a0a0;
  font-size: 0.85rem;
  font-weight: 400;
  margin-right: 4px;
}

.food-menu-style-three .info {
  padding: 24px;
}

.food-menu-style-three .info h4 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.food-menu-style-three .info h4 a:hover {
  color: var(--color-primary);
}

.dish-ingredients {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  padding: 0;
}

.dish-ingredients li {
  font-size: 0.85rem;
  color: var(--color-paragraph);
  background: var(--bg-gray);
  padding: 3px 10px;
  border-radius: 12px;
}

/* Botón "Ver Detalles" (Sustituto de Add to Cart) */
.detail-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  padding: 10px 22px;
  border-radius: 30px;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: transparent;
  cursor: pointer;
  width: 100%;
  transition: all var(--transition-smooth);
}

.detail-btn:hover {
  background: var(--color-primary);
  color: var(--white);
  box-shadow: var(--shadow-primary);
}

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

@media (max-width: 640px) {
  .food-menu-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   OPENING HOURS (HORARIOS DE ATENCIÓN)
========================================== */
.opening-hours-area {
  padding: 90px 0;
  position: relative;
  background-color: var(--bg-gray);
  overflow: hidden;
}

.text-watermark {
  position: absolute;
  left: 5%;
  top: 10px;
  font-family: var(--font-heading);
  font-size: clamp(4.5rem, 14vw, 11rem);
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.035);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.opening-hour-items {
  position: relative;
  z-index: 2;
}

.opening-hours-thumb {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
  position: relative;
}

.opening-hours-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.opening-hours-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 45px 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.opening-hours-card h3 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.opening-hours-card p {
  color: var(--color-paragraph);
  margin-bottom: 24px;
}

.opening-schedule-table {
  border-top: 1px solid var(--border-color);
  padding-top: 15px;
  margin-bottom: 30px;
}

.schedule-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed #e8e4dc;
  font-size: 1rem;
}

.schedule-row h6 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--color-heading);
  margin: 0;
}

.schedule-row span {
  font-weight: 700;
  color: var(--color-primary);
}

.call-action-box {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fdfaf6;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid #ebd9c0;
}

.call-action-box .call-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.call-action-box span {
  font-size: 0.85rem;
  color: var(--color-paragraph);
  display: block;
}

.call-action-box h5 a {
  font-family: var(--font-default);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-heading);
}

.call-action-box h5 a:hover {
  color: var(--color-primary);
}

@media (max-width: 991px) {
  .opening-hours-card {
    margin-top: 30px;
    padding: 30px 20px;
  }
}

/* ==========================================
   CHEF AREA (MAESTROS CHEFS)
========================================== */
.chef-area {
  padding: 90px 0 110px 0;
  background-color: var(--white);
}

.chef-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 35px;
}

.chef-style-one {
  text-align: center;
}

.chef-thumb {
  position: relative;
  width: 270px;
  height: 310px;
  margin: 0 auto;
  border-top-left-radius: 140px;
  border-top-right-radius: 140px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: visible;
  border: 2px solid #e8dfd3;
  padding: 10px;
}

.chef-thumb-inner {
  width: 100%;
  height: 100%;
  border-top-left-radius: 130px;
  border-top-right-radius: 130px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  overflow: hidden;
  position: relative;
}

.chef-thumb-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.chef-style-one:hover .chef-thumb-inner img {
  transform: scale(1.06);
}

/* Ribbon Cinta en Forma de Cola de Milano */
.chef-ribbon-info {
  position: absolute;
  left: -15px;
  right: -15px;
  bottom: -25px;
  background: var(--color-primary);
  color: var(--white);
  padding: 12px 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  z-index: 5;
}

.chef-ribbon-info::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 0;
  height: 100%;
  width: 16px;
  background: var(--color-primary-dark);
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 48% 50%);
}

.chef-ribbon-info::after {
  content: "";
  position: absolute;
  right: -15px;
  top: 0;
  height: 100%;
  width: 16px;
  background: var(--color-primary-dark);
  clip-path: polygon(0% 0%, 100% 0%, 52% 50%, 100% 100%, 0% 100%);
}

.chef-ribbon-info h4 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 2px;
}

.chef-ribbon-info span {
  color: #ecd8b8;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  display: block;
}

@media (max-width: 991px) {
  .chef-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }
}

/* ==========================================
   FOOTER (SIN NEWSLETTER)
========================================== */
footer {
  position: relative;
  background-color: var(--dark);
  color: #d1d1d1;
}

.footer-top-wave {
  height: 25px;
  background: url('../assets/images/footer_shape.png');
  background-repeat: repeat-x;
  background-position: top center;
  background-size: 400px;
  width: 100%;
}

.footer-main-content {
  padding: 70px 0 50px 0;
}

.footer-item {
  margin-bottom: 35px;
}

.footer-widget-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
}

.footer-widget-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--color-primary);
}

.footer-about p {
  font-size: 0.95rem;
  color: #b5b5b5;
  margin-bottom: 20px;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #b5b5b5;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--color-primary-light);
  transform: translateX(4px);
}

.footer-contact-list li {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 0.95rem;
}

.footer-contact-list i {
  color: var(--color-primary);
  font-size: 1.1rem;
  margin-top: 5px;
  flex-shrink: 0;
}

.footer-contact-list a {
  color: #b5b5b5;
}

.footer-contact-list a:hover {
  color: var(--color-primary-light);
}

.footer-badge-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: var(--radius-md);
}

.footer-badge-box p {
  font-size: 0.9rem;
  color: #c0c0c0;
  margin-bottom: 15px;
}

.footer-badge-box .btn {
  width: 100%;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  font-size: 0.88rem;
  color: #999999;
}

.footer-bottom .row {
  align-items: center;
}

.footer-bottom-logo img {
  height: 38px;
}

/* ==========================================
   POP-UP MODAL REUTILIZABLE (MANDATORIO)
========================================== */
.custom-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: opacity var(--transition-smooth), visibility var(--transition-smooth);
}

.custom-modal-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto !important;
}

.custom-modal-dialog {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 580px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  transform: scale(0.92);
  transition: transform var(--transition-smooth);
  pointer-events: auto !important;
}

.custom-modal-backdrop.active .custom-modal-dialog {
  transform: scale(1);
}

.custom-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 100 !important;
  transition: all var(--transition-fast);
  pointer-events: auto !important;
}

.custom-modal-close:hover {
  background: var(--color-primary);
  transform: rotate(90deg);
}

.custom-modal-content {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  padding: 0;
  pointer-events: auto !important;
}

.modal-img-wrap {
  width: 100%;
  height: 250px;
  position: relative;
}

.modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-body-padding {
  padding: 30px;
}

.modal-badge {
  display: inline-block;
  background: #f4ede2;
  color: var(--color-primary-dark);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.modal-title {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.modal-price-tag {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.modal-desc {
  font-size: 0.98rem;
  color: var(--color-paragraph);
  margin-bottom: 25px;
  line-height: 1.7;
}

.modal-footer-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.modal-footer-cta .btn {
  flex: 1;
}

/* ==========================================
   BOTÓN FLOTANTE DE WHATSAPP (MANDATORIO)
========================================== */
.wa-floating-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition-smooth), background-color var(--transition-fast);
  animation: waPulse 2s infinite;
}

.wa-floating-btn:hover {
  background-color: #1ebc57;
  transform: scale(1.1);
  color: var(--white);
}

@keyframes waPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.wa-tooltip {
  position: absolute;
  right: 72px;
  background: var(--dark);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.wa-floating-btn:hover .wa-tooltip {
  opacity: 1;
}

@media (max-width: 640px) {
  .wa-tooltip {
    display: none !important;
  }
  .wa-floating-btn {
    bottom: 18px;
    right: 18px;
    width: 52px;
    height: 52px;
    font-size: 1.7rem;
  }
}

/* ==========================================
   TOAST NOTIFICATION (CONFIRMACIÓN)
========================================== */
.toast-notification {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--dark);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  border: 1px solid var(--color-primary);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 10000;
  max-width: min(90vw, 420px);
  width: max-content;
  text-align: center;
}

.toast-notification.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.toast-notification i {
  color: #25d366;
  font-size: 1.2rem;
}

/* ==========================================
   REVEAL ON SCROLL
========================================== */
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ==========================================
   BLINDAJE RESPONSIVE ESPECÍFICO (9 VIEWPORTS)
========================================== */
@media (max-width: 640px) {
  .form-control, .form-select {
    font-size: 16px !important; /* Prevención obligatoria de auto-zoom en iOS Safari */
  }
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
