.custom-head {
  background: #081825;
  color: #fff;
  padding: 5px;
}

.custom-head .form-control,
.custom-head .btn {
  border-radius: 0;
}

/* Header móvil personalizado */
.mobile-header {
  background: #081825 !important;
  height: 55px;
}

/* Que el contenido general no quede oculto debajo del header móvil */
@media (max-width: 991.98px) {
  body {
    padding-top: 0px; /* da espacio debajo del header y buscador */
  }

  /* Ocultar el logo original y el carrito del header desktop */
  .custom-head .logo-wrapper,
  .custom-head .carrito-wrapper {
    display: none !important;
  }

  /* Ocultar buscador del header desktop en móvil */
  .custom-head .col-md-3:first-child {
    display: none !important;
  }

  /* Mostrar correctamente el menú hamburguesa */
  nav.navbar .navbar-toggler {
    display: none !important; /* ocultamos el duplicado en nav */
  }
}

/* Estilos para header móvil fijo */
.mobile-header {
  background: #081825 !important; /* mismo color */
  color: #fff;
  height: 50px;
}

/* Opcional: botón hamburguesa sin padding y sin borde para que quede más compacto */
.mobile-header .navbar-toggler {
  padding: 0;
  border: none;
}

/* Ajustar tamaño logo en móvil */
.mobile-header .navbar-brand img {
  max-height: 40px;
}

/* FIN MENU SUPERIOR */
/* Estilo para reemplazar el text-success */
.text-success {
    color: #081825 !important; /* Rojo fuerte */
    font-weight: bold;
}
.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

/* Estilo personalizado para btn-primary */
.btn-primary {
    background: linear-gradient(to right, #809bce, #809bce); /* Rojo Naldo */
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 0.5rem;
    padding: 0.4rem 1rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: all 0.3s ease-in-out;
}

.btn-primary:hover,
.btn-primary:focus {
    background: linear-gradient(to right, #95b8d1, #95b8d1);
    color: #fff;
    transform: scale(1.03);
}
.btn-outline-primary {
    background-color: transparent;
    border: 1px solid #95b8d1; /* Borde violeta */
    color: #95b8d1; /* Texto violeta */
    font-weight: 600;
    border-radius: 0.5rem;
    padding: 0.4rem 1rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}
.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background: linear-gradient(to right, #95b8d1, #95b8d1);
    color: #fff;
    border-color: #95b8d1; /* tono más oscuro al pasar el mouse */
}


/*propio menu*/
.btn-carro {
    background: linear-gradient(to right, #081825, #081825); /* Rojo Naldo */
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 0.5rem;
    padding: 0.4rem 1rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: all 0.3s ease-in-out;
}

.btn-carro:hover,
.btn-carro:focus {
    background: linear-gradient(to right, #081825, #081825);
    color: #fff;
    transform: scale(1.03);
}


/*CARRUSEL INFINITO LISTO NO TOCAR MAS*/
.marquee-container {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    background-color: #fff;
}

.marquee {
    display: flex;
    animation: scroll-marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-content {
    display: flex;
}

.img-marquee {
    height: 150px;
    margin-right: 0.75rem; /* Menor separación entre imágenes */
    margin-left: 0.75rem;
    border-radius: 8px;
    object-fit: contain;
    transition: transform 0.3s;
}

.img-marquee:hover {
    transform: scale(1.05);
}

@keyframes scroll-marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.marquee-container:hover .marquee {
    animation-play-state: paused;
    cursor: pointer;
}

/* Responsivo CAMBIOS DE TAMAÑO*/
@media (max-width: 992px) { /* tablets */
    .img-marquee {
        height: 130px;
        margin: 0 0.5rem;
    }
}

@media (max-width: 576px) { /* móviles */
    .img-marquee {
        height: 100px;
        margin: 0 0.3rem;
    }
}
/* FIN CARRUSEL INFINITO LISTO NO TOCAR MAS*/


.badge-soft-success {
  background-color: #b8e0d2;
  color: #000000;
}

