/* ===== 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;
}

/* ===== SECCIÓN INFERIOR (IMAGEN 2) ===== */
.info-eventos {
  background: #1c1c1c;
  padding: 30px 20px;
  text-align: center;
}

.info-eventos h3 {
  max-width: 700px;
  margin: 0 auto 10px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}

.info-eventos p {
  max-width: 750px;
  margin: 0 auto 25px;
  color: #ddd;
  line-height: 1.5;
  font-size: 15px;
}

.volver-inicio {
  display: inline-block;
  border: 2px solid #ff6b34;
  color: #ff6b34;
  padding: 5px 5px;
  border-radius: 12px;
  font-weight: bold;
  text-decoration: none; /* 🔥 QUITA SUBRAYADO */
  transition: all 0.3s ease;
}

.volver-inicio:hover {
  background: #ff6b34;
  color: #fff;
  transform: translateY(-3px);
}
.ubicacion {
  margin-bottom: 0;  /* 🔥 elimina espacio abajo */
  padding-bottom: 0;
}

/* ===== FOOTER ===== */
footer {
  background: #123456;
  padding: 5px 15px;
  text-align: center;
  border-top: 4px solid #ff6b34;
}
footer strong {
	  color: #ff6b34; /* naranja marca */
  font-size: 18px;
}

footer p {
  color: #ccc;
  font-size: 14px;
}

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,.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,.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;
}

/* Botón abrir */
.boton-modal label{
  display:inline-block;
  margin-top:10px;
  padding:8px 20px;
  background:var(--color-acento);
  color:#000;
  border-radius:25px;
  font-weight:bold;
  cursor:pointer;
}

.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);
}