/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================
   BASE
========================= */
body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(180deg, #f8f9fb, #eef1f5);
  color: #222;
  line-height: 1.5;
}

/* =========================
   HEADER
========================= */
.header {
  background: linear-gradient(135deg, #e65100, #fb8c00);
  color: white;
  text-align: center;
  padding: 35px 20px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.header h1 {
  font-size: 34px;
}

.header p {
  opacity: 0.9;
}

/* =========================
   HERO
========================= */
.hero {
  text-align: center;
  padding: 60px 20px;
}

.hero h2 {
  font-size: 36px;
}

.hero p {
  color: #666;
}

/* =========================
   NOTA
========================= */
.note {
  margin: 20px 30px;
  padding: 15px;
  background: #fff3e0;
  border-left: 5px solid #e65100;
  border-radius: 10px;
  color: #5d4037;
  font-size: 14px;
}

/* =========================
   ABOUT
========================= */
.about {
  margin: 30px;
  padding: 30px;
  background: white;
  border-radius: 25px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.about h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #e65100;
}

.about p {
  margin-bottom: 15px;
  color: #555;
}

/* =========================
   RECOMENDADOS
========================= */
.featured {
  padding: 30px;
}

.featured h2 {
  text-align: center;
  margin-bottom: 25px;
}

.featured-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.featured-card {
  background: white;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.featured-card:hover {
  transform: translateY(-6px);
}

.featured-card span {
  display: block;
  font-weight: bold;
  margin: 10px 0;
  color: #e65100;
}

/* =========================
   MENU
========================= */
.menu {
  padding: 30px;
}

.menu h2 {
  text-align: center;
  margin-bottom: 25px;
}

.menu-section {
  background: white;
  padding: 25px;
  border-radius: 20px;
  margin-bottom: 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.menu-section h3 {
  color: #e65100;
}

.product {
  background: #fafafa;
  padding: 15px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: 0.25s;
}

.product:hover {
  background: #f1f3f5;
}

.item {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
}

/* =========================
   BOTONES
========================= */
button {
  margin-top: 6px;
  padding: 6px 12px;
  border: none;
  border-radius: 18px;
  background: linear-gradient(135deg, #e65100, #fb8c00);
  color: white;
  cursor: pointer;
  font-size: 13px;
  transition: 0.25s;
  width: auto;
  align-self: flex-start;
}

button:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #25d366, #1ebe5d);
}

/* =========================
   CARRITO
========================= */
.cart {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 250px;
  background: white;
  padding: 16px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  z-index: 999;
}

.cart h3 {
  margin-bottom: 10px;
}

.cart ul {
  max-height: 140px;
  overflow-y: auto;
  padding-left: 15px;
}

.cart li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.cart p {
  font-weight: bold;
  margin-top: 10px;
}

.cart button {
  width: 100%;
  margin-top: 10px;
  background: linear-gradient(135deg, #25d366, #1ebe5d);
}

/* =========================
   BASURERO LIMPIO
========================= */
.cart .remove-btn {
  all: unset;
  cursor: pointer;
  font-size: 16px;
  color: #9e9e9e;
  margin-left: 8px;
}

.cart .remove-btn:hover {
  color: #e53935;
  transform: scale(1.2);
}

/* =========================
   BOTÓN DE AYUDA ARRIBA
========================= */
.help-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 18px;
  background: linear-gradient(135deg, #e65100, #fb8c00);
  color: white;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  z-index: 1000;
}

.help-btn:hover {
  transform: scale(1.1);
}

/* =========================
   MODAL
========================= */
.help-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.help-box {
  background: white;
  padding: 25px;
  border-radius: 20px;
  text-align: center;
  width: 90%;
  max-width: 300px;
  position: relative;
}

.help-box h2 {
  margin-bottom: 10px;
  color: #e65100;
}

.help-box a {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 15px;
  background: #25d366;
  color: white;
  border-radius: 20px;
  text-decoration: none;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
}

/* =========================
   FOOTER
========================= */
footer {
  text-align: center;
  padding: 25px;
  color: #777;
}

/* =========================
   ANIMACIONES
========================= */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.6s;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   FIX BOTÓN BASURERO (SIN CÍRCULO)
========================= */
.cart .remove-btn {
  all: unset;
  cursor: pointer;
  font-size: 16px;
  color: #9e9e9e;
  margin-left: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.cart .remove-btn:hover {
  color: #e53935;
  transform: scale(1.2);
}

/* =========================
   MEJORA ALINEACIÓN CARRITO
========================= */
.cart li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* =========================
   MOVER BOTÓN DE AYUDA (ARRIBA)
========================= */
.help-btn {
  position: fixed !important;
  top: 20px !important;
  right: 20px !important;
  bottom: auto !important;
  left: auto !important;

  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 18px;

  z-index: 1000;
}

/* HOVER MÁS SUAVE */
.help-btn:hover {
  transform: scale(1.1);
}