/* navbar fixed at top */
.navbar-1 {
    /* position: fixed !important; */
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1020 !important;
}


.containeres{
    padding-inline: 1rem;
}




/* Fondo de la pagina */
body{
    background-color: #f5f5f5 !important;
}




/* ================= ESTILOS PARA VARIANTES CON ANIMACIÓN ================= */

.variant-option {
    width: 80px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #dee2e6 !important; /* Borde gris claro por defecto */
    position: relative;
}

.variant-option:hover:not(.variant-disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: #adb5bd !important;
}

/* Variante deshabilitada (sin stock) */
.variant-option.variant-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #f8f9fa;
}

.variant-option.variant-selected::after {
    content: "✓";
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #0d6efd;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Variante seleccionada - Borde azul con animación */
.variant-option.variant-selected {
    border: 2px solid #0d6efd !important;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.2);
    background-color: rgba(13, 110, 253, 0.05);
    transform: translateY(-2px);
}

.variant-option.variant-disabled:hover {
    transform: none;
    box-shadow: none;
    border-color: #dee2e6 !important;
}
.variant-option.variant-disabled img {
    filter: grayscale(100%);
    opacity: 0.6;
}
/* Texto dentro de la variante */
.variant-option small {
    display: block;
    margin-top: 4px;
    font-weight: 500;
}


/* Badge AGOTADO */
.badge-agotado {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #dc3545;
    color: #fff;
    padding: 6px 5px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 4px;
    z-index: 10;
}



/* ================= TEXTO KALYZO ================= */
.no-link-style {
  text-decoration: none;
}

.brand-text {
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  letter-spacing: 5px;
  font-weight: bold;
  font-size: 1.5rem;
  color: #ffffffc0;
  transition: color 0.3s, text-decoration 0.3s;
  padding-left: 25px;
}

.no-link-style:hover .brand-text {
  text-decoration: none;
  color: #ffffff;

}

.btn-dark {
  background-color: #007bff !important;
    border-color: #007bff !important;
}


.bg-primary {
  background:
    radial-gradient(circle at 10% 20%, rgba(0,180,255,0.9), transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(0,150,255,0.85), transparent 45%),
    radial-gradient(circle at 30% 40%, rgba(0,120,240,0.8), transparent 45%),
    radial-gradient(circle at 40% 10%, rgba(0,90,220,0.85), transparent 40%),
    radial-gradient(circle at 50% 90%, rgba(0,160,255,0.8), transparent 50%),
    radial-gradient(circle at 60% 60%, rgba(0,200,255,0.85), transparent 45%),
    radial-gradient(circle at 70% 20%, rgba(0,110,230,0.9), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(0,70,210,0.85), transparent 45%),
    radial-gradient(circle at 90% 50%, rgba(0,140,255,0.9), transparent 45%),
    radial-gradient(circle at 15% 55%, rgba(0,100,200,0.8), transparent 50%),

    radial-gradient(circle at 25% 25%, rgba(0,170,255,0.9), transparent 45%),
    radial-gradient(circle at 35% 75%, rgba(0,130,255,0.85), transparent 45%),
    radial-gradient(circle at 45% 45%, rgba(0,80,190,0.85), transparent 50%),
    radial-gradient(circle at 55% 15%, rgba(0,190,255,0.9), transparent 45%),
    radial-gradient(circle at 65% 85%, rgba(0,120,220,0.8), transparent 50%),
    radial-gradient(circle at 75% 35%, rgba(0,160,240,0.85), transparent 45%),
    radial-gradient(circle at 85% 65%, rgba(0,60,180,0.85), transparent 45%),
    radial-gradient(circle at 95% 25%, rgba(0,100,255,0.9), transparent 40%),

    linear-gradient(
      140deg,
      #001b66,
      #002f99,
      #004bcc,
      #0066ff,
      #008cff,
      #00b3ff
    );

  background-size: 240% 240%;
  animation: canvaGradient 15s ease-in-out infinite;
}

@keyframes canvaGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}



/* Buscador canva pagina completa */

#buscarOffcanvas {
  height: 100vh !important;
  max-height: 100vh !important;
}

/* ============================= */
/* SEARCH OFFCANVAS – CATEGORÍAS */
/* ============================= */

.search-offcanvas-categories {
    margin-top: 10px;
}

/* CARD */
.search-category-card {
    display: block;

}

.search-category-inner {
    position: relative;
    width: 100%;
    height: 140px;
    border-radius: 16px;
    overflow: hidden;
    background: #0066ff;
    transition: transform .35s ease, box-shadow .35s ease;
}

.search-category-inner:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(0,0,0,0.22);
}

/* IMAGEN */
.search-category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.search-category-inner:hover .search-category-img {
    transform: scale(1.08);
}

/* OVERLAY */
.search-category-overlay {
    position: absolute;
    inset: 0;
   
}

/* TEXTO */
.search-category-content {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    color: #fff;
    z-index: 2;
}

.search-category-content h6 {
    font-size: 15px;
}

.search-category-content small {
    font-size: 12px;
    opacity: 0.85;
}
/* ============================= */




/* Estilo de Cards */
.card{
    cursor: pointer;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background:
    radial-gradient(circle at 10% 20%, rgba(0,180,255,0.9), transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(0,150,255,0.85), transparent 45%),
    radial-gradient(circle at 30% 40%, rgba(0,120,240,0.8), transparent 45%),
    radial-gradient(circle at 40% 10%, rgba(0,90,220,0.85), transparent 40%),
    radial-gradient(circle at 50% 90%, rgba(0,160,255,0.8), transparent 50%),
    radial-gradient(circle at 60% 60%, rgba(0,200,255,0.85), transparent 45%),
    radial-gradient(circle at 70% 20%, rgba(0,110,230,0.9), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(0,70,210,0.85), transparent 45%),
    radial-gradient(circle at 90% 50%, rgba(0,140,255,0.9), transparent 45%),
    radial-gradient(circle at 15% 55%, rgba(0,100,200,0.8), transparent 50%),

    radial-gradient(circle at 25% 25%, rgba(0,170,255,0.9), transparent 45%),
    radial-gradient(circle at 35% 75%, rgba(0,130,255,0.85), transparent 45%),
    radial-gradient(circle at 45% 45%, rgba(0,80,190,0.85), transparent 50%),
    radial-gradient(circle at 55% 15%, rgba(0,190,255,0.9), transparent 45%),
    radial-gradient(circle at 65% 85%, rgba(0,120,220,0.8), transparent 50%),
    radial-gradient(circle at 75% 35%, rgba(0,160,240,0.85), transparent 45%),
    radial-gradient(circle at 85% 65%, rgba(0,60,180,0.85), transparent 45%),
    radial-gradient(circle at 95% 25%, rgba(0,100,255,0.9), transparent 40%),

    linear-gradient(
      140deg,
      #001b66,
      #002f99,
      #004bcc,
      #0066ff,
      #008cff,
      #00b3ff
    );

  background-size: 240% 240%;
  animation: canvaGradient 15s ease-in-out infinite;
}

@keyframes canvaGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}



/* Contenedor de la imagen con altura fija */
.img-container {
    height: 180px; /* Mantener todas las imágenes iguales */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.img-container img {
    object-fit: contain;
    height: 100%;
    width: auto;
}

/* Badge de descuento */
/* Badge vertical de descuento */
.badge-discount {
    position: absolute;
    top: 35px;
    left: -37px;
    background-color: #be0000;
    color: #fff;
    padding: 6px 40px;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
    transform: rotate(-45deg);
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    /* animation: breathing 2.5s ease-in-out infinite; */
    pointer-events: none;
}

/* Animación suave */
/* @keyframes breathing {
    0% {
        transform: rotate(-45deg) scale(1);
    }
    50% {
        transform: rotate(-45deg) scale(1.05);
    }
    100% {
        transform: rotate(-45deg) scale(1);
    }
} */





/* CARD con altura FIJA TOTAL (evita que se expanda con zoom) */
/* ============================= */
/* PRODUCT CARD – PREMIUM STYLE */
/* ============================= */

.product-card {
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: transform .35s ease, box-shadow .35s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

/* IMAGEN */
.product-card .img-container {
    height: 230px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}


.product-card img {
    max-height: 200px;
    object-fit: contain;
    transition: transform .4s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}



/* BODY */
.product-card .card-body {
    padding: 14px 16px 8px;
}

.product-card .card-title {
    font-size: 15px;
    line-height: 1.3;
}

/* FOOTER */
.product-card .card-footer {
    padding: 10px 16px 14px;
}

.product-card .bi-bag-plus {
    transition: transform .25s ease;
}

.product-card .bi-bag-plus:hover {
    transform: scale(1.15);
}

/* RATING */
.product-card span.text-warning {
    font-size: 14px;
    padding: 0 16px 12px;
}


/* Cuerpo del card con medida fija */
.content-area {
    flex: 1;
    height: 100px; /* 🔹 Ajusta según tu contenido */
    max-height: 100px;
    overflow: hidden;
}

/* Footer con medida fija */
.footer-area {
    height: 60px;
    max-height: 60px;
    overflow: hidden;
}


.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background:
    radial-gradient(circle at 10% 20%, rgba(0,180,255,0.9), transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(0,150,255,0.85), transparent 45%),
    radial-gradient(circle at 30% 40%, rgba(0,120,240,0.8), transparent 45%),
    radial-gradient(circle at 40% 10%, rgba(0,90,220,0.85), transparent 40%),
    radial-gradient(circle at 50% 90%, rgba(0,160,255,0.8), transparent 50%),
    radial-gradient(circle at 60% 60%, rgba(0,200,255,0.85), transparent 45%),
    radial-gradient(circle at 70% 20%, rgba(0,110,230,0.9), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(0,70,210,0.85), transparent 45%),
    radial-gradient(circle at 90% 50%, rgba(0,140,255,0.9), transparent 45%),
    radial-gradient(circle at 15% 55%, rgba(0,100,200,0.8), transparent 50%),

    radial-gradient(circle at 25% 25%, rgba(0,170,255,0.9), transparent 45%),
    radial-gradient(circle at 35% 75%, rgba(0,130,255,0.85), transparent 45%),
    radial-gradient(circle at 45% 45%, rgba(0,80,190,0.85), transparent 50%),
    radial-gradient(circle at 55% 15%, rgba(0,190,255,0.9), transparent 45%),
    radial-gradient(circle at 65% 85%, rgba(0,120,220,0.8), transparent 50%),
    radial-gradient(circle at 75% 35%, rgba(0,160,240,0.85), transparent 45%),
    radial-gradient(circle at 85% 65%, rgba(0,60,180,0.85), transparent 45%),
    radial-gradient(circle at 95% 25%, rgba(0,100,255,0.9), transparent 40%),

    linear-gradient(
      140deg,
      #001b66,
      #002f99,
      #004bcc,
      #0066ff,
      #008cff,
      #00b3ff
    );

  background-size: 240% 240%;
  animation: canvaGradient 15s ease-in-out infinite;
}

@keyframes canvaGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}




/* Texto animado */
.contenedor-del-texto {
  overflow: hidden;
  white-space: nowrap;
  font-weight: bold;
  background-color: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  position: sticky;      /* ¡Esta es la clave! */
  top: 0;                /* Se pega arriba cuando haces scroll */
  height: 30px;
  z-index: 1030;
  width: 100%;
}

.texto-animado {
  display: inline-block;
  animation: mover-texto 15s linear infinite;
  font-size: 12px;
}

@keyframes mover-texto {
  0% {
    transform: translateX(100vw);
  }
  100% {
    transform: translateX(-100%);
  }
}
  



/* Ajustar img en carrusel */
.edit_img {
  cursor: pointer;
  width: 100%;
  height: 400px;          /* Ajusta la altura del carrusel */
  object-fit: cover;      /* Recorta sin deformar */
  border-radius: 10px;   /* Bordes redondeados */
  position: relative; 
}


/* Linea que separa hr */
.hr-separador {
    border-top: 2px solid #ccc; /* Cambia el color y grosor según tus necesidades */
    margin: 40px 0; /* Espaciado arriba y abajo */
}



/* Página de detalle de producto */
.product-box {
    background: #ffffff;
}


/* Contenedor de imágenes del producto */
.main-product-image {
    width: 450px;
    height: 450px;
    object-fit: contain; /* no recorta el producto */
    border-radius: 12px;
    border: 2px solid #f0f0f0;
    background-color: #fff;
    max-width: 100%;
}

.product-thumb {
    width: 70px;
    height: 70px;
    object-fit: contain;
    padding: 5px;
    border: 2px solid #f0f0f0;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.2s ease;
    max-width: 100%;
    flex-shrink: 0; /* IMPORTANTE para scroll */
}


.product-car {
    width: 120px;
    height: 120px;
    object-fit: contain;
    padding: 5px;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    max-width: 100%;
    flex-shrink: 0; /* IMPORTANTE para scroll */
}



/* ===== DESKTOP ===== */
@media (min-width: 768px) {
    .thumbnail-column {
        flex-direction: column;
        max-height: 450px;      /* ALTURA DEL SCROLL */
        overflow-y: auto;
        overflow-x: hidden;
        padding: 4px;
    }

    /* Scroll bonito */
    .thumbnail-column::-webkit-scrollbar {
        width: 4px;
    }

    /* .thumbnail-column::-webkit-scrollbar-thumb {
        background: #d0d0d0;
        border-radius: 10px;
    } */
}

/* ===== MOBILE ===== */
@media (max-width: 767px) {
    .thumbnail-column {
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        max-width: 100%;
        padding: 4px;
    }

    .thumbnail-column::-webkit-scrollbar {
        height: 4px;
    }


}


.product-thumb:hover {
    border-color: #0066ff;
    transform: scale(1.05);
}

.product-thumb.active {
    border-color: #0066ff;
    box-shadow: 0 0 0 2px rgba(0,102,255,0.2);
}


/* Columna vertical de miniaturas */
.thumbnail-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}



.variant-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.product-description {
    color: #555;
    line-height: 1.7;
}

/* MOBILE */
@media (max-width: 768px) {
    .product-images {
        flex-direction: column;
    }

    .thumbnail-column {
        flex-direction: row;
        gap: 10px;
        margin-bottom: 15px;
    }
}

/* ######################################################## */

/* ===============================
    DETALLE DE PRODUCTO
================================ */

/* Estilo de precios en la página de detalle del producto */
.price-box {
    font-size: 1.5rem;
}

.price-line {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-label {
    font-weight: 600;
    color: #555;
}

.price-old {
    color: #580000;
    text-decoration: line-through;
}

.price-new {
    color: #0d6efd;
    font-weight: 700;
    font-size: 1.4rem;
}

.product-detail-row {
    overflow: visible;
}


/* ######################################################## */


/* ===============================
   SIDEBAR STICKY CON SCROLL SUAVE
================================ */

/* Sidebar sticky con scroll suave */
.sidebar-sticky {
    position: sticky;
    top: 40px;
    align-self: flex-start;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    scroll-behavior: smooth; /* ← Scroll suave */
}

/* Scrollbar personalizada (opcional) */

.sidebar-sticky::-webkit-scrollbar {
    width: 6px;
}

.sidebar-sticky::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.sidebar-sticky::-webkit-scrollbar-thumb {
    background: rgba(13, 110, 253, 0.3);
    border-radius: 10px;
}


.sidebar-sticky::-webkit-scrollbar-thumb:hover {
    background: rgba(13, 110, 253, 0.5);
}

/* Mobile - desactivar sticky */
@media (max-width: 991px) {
    .sidebar-sticky {
        position: static;
        top: auto;
        max-height: none;
        overflow-y: visible;
    }
}


/* ######################################################## */


/* ===============================
   SLIDER DESTACADOS
================================ */

.featured-slider {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.75rem;
    overflow-x: auto;     /* ✅ PERMITE SCROLL */
    scroll-behavior: smooth;
}

/* Ocultar scrollbar visualmente pero mantener funcionalidad */
.featured-slider::-webkit-scrollbar {
    height: 0;
}

/* Respetar tamaño real del card */
.featured-item {
    flex: 0 0 250px;
}

/* Neutraliza col-* SOLO dentro del slider */
.featured-item [class*="col-"] {
    width: auto !important;
    flex: 0 0 auto !important;
}


/* Botones */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(121, 204, 252, 0.9);
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
}


.slider-btn.left {
    left: -40px;
}

.slider-btn.right {
    right: -60px;
}


/* Mobile */ 
@media (max-width: 768px) 
{   .slider-btn 
    { display: none; } 
}


/* ######################################################## */




/* ===============================
   CARD CATEGORÍA
================================ */
 
/* CARD CATEGORÍA */
.category-card {
    display: block;
    width: 100%;
}

.category-card-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1; /* 🔥 cuadrada siempre */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    transition: transform .25s ease, box-shadow .25s ease;
}

.category-card-inner:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.2);
}

/* IMAGEN */
.category-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OVERLAY AZUL */
.category-card-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0.05) 0%,
            rgba(0,0,0,0.25) 60%,
            rgba(0,0,0,0.45) 100%
        );
        
    z-index: 1;
    transition: opacity .35s ease;
}

.category-card-inner:hover .category-card-overlay {
    opacity: 0.5;
}

/* TEXTO */
.category-card-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    color: #fff;
    text-align: center;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.category-card-inner:hover .category-card-content {
    transform: translateY(2px);
}

.category-card-content h6 {
    font-weight: 700;
    font-size: 1.1rem;
}



.category-card-content h6 {
    letter-spacing: .5px;
    text-transform: uppercase;
}

.category-card-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}

.category-card-content small {
    opacity: .85;
    font-size: .75rem;
    letter-spacing: .8px;
    text-transform: uppercase;
}


/* ============================= */
/* RESPONSIVE CATEGORY CARD */
/* ============================= */

/* Desktop grande */
@media (min-width: 1200px) {
    .category-card-inner {
        border-radius: 14px;
    }

    .category-card-content h6 {
        font-size: 1.15rem;
    }
}

/* Tablets */
@media (max-width: 991px) {
    .category-card-inner {
        border-radius: 12px;
    }

    .category-card-content h6 {
        font-size: 1rem;
    }
}

/* Mobile */
@media (max-width: 575px) {
    

    



    .category-card-inner {
        aspect-ratio: 4 / 3; /* 🔑 menos alta */
        border-radius: 12px;
    }
    /* Quitar hover en mobile */
    .category-card-inner:hover {
        transform: none;
        box-shadow: 0 6px 14px rgba(0,0,0,0.12);
    }

    .category-card-overlay {
        opacity: 0.85;
    }

    .category-card-content {
        justify-content: flex-end;
        padding-bottom: 16px;
                font-size: 0.95rem;

    }
}



/* ===========================
   SCROLL HORIZONTAL UNIVERSAL
   =========================== */

.category-scroll {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 10px 4px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.category-scroll::-webkit-scrollbar {
    display: none;
}


/* ocultar scrollbar */


/* ===========================
   ANCHO DE CARDS POR BREAKPOINT
   =========================== */

.category-col {
    flex: 0 0 auto;
    width: 160px; /* mobile */
    scroll-snap-align: start;
}


/* Mobile */
@media (max-width: 575px) {
    .category-col {
        width: 40%;
    }
}

/* Tablet */
@media (min-width: 576px) and (max-width: 991px) {
    .category-col {
        width: 40%;
    }
}

/* Desktop */
/* @media (min-width: 992px) {
    .category-col {
        width: 15%;
    }
} */

.category-scroll {
    scroll-snap-type: x mandatory;
}

.category-col {
    scroll-snap-align: start;
}

@media (min-width: 992px) {
    .category-scroll {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 16px;
        overflow: visible;
    }

    .category-col {
        width: auto;
    }
}




/* ######################### CARD DESTACADO PERMITE QUE SE LE SOBRE PONGAN LOS DATSO ENCIMA DE LA IMAGEN############################### */
.featured-overlay-card {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
}

.featured-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.featured-overlay-card:hover .featured-image {
    transform: scale(1.06);
}

/* Nombre abajo */
.featured-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 12px;
    background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
}

.featured-title {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

/* Descuento */
.badge-discount-des{
    position: absolute;
    top: 10px;
    left: 10px;
    background: #dc3545;
    color: #fff;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 6px;
}

/* Agotado */
.badge-agotado-des {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #000;
    color: #fff;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 6px;
}



/* ###################### TITULO PARA LAS SESIONES MEJORADO  ################################## */



.section-title {
    font-weight: 800;
    font-size: 28px;
    color: #0b1b4d;
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 5px;
    border-radius: 4px;
    background:
    radial-gradient(circle at 10% 20%, rgba(0,180,255,0.9), transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(0,150,255,0.85), transparent 45%),
    radial-gradient(circle at 30% 40%, rgba(0,120,240,0.8), transparent 45%),
    radial-gradient(circle at 40% 10%, rgba(0,90,220,0.85), transparent 40%),
    radial-gradient(circle at 50% 90%, rgba(0,160,255,0.8), transparent 50%),
    radial-gradient(circle at 60% 60%, rgba(0,200,255,0.85), transparent 45%),
    radial-gradient(circle at 70% 20%, rgba(0,110,230,0.9), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(0,70,210,0.85), transparent 45%),
    radial-gradient(circle at 90% 50%, rgba(0,140,255,0.9), transparent 45%),
    radial-gradient(circle at 15% 55%, rgba(0,100,200,0.8), transparent 50%),

    radial-gradient(circle at 25% 25%, rgba(0,170,255,0.9), transparent 45%),
    radial-gradient(circle at 35% 75%, rgba(0,130,255,0.85), transparent 45%),
    radial-gradient(circle at 45% 45%, rgba(0,80,190,0.85), transparent 50%),
    radial-gradient(circle at 55% 15%, rgba(0,190,255,0.9), transparent 45%),
    radial-gradient(circle at 65% 85%, rgba(0,120,220,0.8), transparent 50%),
    radial-gradient(circle at 75% 35%, rgba(0,160,240,0.85), transparent 45%),
    radial-gradient(circle at 85% 65%, rgba(0,60,180,0.85), transparent 45%),
    radial-gradient(circle at 95% 25%, rgba(0,100,255,0.9), transparent 40%),

    linear-gradient(
      140deg,
      #001b66,
      #002f99,
      #004bcc,
      #0066ff,
      #008cff,
      #00b3ff
    );

  background-size: 240% 240%;
  animation: canvaGradient 15s ease-in-out infinite;
}

@keyframes canvaGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}




/*###############  Estilo para el carrousell  ######################### */

/* CONTENEDOR */
#carouselExampleCaptions {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,.15);
}

/* IMÁGENES */
.edit_img {
    height: 420px;
    object-fit: cover;
}

/* Desktop grande */
@media (min-width: 1200px) {
    .edit_img {
        height: 520px;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .edit_img {
        height: 260px;
    }
}



/* ###################### BOTONES ANIMADOS ################################## */
.btn-animate {
    transition: all 0.3s ease;
}

.btn-animate:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}

.btn-pay{
    animation:
        payShake 3.5s infinite,
        payPulse 2.5s infinite;
}