body {
  background-color: #b7967f;
}

.dancing-script {
  font-family: "Dancing Script", cursive;
  font-optical-sizing: auto;
  font-style: normal;
}

/* ---- BOTONES Y CONTENEDORES (no modificado salvo limpieza menor) ---- */
.boton, .boton1, .boton2, .boton3, .boton4, .boton5, .boton6, .boton7, .boton8, 
.boton9, .boton10, .boton11, .boton12, .boton13, .boton14, .boton15 {
  border: 0;
  border-radius: 5px;
  text-align: center;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  width: 200px;
  height: 50px;
}

/* Colores individuales de botones */
.boton, .boton10, .boton13 { background-color: #d7bda6; }
.boton1, .boton11, .boton14 { background-color: #ab7743; }
.boton2, .boton3, .boton4, .boton5, .boton6, .boton7, .boton8, .boton9, .boton12, .boton15 {
  background-color: #4c2b08;
}

.btn-group {
  background-color: #ab7743;
}

/* ---- TÍTULOS, IMÁGENES, ETC ---- */
img {
  max-width: 100%;
  height: auto;
}

/* ---- SECCIÓN TOPPINGS ---- */
.toppings {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.topping {
  width: 120px;
  height: auto;
  transition: transform 0.3s ease;
}

/* Efecto al pasar el mouse (en desktop) */
.topping:hover {
  transform: scale(1.1);
}

/*  Adaptación para pantallas medianas (tablets) */
@media (max-width: 768px) {
  .topping {
    width: 80px;
  }
}

/*  Adaptación para celulares */
@media (max-width: 480px) {
  .topping {
    width: 60px;
  }
}


/*  Botones crema */
.boton-text, .boton1-text, .boton2-text {
  display: none;
}

.boton-text.mostrar, .boton1-text.mostrar, .boton2-text.mostrar {
  display: block;
}


/*  Botones frutales */
.boton13-text, .boton14-text, .boton15-text {
  display: none;
}

.boton13-text.mostrar, .boton14-text.mostrar, .boton15-text.mostrar {
  display: block;
}


/*  Botones agua */
.boton10-text, .boton11-text, .boton12-text {
  display: none;
}

.boton10-text.mostrar, .boton11-text.mostrar, .boton12-text.mostrar {
  display: block;
}
