:root {
  --bg-page: #f2ece4;
  --card-bg: #faf6f0;
  --text-dark: #3c2a26;
  --title-caliente: #c26960;
  --title-frio: #688fa0;
  --heart-red: #d98880;
  --heart-blue: #9bb5c4;
  --price-red: #c26960;
  --border-light: #ebdcd0;
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-page);
  font-family: var(--font-sans);
  color: var(--text-dark);
  display: flex;
  justify-content: center;
  padding: 20px 10px;
}

.menu-container {
  background-color: var(--card-bg);
  width: 100%;
  max-width: 650px; /* Ancho cómodo para tablets y móviles */
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* Header & Logo */
.header {
  text-align: center;
  margin-bottom: 10px;
}

.main-logo {
  max-width: 220px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.heart-divider {
  color: var(--heart-red);
  font-size: 0.9rem;
  margin-top: 5px;
}

/* Distribución de 2 Columnas */
.columns-wrapper {
  display: table;
  width: 100%;
  table-layout: fixed;
  margin-top: 15px;
}

.menu-column {
  display: table-cell;
  width: 47%;
  vertical-align: top;
}

.vertical-divider {
  display: table-cell;
  width: 6%;
  text-align: center;
  vertical-align: top;
  position: relative;
}

.vertical-divider::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 50%;
  border-left: 1px solid var(--border-light);
  transform: translateX(-50%);
}

.divider-heart {
  position: relative;
  background-color: var(--card-bg);
  color: var(--text-dark);
  font-size: 0.75rem;
  padding: 4px 0;
  top: 140px;
  z-index: 1;
}

/* Títulos y Sub-corazones */
.section-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: 3px;
  text-align: center;
  font-weight: 600;
}

.caliente-title { color: var(--title-caliente); }
.frio-title { color: var(--title-frio); }
.snacks-title { color: var(--title-caliente); margin-bottom: 15px; }

.sub-heart {
  text-align: center;
  font-size: 0.7rem;
  margin-bottom: 15px;
}
.red-heart { color: var(--heart-red); }
.blue-heart { color: var(--heart-blue); }

/* Listas de Ítems */
.item-list {
  list-style: none;
}

.item-list li {
  display: flex;
  align-items: baseline;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.heart-bullet {
  font-size: 0.65rem;
  margin-right: 6px;
}
.heart-bullet.red { color: var(--heart-red); }
.heart-bullet.blue { color: var(--heart-blue); }

.item-name {
  font-weight: 500;
  white-space: nowrap;
}

.dots {
  flex-grow: 1;
  border-bottom: 1px dotted #d0c0b5;
  margin: 0 6px;
}

.price {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--price-red);
  white-space: nowrap;
}

.item-with-desc {
  width: 100%;
}

.item-row {
  display: flex;
  align-items: baseline;
}

.item-desc {
  display: block;
  font-size: 0.72rem;
  color: #8c7b75;
  margin-left: 14px;
  margin-top: 1px;
}

/* Ilustraciones de Caliente y Frío */
.column-illustration {
  text-align: center;
  margin-top: 20px;
}

.ill-img {
  max-width: 110px;
  height: auto;
}

/* Recuadro de SNAKS */
.snacks-box {
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 20px;
  margin-top: 25px;
  background-color: rgba(255, 255, 255, 0.3);
}

.snacks-content {
  display: table;
  width: 100%;
}

.snacks-list {
  display: table-cell;
  width: 55%;
  vertical-align: middle;
}

.snacks-illustration {
  display: table-cell;
  width: 45%;
  text-align: right;
  vertical-align: middle;
}

.ill-img-snacks {
  max-width: 170px;
  height: auto;
}

/* Footer */
.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
  color: #7a6b65;
  font-size: 0.85rem;
}

.footer-line {
  flex-grow: 1;
  height: 1px;
  background-color: var(--border-light);
}

.footer-text {
  padding: 0 15px;
  font-family: var(--font-serif);
}

/* Adaptación para pantallas muy pequeñas (Móviles) */
@media (max-width: 480px) {
  .menu-container {
    padding: 20px 15px;
  }
  
  .columns-wrapper {
    display: block;
  }

  .menu-column {
    display: block;
    width: 100%;
    margin-bottom: 25px;
  }

  .vertical-divider {
    display: none;
  }

  .snacks-content {
    display: block;
  }

  .snacks-list, .snacks-illustration {
    display: block;
    width: 100%;
    text-align: center;
  }

  .snacks-illustration {
    margin-top: 15px;
  }
}

/* =========================================
   SECCIÓN CREPAS
   ========================================= */

.crepes-section {
  margin-top: 40px;
  border-top: 2px dashed var(--border-light);
  padding-top: 30px;
}

.crepes-header {
  text-align: center;
  margin-bottom: 25px;
}

.crepes-main-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  letter-spacing: 4px;
  color: var(--text-dark);
  text-transform: uppercase;
}

.crepes-wrapper {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.crepes-col {
  display: table-cell;
  vertical-align: top;
}

.col-armala {
  width: 48%;
  padding-right: 15px;
}

.col-especiales {
  width: 52%;
  padding-left: 15px;
}

/* Subsección: Ármala a tu gusto */
.armala-box {
  text-align: center;
}

.armala-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-dark);
}

.armala-sub {
  font-size: 0.8rem;
  font-style: italic;
  margin-bottom: 4px;
}

.armala-price {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 15px;
}

.category-card {
  border: 1px solid #2b4251;
  border-radius: 6px;
  margin-bottom: 18px;
  background-color: #fff;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.category-header {
  background-color: #701c1c;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  padding: 4px 0;
}

.category-list {
  list-style: none;
  text-align: left;
  padding: 10px 15px;
  margin: 0;
}

.category-list li {
  font-size: 0.85rem;
  margin-bottom: 4px;
  font-weight: 500;
}

.extra-tag {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 0;
  border-top: 1px solid #2b4251;
  background-color: #faf6f0;
  letter-spacing: 1px;
}

/* Subsección: Crepas Especiales */
.especiales-title {
  font-family: 'Caveat', cursive;
  font-size: 2.2rem;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 15px;
  line-height: 1;
}

.especiales-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.especiales-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px dotted var(--border-light);
}

.especiales-list li:last-child {
  border-bottom: none;
}

.especial-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.especial-desc {
  display: block;
  font-size: 0.8rem;
  color: #555;
  line-height: 1.3;
  font-style: italic;
}

.especial-price {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-left: 10px;
}

/* Responsivo para móviles */
@media (max-width: 480px) {
  .crepes-wrapper {
    display: block;
  }

  .col-armala, .col-especiales {
    display: block;
    width: 100%;
    padding: 0;
  }

  .col-especiales {
    margin-top: 30px;
  }
}


/* =========================================
   BOTÓN FLOTANTE WHATSAPP
   ========================================= */

.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}

.whatsapp-icon {
  width: 32px;
  height: 32px;
  fill: #ffffff;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn:active {
  transform: scale(0.95);
}

/* Ajuste móvil para no obstruir texto al hacer scroll */
@media (max-width: 480px) {
  .whatsapp-btn {
    bottom: 18px;
    right: 18px;
    width: 50px;
    height: 50px;
  }
  
  .whatsapp-icon {
    width: 28px;
    height: 28px;
  }
}