/* ===== ESTILO LIMPIO SOLO PARA ESTA PÁGINA ===== */

:root {
  --color-acento: #ee6130;
}

/* ===== BODY ===== */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #000;
  color: #fff;
}

/* ===== HEADER (logo) ===== */
header nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 55px;
  background: var(--color-acento);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8%;
  z-index: 1000;
}

#logo {
  width: 110px;
  height: auto;
}
/*Venta de Fuegos Artificiales en Perú*/
.texto-centro {
  font-size: 18px;
  font-weight: arial;
  color: #000;
  text-align: center;
}

/* =Tortas Bombardas y Fuegos Artificiales en Perú = */
#productos-container {
  padding-top: 65px;
  text-align: center;
  background: #0b0b0b;
  padding-bottom: 10px;
}

#productos-container h1 {
  color: #ff6b34;
  font-size: 24px;
  margin-bottom: 15px;
}

#productos-container h2 {
  display: inline-block;
  padding: 5px 5px;
  border-radius: 40px;
  border: 2px solid #00ff00;
  box-shadow: 0 0 15px rgba(0, 255, 0, 0.6);
  font-size: 18px;
}

.descripcion-principal {
  max-width: 700px;
  margin: 20px auto 0;
  font-size: 16px;
  line-height: 1.5;
  color: #e0e0e0;
}

/* Reduce el espacio entre el botón y la línea naranja del footer */
.info-eventos {
  background: #1c1c1c;
  padding: 30px 20px 5px 20px; /* Bajamos el padding inferior a 5px */
  text-align: center;
  padding-bottom: 0px !important;
}

.info-eventos h3 {
  color: #ff6b34; /* Usamos tu color de acento en el título */
  font-size: 22px;
  margin-bottom: 15px;
}

/* Reduce el espacio entre el texto y el botón naranja */
.info-eventos p {
  max-width: 750px;
  margin: 0 auto 10px; /* Cambiado de 25px a 10px */
  color: #ddd;
  line-height: 1.5;
  font-size: 15px;
}

/* ===== BOTÓN VOLVER AL INICIO ===== */
.volver-inicio {
  display: inline-block;
  border: 2px solid #ff6b34;
  color: #ff6b34;
  padding: 8px 25px; /* Más estilizado */
  border-radius: 30px; /* Bordes más redondeados para modernidad */
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
  margin-bottom: 0px !important;
}
/* 3. Ocultamos el <br> desde CSS para que no empuje el footer hacia abajo */
section.info-eventos + br {
  display: none;
}
.volver-inicio:hover {
  background: #ff6b34;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 52, 0.3);
}
.ubicacion {
  margin-bottom: 0; /* 🔥 elimina espacio abajo */
  padding-bottom: 0;
}

/* Ajusta el espacio dentro del footer */
footer {
  background: #000; /* Recomendado cambiar el azul por negro */
  padding: 10px 15px; /* Un padding más equilibrado */
  text-align: center;
  border-top: 4px solid #ff6b34;
  margin-top: 0px !important;
}

/* Elimina márgenes automáticos de los textos del footer que crean huecos */
footer p {
  margin: 5px 0;
  color: #ccc;
  font-size: 14px;
}
footer strong {
  color: #ff6b34; /* naranja marca */
  font-size: 18px;
}

footer p:last-child {
  color: #00ff99; /* verde moderno */
  font-weight: bold;
}

/* ===== MODAL UBICACION SIMPLE Y RESPONSIVE ===== */

#btn-modal {
  display: none;
}

.container-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 15px;
  z-index: 2000;
}

#btn-modal:checked ~ .container-modal {
  display: flex;
}

.content-modal {
  position: relative;
  width: 100%;
  max-width: 800px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.content-modal iframe {
  width: 100%;
  height: 70vh; /* 🔥 se adapta a cualquier pantalla */
  min-height: 300px;
  border: 0;
}

/* X roja */
.btn-cerrar {
  position: absolute;
  top: 10px;
  right: 10px;
}

.btn-cerrar label {
  background: red;
  color: #fff;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
  cursor: pointer;
}

/* Ajuste del botón Ubícanos para que combine mejor */
.boton-modal label {
  background: #ff6b34 !important; /* Naranja para que resalte */
  color: #fff !important;
  padding: 10px 25px !important;
  border-radius: 8px !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}
/*angel.css*/

/* ================================= */
/* ===== CARRITO AISLADO ===== */
/* ================================= */

.ver-carrito {
  background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  min-height: 100vh;
}

.ver-carrito h1 {
  margin-bottom: 20px;
}

/* CONTENEDOR */
.ver-carrito #carrito-items {
  width: 100%;
  max-width: 900px;
}

/* TARJETA PRODUCTO */
.ver-carrito .cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #111;
  padding: 0px 10px;
  border-radius: 8px;
  margin-bottom: 2px;
  gap: 8px;
}

.ver-carrito .cart-item img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  background: #fff;
  border-radius: 15px;
  padding: 2px;
}

.ver-carrito .cart-info {
  flex: 1;
}

.ver-carrito .product-name {
  font-size: 14px;
  margin: 0;
}

.ver-carrito .item-price {
  font-size: 14px;
  font-weight: bold;
  min-width: 70px;
}

/* BOTONES 2x2 */
.ver-carrito .cart-actions {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(2, 160px);
  gap: 10px;
  justify-content: center;
}

.ver-carrito .cart-actions button {
  padding: 10px;
  border-radius: 10px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  color: white;
  font-size: 14px;
  transition: all 0.3s ease;
}

.ver-carrito .cart-actions button:hover {
  transform: translateY(-3px);
}

.ver-carrito .btn-clear {
  background-color: #e53935;
}

.ver-carrito .btn-continue {
  background-color: #42a5f5;
}

.ver-carrito .btn-yape {
  background: linear-gradient(45deg, purple, magenta);
}

.ver-carrito .btn-yape,
.ver-carrito .btn-cuentas {
  width: 70px;
  height: 32px;
  font-size: 13px;
  padding: 6px 8px;
  justify-self: center;
  background-color: orange;
}

/* ===== MODAL CARRITO (SIN CONFLICTO) ===== */

.ver-carrito .carrito-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 99999;
}

.ver-carrito .carrito-modal.active {
  display: block;
}

.ver-carrito .carrito-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #111;
  padding: 30px;
  border-radius: 15px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  color: white;
}

.ver-carrito .carrito-modal-content img {
  max-width: 100%;
  border-radius: 10px;
}

.ver-carrito .carrito-cerrar {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

/*zoom lupa*/
.image-box {
  overflow: hidden;
  cursor: zoom-in;
}

.image-box img {
  transition: transform 0.25s ease;
}

.ver-carrito .quantity-controls button {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #2196f3, #1565c0);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ver-carrito .quantity-controls button:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
