

  .img2 {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
  }

  .img2 img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 5%; /* ✅ Completamente redonda */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }

@media (max-width: 768px) {
  .combo {
    font-family: "Times New Roman", Times, serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;         /* ✅ que ocupe todo el ancho disponible */
    padding: 0 10px;     /* opcional: margen interno para respirar */
    box-sizing: border-box; /* ✅ para que el padding no desborde */
  }

  .navbar-toggler {
    display: block !important;   /* ✅ Siempre visible */
  }



  .img2 {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
  }

  .img2 img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 5%; /* ✅ Completamente redonda */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }


  .img4 img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 10%; /* ✅ Completamente redonda */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }



  .text .flex {
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-family: "Times New Roman", Times, serif;
  }

  .price {
    margin-top: 5px;
  }


}


  .navbar-container {
    position: relative;
    z-index: 1000;
  }
  


  
  .prods {
    overflow-y: auto;            /* permite el scroll vertical si se necesita */
    scrollbar-width: none;       /* Firefox */
    -ms-overflow-style: none;    /* Internet Explorer 10+ */
    max-height: 100%;            /* asegúrate que no tenga límite si no lo quieres */
  }
  
  .prods::-webkit-scrollbar {
    display: none;               /* Chrome, Safari y Edge */
  }
  
  .quantity-control {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 5px;
  }
  
  .btn-qty {
    background: #B7AF96;       /* ✅ color personalizado */
    color: white;
    border: none;
    width: 28px;
    height: 28px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.2s ease;
  }
  
  .btn-qty:hover {
    background-color: #a79d80; /* tono más oscuro al pasar el mouse */
  }
  
  
  .qty-input {
    width: 40px;
    text-align: center; /* ✅ centrado */
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 2px 4px;
  }
  

  .whatsapp-float-button {
    position: fixed;
    bottom: 20px;
    right: 20px; /* 🔧 Ajustado para estar más pegado al borde */
    z-index: 1000;
    opacity: 1;
  }
  




.whatsapp-float-link {
    display: flex; /* Centra el ícono en el botón */
    align-items: center; /* Alinea verticalmente el ícono */
    justify-content: center; /* Alinea horizontalmente el ícono */
    background-color: #25D366; /* Color verde WhatsApp */
    color: white;
    text-decoration: none;
    border-radius: 50%; /* Hace el botón totalmente redondo */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s;
    width: 50px; /* Asegura un ancho específico */
    height: 50px; /* Asegura una altura específica */
}

.whatsapp-float-link:hover {
    background-color: #1ebe5b; /* Un verde ligeramente más oscuro al pasar el mouse */
}

@media (max-width: 600px) {
    .whatsapp-float-button {
        right: 3%; /* Ajuste para dar más espacio en dispositivos móviles */
        bottom: 2%; /* Posición más baja en dispositivos móviles */
    }
}


.timeline {
  position: relative;
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}
.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 80px;
}
.timeline-step p.inactive {
    opacity: 0.3;
  }
.estado-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  transition: opacity 0.3s ease;
}
.estado-icon.inactive {
  opacity: 0.3;
}
.timeline-step p {
  margin-top: 8px;
  font-weight: 500;
}
.timeline-line {
  height: 4px;
  background-color: #ccc;
  flex: 1;
  margin: 0 5px;
}

.nuevaFuente{
  font-family: "Times New Roman", Times, serif;
}

.imgNueva {
    background-color: black;   
    text-align: center; /* centra la imagen si no ocupa el 100% */
}

.imagen-encabezado {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}



@media (max-width: 768px) {
    .imagen-encabezado {
        max-height: 250px;
    }

    .imgNueva {
    background-color: black;
    padding-top: 25%; /* crea el espacio arriba de la imagen */
    text-align: center; /* centra la imagen si no ocupa el 100% */
}

}


@media (max-width: 768px) {
  .timeline {
    flex-direction: column;
    align-items: center;
  }
  .timeline-step {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: auto;
    margin-bottom: 10px;
  }
  .timeline-step p {
    margin: 0;
    text-align: center;
  }
  .timeline-line {
    width: 4px;
    height: 30px;
    margin: 10px auto;
  }

  .timeline-step p.inactive {
    opacity: 0.3;
  }
}

/* Modal oscuro y elegante */
.custom-modal {
  background-color: #121217;
  border-radius: 15px;
  border: none;
}

/* Texto explicativo */
.modal-desc {
  font-size: 0.95rem;
  color: #ccc;
}

/* Inputs estilizados */
.modal-input {
  background-color: #1d1f24;
  border: 1px solid #333;
  color: #fff;
  border-radius: 8px;
}

.modal-input::placeholder {
  color: #888;
}

/* Botón verde llamativo */
#btnConfirmarDatos {
  background-color: #28a745;
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 50px;
  padding: 10px;
  transition: background-color 0.3s ease;
}

#btnConfirmarDatos:hover {
  background-color: #218838;
}

.modal-dialog {
  display: flex;
  align-items: center;
  min-height: 100vh;
}

.mensaje-error {
  display: none;
  color: rgb(185, 48, 48);
  font-weight: bold;
  font-size: 1rem;
  margin-top: 1rem;
}

/* Ajustes visuales específicos para el <select> */
.modal-input select,
.modal-input option {
  background-color: #1d1f24;
  color: #fff;
}

.pago-opcion {
  background-color: #1d1f24;
  color: white;
  border: 1px solid #333;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
  user-select: none;
  font-weight: 500;
  text-align: center;
  min-width: 170px;
}

.pago-opcion input[type="radio"] {
  display: none;
}

.pago-opcion input[type="radio"]:checked + label,
.pago-opcion:has(input[type="radio"]:checked) {
  background-color: #2992b3;
  color: white;
  border-color: #2992b3;
  font-weight: bold;
}

/* Espaciado personalizado si preferís sin flex-gap */
.pago-opcion + .pago-opcion {
  margin-left: 15px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

#galeriaModal .modal-body {
  background-color: #000;
}

#galeriaModal img {
  max-height: 100%;
  max-width: 100%;
  border-radius: 8px;
}

/* === SOLO MÓVIL: el scroll vive en el marco .img-scroll, NO en el card === */
@media (max-width: 768px) {
  /* El card mantiene tu layout; no scroll propio */
  .bugatti-panel,
  .bugatti-nuevo {
    overflow: hidden;
  }

  /* Wrapper que permite el desplazamiento horizontal de la imagen */
  .img-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    overscroll-behavior-x: contain;
    border-radius: 12px;
  }
  .img-scroll::-webkit-scrollbar { display: none; }
  .img-scroll { scrollbar-width: none; }

  /* La imagen es más ancha que su marco para que tenga recorrido lateral */
  .img-scroll > img.imagen-nueva {
    display: block;
    width: auto;           /* respeta proporciones */
    min-width: 160%;       /* ↑ más recorrido; ajusta 120–200% a tu gusto */
    height: 400px;         /* igual a tu altura de card para consistencia */
    object-fit: cover;
    pointer-events: auto;  /* gesto sobre la imagen */
  }
}

/* Evita que toda la página se mueva en horizontal */
html, body { overflow-x: hidden; }
