 /* ================= RESET & VARIABLES ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  /* Colores y gradientes base */
  --backgroundBody: antiquewhite;
  --backgroundFooter: linear-gradient(-285deg, rgba(64,9,115,1) 30%, rgba(35,35,204,1) 54%, rgb(252,253,253) 95%);
  --colorText: rgba(35,35,204,1);
  --colorPrimary: #5468ff;
  --colorPrimaryDark: #3c4fe0;
  --buttonText: white;
}

/* ================= ESTILOS GLOBALES ================= */

.home-page header {
  background: linear-gradient(285deg, rgba(64, 9, 115, 1) 30%, rgb(8, 8, 87) 80%, rgb(148, 45, 168) 100%);
}
body {
  background: var(--backgroundBody);
  font-family: 'Montserrat', sans-serif;
  padding: 100px 0;
  scroll-padding-top: 100px;
}
a {
  text-decoration: none;
  color: inherit;
}

/* Icono de WhatsApp y footer */
.whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  font-size: 24px;
  padding: 15px;
  border-radius: 50%;
  z-index: 1100;
  transition: transform 0.3s;
}
.whatsapp-icon:hover {
  transform: scale(1.1);
}
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--backgroundFooter);
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 0.7rem;
  z-index: 1000;
}

/* ================= HEADER & NAVIGATION ================= */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--backgroundHeader, #111);
  color: var(--colorText, white);
  z-index: 1000;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}
.logo img {
  width: 6rem;
  filter: drop-shadow(4px 4px 6px rgba(122,68,120,0.62));
}

/* Menú principal */
nav {
  position: relative;
}
.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
.nav-links a {
  color: white;
  font-weight: 500;
}

/* ================= HERO VIDEO & MAIN ================= */
.video-wrapper video,
.hero-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-video-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
}

.hero-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-section {
  background: antiquewhite;
  text-align: center;
  padding: 1rem;
}
.video-section h2, .video-section h3, .video-section p {
  color: #0f2987;
  margin: 0.5rem auto;
  max-width: 600px;
}

/* ================= Gifs Container ================= */
.gif-container {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 20px;
}
.gif-container div {
  width: 250px;
  height: 200px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  background: antiquewhite;
}
.gif-container img {
  position: absolute;
  top: 0;
  left: -20px;
  width: 300px;
  height: 200px;
}

/* ================= OVERLAY VIDEO ================= */
#video-overlay {
  position: fixed;
  inset: 0;
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
#video-overlay video {
  max-width: 90%;
  max-height: 90%;
  cursor: pointer;
}
/* ================= INICIO =================*/
/*---- BOTON DE NAVEGACION ------*/
button,
.button {
  align-items: center;
  appearance: none;
  background-image: radial-gradient(100% 100% at 100% 0, #5adaff 0, var(--colorPrimary) 100%);
  border: 0;
  border-radius: 6px;
  box-shadow:
    rgba(45, 35, 66, 0.4) 0 2px 4px,
    rgba(45, 35, 66, 0.3) 0 7px 13px -3px,
    rgba(58, 65, 111, 0.5) 0 -3px 0 inset;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-family: Arial, Helvetica, sans-serif, "JetBrains Mono", monospace;
  font-size: 14px;
  height: 38px;
  justify-content: center;
  line-height: 1;
  overflow: hidden;
  padding: 0 16px;
  transition: box-shadow 0.15s, transform 0.15s;
  user-select: none;
  white-space: nowrap;
  text-decoration: none;
}
.menu-button:hover {
  transform: translateY(-1px);
  background-image: radial-gradient(100% 100% at 100% 0, #70e1ff 0, var(--colorPrimaryDark) 100%);
}
.button:focus,
button:focus,
.menu-button:focus {
  box-shadow:
    var(--colorPrimaryDark) 0 0 0 1.5px inset,
    rgba(45, 35, 66, 0.4) 0 2px 4px,
    rgba(45, 35, 66, 0.3) 0 7px 13px -3px,
    var(--colorPrimaryDark) 0 -3px 0 inset;
}
/*PRODUCTOS, CONTACTO, CARRITO*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 160px;
  overflow: hidden;
  z-index: 1000;
}

.video-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.video-header video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Contenedor del contenido del header */
.header-container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  color: white;
}

/* Logo */
.logo img {
  width: 6rem;
  filter: drop-shadow(4px 4px 6px rgba(0,0,0,0.6));
}

/* Menú */
.nav-links {
  display: flex;
  gap: 1rem;
  list-style: none;
  align-items: center;
}

.nav-links a.menu-button,
.nav-links a.button {
  align-items: center;
  appearance: none;
  background-image: radial-gradient(100% 100% at 100% 0, #5adaff 0, var(--colorPrimary) 100%);
  border: 0;
  border-radius: 6px;
  box-shadow:
    rgba(45, 35, 66, 0.4) 0 2px 4px,
    rgba(45, 35, 66, 0.3) 0 7px 13px -3px,
    rgba(58, 65, 111, 0.5) 0 -3px 0 inset;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-family: Arial, Helvetica, sans-serif, "JetBrains Mono", monospace;
  font-size: 14px;
  height: 38px;
  justify-content: center;
  line-height: 1;
  overflow: hidden;
  padding: 0 16px;
  transition: box-shadow 0.15s, transform 0.15s;
  user-select: none;
  white-space: nowrap;
  text-decoration: none;
}

.nav-links a.menu-button:hover,
.nav-links a.button:hover {
  transform: translateY(-1px);
}

/*-------------PRODUCTOS--------------*/
/* Main fijo con busqueda */
.main-productos {
  display: flex;
  justify-content: center;
  max-height: 7rem;
  background: linear-gradient(285deg, rgba(64, 9, 115, 1) 30%, rgb(8, 8, 87) 80%, rgb(148, 45, 168) 100%);
  padding: 1rem 2rem;
  margin: 0;
  flex-wrap: wrap;
  position: sticky;
  top: 10rem;
  z-index: 999;
  width: 100%;
}

/* Asegurar que los productos pasen por debajo del main */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 1rem;
  justify-content: center;
  padding: 50px;
  width: 100%;
  margin-top: 3rem;
}

/* Resto de estilos de productos y tarjetas */
.product-item {
  height: 230px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.card-container {
  width: 100%;
  height: 100%;
  perspective: 1000px;
}

.card-flip-inner {
  width: 100%;
  height: 100%;
  transition: transform 2s;
  transform-style: preserve-3d;
  position: relative;
}

.card-container:hover .card-flip-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  width: 100%;
  height: 100%;
  position: absolute;
  backface-visibility: hidden;
  border-radius: 10px;
  background: linear-gradient(285deg, rgba(64,9,115,1) 30%, rgb(8,8,87) 80%, rgb(148,45,168) 100%);
  color: white;
  font-weight: normal;
  text-align: center;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card-back {
  transform: rotateY(180deg);
}

.card-back h3 {
  font-size: 12px;
  font-weight: bold;
  color: white;
  margin-bottom: 12px;
}

.card-back p {
  font-size: 9px;
  font-weight: normal;
  color: white;
  line-height: 1;
}

.card-front img {
  width: 100%;
  height: auto;
  max-height: 60%;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 6px;
}

/* Botón */
.button {
  padding: 6px 12px;
  font-size: 12px;
  background-color: #004466;
  color: white;
  border: none;
  border-radius: 4%;
  cursor: pointer;
}

#boton-busqueda i {
  font-size: 11px;
}

#busqueda::placeholder {
  font-size: 11px;
}

/* Input de búsqueda */
.form-busqueda-productos input[type="text"] {
  flex: 0.5;
  padding: 0.7rem 1rem;
  font-size: 15px;
  border: 2px solid #999;
  border-radius: 4px;
}

.button:hover {
  background-color: #006699;
}

.mensaje-no-resultados {
  text-align: center;
  color: #cc0000;
  font-weight: bold;
  margin-top: 35px;
}
/* ================= CONTACTO ================= */

.contact-content {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6rem 0 1rem;  /* ⬅️ importante: da espacio arriba del formulario */
  background: linear-gradient(285deg, rgba(64,9,115,1) 30%, rgb(8,8,87) 80%, rgb(148,45,168) 100%);;
  box-sizing: border-box;
}
/* === BOX FORMULARIO === */
.contact-form-container {
  flex: 1 1 auto;
  max-width: 400px;
  width: 90%;
  background-color: white;
  padding: 2rem;
  margin: 0 auto;
  box-sizing: border-box;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
}

/* === FORMULARIO INTERNO === */
.contact-form-container form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  max-width: 400px;
  align-items: center;
  justify-content: center;
}

.contact-form-container input,
.contact-form-container textarea,
.contact-form-container select {
  padding: 0.5rem;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}
.rating {
  margin-top: 1rem;
  font-size: 1.3rem;
}

.stars-input {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
}

.stars-input input[type="radio"] {
  display: none;
}

.stars-input label {
  cursor: pointer;
  font-size: 2rem;
  color: #ccc;
  transition: color 0.2s;
}

.stars-input input:checked ~ label,
.stars-input label:hover,
.stars-input label:hover ~ label {
  color: gold;
}
/* === BOTÓN CENTRADO === */
.contact-form-container button {
  width: fit-content;
  align-self: center;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.contact-form-container button:hover {
  background-color: #0056b3;
}

/* === MENSAJE DE ÉXITO === */
#mensaje-exito {
  text-align: center;
  color: green;
  margin-top: 1rem;
  font-weight: bold;
}

/* === RESEÑAS BLANCAS === */
.reviews-section {
  padding: 1rem;
  background: linear-gradient(285deg, rgba(64,9,115,1) 30%, rgb(8,8,87) 80%, rgb(148,45,168) 100%);
  color: #333;
  text-align: center;
}

.review {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  padding: 0.5rem;
  margin: 1rem;
  min-width: 250px;
  max-width: 300px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.reviews-section h2 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: white;
}

.contact-body .carousel-scroll .review {
  flex: 0 0 180px;
  font-size: 0.85rem;
  padding: 0.5rem;
}

.contact-body .carousel-scroll .review h3 {
  font-size: 1rem;
  color: rgb(31, 39, 184);
}

.contact-body .carousel-scroll .stars {
  font-size: 1rem;
}

.contact-body .carousel-scroll p {
  font-size: 0.85rem;
  color: #6610a0;
}

.carousel-scroll {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  scroll-behavior: smooth;
  padding: 0rem 0;
  margin-top: 4rem;
}
.carousel-scroll::-webkit-scrollbar {
  display: none;
}
.carousel-scroll .review {
  flex: 0 0 250px;
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 10px linear-gradient(285deg, rgba(64, 9, 115, 1) 30%, rgb(8, 8, 87) 80%, rgb(148, 45, 168) 100%);
  transition: transform 0.3s;
}
.carousel-scroll .review:hover {
  transform: scale(1.05);
}
.carousel-scroll .avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 0.5rem;
  object-fit: cover;
}
.carousel-scroll .review-content h3 {
  color: var(--colorText);
  font-size: 3rem;
  margin: 0.5rem 0 0.5rem;
}
.carousel-scroll .stars {
  color: gold;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.carousel-scroll p {
  font-size: 0.5rem;
  color: #3a2f7a;
  text-align: center;
}
.contact-body {
  background: linear-gradient(285deg, rgba(64, 9, 115, 1) 30%, rgb(8, 8, 87) 80%, rgb(148, 45, 168) 100%);
}
/* ================= CARRITO ================= */
#carrito-container {
  max-width: 600px;
  width: 100%;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  color: #332ec9;
  margin: 0 auto;
}

.carrito-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  border-bottom: 1px solid #ddd;
}

.carrito-item:last-child {
  border-bottom: none;
}

.carrito-item button {
  background-color: #007bff;
  border: none;
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
}

.carrito-item button:hover {
  background-color: #0056b3;
}

#total-carrito, #acciones-carrito {
  max-width: 600px;
  margin: 20px auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  text-align: center;
}

#acciones-carrito .button {
  margin-left: 10px;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

#acciones-carrito .button:hover {
  background-color: #004a99;
  color: white;
}

/* === ESTRUCTURA DEL PRODUCTO EN EL CARRITO === */
.item-carrito {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #ccc;
  padding: 20px;
  margin-bottom: 12px;
  border-radius: 6px;
  background-color: #f9f9f9;
  gap: 20px;
  flex-wrap: nowrap;   /* todos los elementos en una línea */
  width: 100%;          /* ocupa todo el ancho disponible */
  box-sizing: border-box;
}

/* Imagen del producto */
.item-carrito img {
  width: 80px;
  height: auto;
  border-radius: 4px;
  flex-shrink: 0;       /* no se reduce */
}

/* Información del producto */
.info-producto {
  flex: 2;
  min-width: 0;         /* permite que se reduzca sin romper el layout */
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Contador de cantidad */
.contador {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 0;
}

.contador button {
  padding: 5px 10px;
  font-size: 16px;
  cursor: pointer;
}

.contador span {
  min-width: 30px;
  text-align: center;
  font-weight: bold;
}

/* Precio */
.importe {
  flex: 1;
  font-size: 16px;
  font-weight: bold;
  text-align: right;
  min-width: 0;
}

/* Botón eliminar */
.eliminar {
  flex-shrink: 0;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 22px;
  color: #c00;
  transition: color 0.3s;
  margin-left: 10px;
}

.eliminar:hover {
  color: #900;
}

/* === CUANDO EL CARRITO ESTÁ VACÍO === */
.carrito-vacio-box {
  background-color: white;
  padding: 20px 10px;
  border-radius: 20px;
  max-width: 400px;
  height: 160px;
  margin: 40px auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.carrito-icono-vacio {
  font-size: 50px;
  color: #2538ca;
  margin-bottom: 10px;
}

.mensaje-carrito-vacio {
  font-size: 20px;
  color: #2538ca;
  margin: 0;
}

.mensaje-carrito-vacio i {
  font-size: 2.5em;
  margin-bottom: 15px;
  display: block;
  color: #007BFF;
}

/* === FONDO Y SECCIÓN PRINCIPAL === */
.carrito-body {
  background: linear-gradient(285deg, rgba(64, 9, 115, 1) 30%, rgb(8, 8, 87) 80%, rgb(148, 45, 168) 100%);
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: white;
}

.carrito-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 6rem; /* Ajustado para que no quede detrás del header */
  gap: 1rem;
  padding: 0 1rem;
}

/* === CONTADOR DEL ICONO DE CARRITO EN NAV === */
nav ul li a.button {
  position: relative;
  display: inline-block;
}

.contador-carrito {
  background-color: fuchsia;
  color: white;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 50%;
  margin-left: 6px;
  font-weight: bold;
}
/* === FORMULARIO DE REGISTRO Y PAGO === */
.formulario-registro-pago {
  max-width: 500px;
  margin: 30px auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  color: #333;
  font-family: 'Montserrat', sans-serif;
}

.formulario-registro-pago h2 {
  text-align: center;
  color: var(--colorText);
  margin-bottom: 20px;
  margin-top: 1rem;
}

.formulario-registro-pago label {
  display: block;
  margin-top: 10px;
  font-weight: 600;
}

.formulario-registro-pago input[type="text"],
.formulario-registro-pago input[type="email"],
.formulario-registro-pago input[type="password"],
.formulario-registro-pago select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
  box-sizing: border-box;
}

.formulario-registro-pago input[type="password"] {
  font-family: 'Courier New', Courier, monospace;
  letter-spacing: 0.2em;
}

/* === DETECCIÓN DE TARJETA === */
#tipo-tarjeta {
  display: block;
  margin-top: -10px;
  margin-bottom: 15px;
  font-weight: bold;
  color: #007bff;
  font-size: 0.9rem;
  text-align: right;
}

/* === BOTÓN FINAL === */
.button-small {
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 4px;
  cursor: pointer;
  background-color: #007bff;
  color: white;
  border: none;
  transition: background-color 0.3s ease;
  font-family: inherit;
  display: inline-block;
  text-align: center;
  user-select: none;
}

.button-small:hover {
  background-color: #0056b3;
}

.button-small:disabled {
  background-color: #a0a0a0;
  cursor: not-allowed;
}

/* === MENSAJES === */
.mensaje-exito {
  color: green;
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
}

.mensaje-error {
  color: red;
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
}
/* ============ ESTILOS POR DEFECTO ============ */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 1rem;
}

.nav-links {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links li a.button {
  padding: 8px 14px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.nav-links li a.button:hover {
  background-color: #0056b3;
}
/* ================= MEDIA QUERIES ================= */
@media (max-width: 768px) {
  .button {
    margin-top: 50px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .header-container {
    flex-direction: column;
    align-items: flex-start;
  }


  .form-busqueda-productos {
    align-items: center;
  }
  .form-busqueda-productos input[type="text"] {
   width: 70%;
  }
  .form-busqueda-productos button {
  width: 25%;
  }

  .contact-section {
    flex-direction: column;
    padding: 3rem 1rem 1rem;
  }
  .contact-form-container {
    margin: 0 1rem;
    padding: 1rem;
    max-width: 95%;
  }
  .contact-form-container form {
    max-width: 100%;
  }
  .carousel-scroll .review {
    flex: 0 0 80%;
    padding: 1rem;
  }
  .carousel-scroll .review-content h3 {
    font-size: 1.2rem;
  }
  #carrito-container,
  #total-carrito,
  #acciones-carrito {
    max-width: 95%;
    padding: 0;
    justify-content: center;
  }
  .item-carrito {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .item-carrito img {
    width: 80px;
  }
  .contador {
    width: 80%;
    justify-content: center;
    gap: 5px;
  }
  .importe {
    width: 80%;
    text-align: center;
  }
.item-carrito {
    flex-direction: column;
    align-items: center;
  }

  .item-carrito img {
    width: 100%;
    max-width: 200px;
    margin-bottom: 10px;
  }

  .info-producto, .contador, .importe {
    width: 80%;
    text-align: center;
  }

  .contador {
    justify-content: center;
  }

  .importe {
    text-align: center;
    margin-top: 10px;
  }

  #total-carrito, #acciones-carrito {
    flex-direction: column;
    align-items: center;
  }

  #acciones-carrito .button {
    width: 100%;
    max-width: 200px;
    margin: 5px 0;
  }
}

/* Ajustes para pantallas muy pequeñas */
@media (max-width: 480px) {
  .logo img {
    width: 3rem;
  }
  .whatsapp-icon {
    bottom: 50px;
  }
  .gif-container {
    flex-wrap: wrap;
    gap: 20px;
  }
  .contact-form-container {
    padding: 1rem;
  }

  .contact-form-container input,
  .contact-form-container textarea,
  .contact-form-container select {
    font-size: 0.95rem;
  }

  .contact-form-container button {
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
  }

  .stars-input label {
    font-size: 1.5rem;
  }

  .carousel-scroll .review {
    flex: 0 0 90%;
    padding: 1rem;
  }

  .carousel-scroll .review-content h3 {
    font-size: 1rem;
  }

  .carousel-scroll p {
    font-size: 0.75rem;
  }
   .item-carrito img {
    width: 50px;
  }

  .contador button {
    padding: 4px 8px;
    font-size: 14px;
  }

  .contador span {
    min-width: 24px;
    font-size: 14px;
  }

  #acciones-carrito {
    flex-direction: column;
    gap: 0.5rem;
  }

  #acciones-carrito .button {
    width: 100%;
    margin-left: 100;
  }
  .button {
    margin-top: 50px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
   #carrito-container {
    padding: 10px 10px;
  }

  .item-carrito {
    padding: 15px;
    gap: 10px;
  }

  .contador button {
    padding: 5px 8px;
    font-size: 14px;
  }

  .importe {
    font-size: 14px;
  }

  .carrito-vacio-box {
    width: 90%;
    height: auto;
    padding: 20px 10px;
  }

  .mensaje-carrito-vacio {
    font-size: 18px;
  }

  .mensaje-carrito-vacio i {
    font-size: 2em;
  }
}

