/* ==========================================================================
   ESTILOS GENERALES Y DISEÑO DE LA PÁGINA DE PRODUCTOS
   Comercializadora Robles Aceves y Asociados
   ========================================================================== */

html {
    scroll-behavior: smooth;
}

body {
    background: #f7f7f5;
    color: #2b2b2b;
    font-family: 'Noto Serif', serif;
}

/* Evitar que la navbar y la barra de filtros tapen los títulos al navegar por anclajes */
section[id^="seccion"] {
    scroll-margin-top: 145px;
}

@media (min-width: 1200px) {
    .container {
        max-width: 90% !important;
    }
}

/* ==========================================================================
   1. MENÚ LATERAL DE CATEGORÍAS (SIDEBAR)
   ========================================================================== */

/* Botón de categorías integrado en la barra de filtros */
.btn-abrir-categorias {
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
    z-index: 10;
    background: #00177c;
    color: #ffffff;
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
    font-family: 'Noto Serif', serif;
    font-size: 0.88rem;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(0, 23, 124, 0.22);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-abrir-categorias:hover {
    background: #b8860b;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(184, 134, 11, 0.35);
    text-decoration: none;
}

/* Panel lateral deslizante */
.panel-categorias-productos {
    position: fixed;
    top: 95px;
    left: 18px;
    width: 285px;
    max-height: 78vh;
    overflow-y: auto;
    background: #ffffff;
    border-radius: 24px;
    padding: 18px;
    z-index: 9998;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
    transform: translateX(-120%);
    opacity: 0;
    transition: all 0.35s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
    font-family: 'Noto Serif', serif;
}

.panel-categorias-productos.activo {
    transform: translateX(0);
    opacity: 1;
}

/* Encabezado del panel lateral */
.panel-categorias-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 12px;
}

.panel-categorias-header h4 {
    color: #00177c;
    font-size: 1.25rem;
    font-weight: bold;
    margin: 0;
}

.panel-categorias-header h4::after {
    content: "";
    display: block;
    width: 55px;
    height: 3px;
    background: #b8860b;
    border-radius: 20px;
    margin-top: 8px;
}

.panel-categorias-header button {
    background: #f3eee6;
    color: #00177c;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.panel-categorias-header button:hover {
    background: #b8860b;
    color: white;
}

/* Enlaces del panel */
.panel-categorias-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.panel-categorias-links a {
    color: #222;
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.93rem;
    transition: all 0.3s ease;
}

.panel-categorias-links a i {
    color: #00177c;
    width: 18px;
    text-align: center;
}

.panel-categorias-links a:hover {
    background: #f8f6f0;
    color: #b8860b;
    text-decoration: none;
    transform: translateX(5px);
}

.panel-categorias-links a:hover i {
    color: #b8860b;
}

/* Fondo oscuro translúcido al abrir panel */
.fondo-categorias {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 9996;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.fondo-categorias.activo {
    opacity: 1;
    pointer-events: auto;
}

/* ==========================================================
   2. CARRUSEL DE OFERTAS Y TÍTULOS
   ========================================================== */

#seccion0 {
    padding-top: 110px;
    margin-bottom: 45px;
}

#carouselExampleControls {
    max-width: 430px;
    margin: 0 auto;
}

.img-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 100%;
}

.img-wrapper img {
    width: 100%;
    max-width: 430px;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Título de la sección general */
section.container.my-5:not([id]) h2 {
    color: #111;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 18px;
}

section.container.my-5:not([id]) p {
    color: #6c757d;
    font-size: 1.1rem;
}

/* Títulos de categorías de productos */
section[id^="seccion"] > h2 {
    color: #00177c;
    font-size: 2.2rem;
    font-weight: bold !important;
    letter-spacing: 1px;
    margin-bottom: 38px !important;
    position: relative;
    text-align: center;
}

section[id^="seccion"] > h2::after {
    content: "";
    width: 90px;
    height: 4px;
    background: #b8860b;
    display: block;
    margin: 16px auto 0 auto;
    border-radius: 20px;
}

/* ==========================================================
   3. TARJETAS DE PRODUCTOS (GRID Y CARDS)
   ========================================================== */

.row.g-4 > .col {
    margin-bottom: 30px;
}

.product-card {
    border-radius: 26px !important;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10) !important;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    height: 440px !important;
    min-height: 440px !important;
    max-height: 440px !important;
    width: 100% !important;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16) !important;
}

/* Contenedor de la imagen de producto */
.card-img-wrapper {
    position: relative;
    height: 235px;
    background: #faf7f0;
    padding: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.card-img-wrapper img, .card-img-top {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.4s ease;
}

.product-card:hover .card-img-wrapper img {
    transform: scale(1.06);
}

/* Cuerpo de la tarjeta */
.product-card .card-body {
    padding: 22px 18px 24px 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card .card-title {
    color: #00177c;
    font-weight: bold;
    font-size: 1.08rem;
    line-height: 1.35;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    text-align: center;
}

/* Mensaje corto de confianza en tarjeta */
.producto-confianza {
    font-size: 0.86rem;
    color: #555;
    background: #f8f6f0;
    border-left: 4px solid #b8860b;
    padding: 8px 10px;
    border-radius: 12px;
    margin: 0 0 16px 0;
    line-height: 1.4;
    text-align: left;
}

.producto-confianza i {
    color: #b8860b;
    margin-right: 5px;
}

/* ==========================================================
   4. BOTONES Y DROPDOWNS DE ACCIÓN
   ========================================================== */

/* Botón Cotizar Producto */
.botones {
    background: #00177c !important;
    color: white !important;
    border: none !important;
    border-radius: 30px !important;
    padding: 10px 20px !important;
    font-weight: bold !important;
    font-family: 'Noto Serif', serif !important;
    box-shadow: 0 6px 16px rgba(0, 23, 124, 0.22) !important;
    transition: all 0.3s ease !important;
    cursor: pointer;
}

.botones:hover {
    background: #b8860b !important;
    color: white !important;
    transform: translateY(-3px) scale(1.04) !important;
    box-shadow: 0 10px 22px rgba(184, 134, 11, 0.32) !important;
}

/* Menú Desplegable Contactar */
.dropdown-menu {
    border-radius: 16px;
    border: none;
    padding: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.16);
}

.dropdown-menu .dropdown-item {
    border-radius: 10px;
    padding: 9px 12px;
    font-family: 'Noto Serif', serif;
}

.dropdown-menu .dropdown-item:hover {
    background: #f3eee6;
    color: #b8860b;
}

/* ==========================================================
   5. BOTÓN FLOTANTE DE WHATSAPP
   ========================================================== */

.whatsapp-flotante {
    position: fixed;
    right: 25px;
    bottom: 25px;
    background: #25d366;
    color: white !important;
    height: 58px;
    padding: 0 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Noto Serif', serif;
    font-size: 17px;
    font-weight: bold;
    text-decoration: none !important;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
    z-index: 9999;
    transition: all 0.35s ease;
}

.whatsapp-flotante:hover {
    background-color: #20ba5a;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
}

/* ==========================================================
   6. DISEÑO RESPONSIVO (MEDIA QUERIES)
   ========================================================== */

@media (max-width: 768px) {
    /* Ajustes generales carrusel móvil */
    #seccion0 {
        padding-top: 95px;
        margin-bottom: 35px;
    }

    #carouselExampleControls {
        max-width: 320px;
    }

    .img-wrapper img {
        max-width: 320px;
    }

    /* Redimensionar textos en móviles */
    section.container.my-5:not([id]) h2 {
        font-size: 2rem;
    }

    section[id^="seccion"] > h2 {
        font-size: 1.65rem;
        line-height: 1.35;
    }

    /* Tarjetas de productos en móviles */
    .card-img-wrapper {
        height: 190px;
        padding: 12px;
    }

    .product-card {
        border-radius: 22px !important;
    }

    .product-card .card-title {
        font-size: 0.98rem;
        min-height: auto;
    }

    .producto-confianza {
        font-size: 0.8rem;
    }

    .botones {
        font-size: 0.82rem !important;
        padding: 9px 14px !important;
    }

    /* Botón móvil de categorías */
    .btn-abrir-categorias {
        padding: 8px 14px;
        font-size: 0.82rem;
    }

    /* Panel móvil de categorías */
    .panel-categorias-productos {
        top: auto;
        left: 12px;
        right: 12px;
        bottom: 80px;
        width: auto;
        max-height: 65vh;
        border-radius: 24px;
    }
}

/* ==========================================================
   MEJORAS PREMIUM DE CARRUSEL Y PRODUCTOS
   ========================================================== */
#seccion0 {
    padding-top: 110px;
    margin-bottom: 45px;
}
@media (max-width: 768px) {
    #seccion0 {
        padding-top: 95px;
    }
}
#carouselExampleControls {
    max-width: 1150px;
    margin: 0 auto;
}
.img-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
}
.img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.img-wrapper img:hover {
    transform: scale(1.035);
    box-shadow: 0 12px 30px rgba(1, 35, 113, 0.15);
}
.carousel-flecha {
    font-size: 2.8rem;
    color: rgb(1, 35, 113) !important;
    transition: all 0.35s ease;
}
.carousel-control-prev:hover .carousel-flecha,
.carousel-control-next:hover .carousel-flecha {
    color: #b8860b !important;
    transform: scale(1.2);
}
@media (min-width: 1200px) {
    .carousel-control-prev {
        left: -80px !important;
        width: 50px !important;
    }
    .carousel-control-next {
        right: -80px !important;
        width: 50px !important;
    }
}

/* ==========================================================
   7. NUEVO DISEÑO LUXURY DE PÁGINA DE PRODUCTOS (V3)
   ========================================================== */

/* 1. HERO PRINCIPAL DE PRODUCTOS */
.hero-productos-section {
    position: relative;
    background: #111113;
    padding: 130px 0 60px 0;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-video-bg {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    z-index: 1 !important;
    opacity: 0.85 !important;
    pointer-events: none !important;
}

.hero-video-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, rgba(10, 14, 24, 0.75) 0%, rgba(10, 14, 24, 0.45) 55%, rgba(10, 14, 24, 0.20) 100%) !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

.video-movilidad {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 24px !important;
    display: block !important;
    box-shadow: 0 16px 36px rgba(0,0,0,0.15) !important;
}

.hero-productos-title {
    font-family: 'Noto Serif', serif !important;
    font-size: 3.2rem !important;
    font-weight: 800 !important;
    line-height: 1.15 !important;
    margin-bottom: 16px !important;
    color: #ffffff !important;
}

.hero-productos-title em {
    font-style: italic !important;
    color: #b8860b !important;
    font-weight: 400 !important;
}

.hero-productos-desc {
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 480px;
    line-height: 1.6;
}

.hero-productos-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.badge-feature-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 16px 18px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.badge-feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-3px);
}

.badge-feature-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.15);
    color: #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.badge-feature-info h6 {
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 700;
    margin: 0 0 3px 0;
}

.badge-feature-info p {
    color: #aaa;
    font-size: 0.78rem;
    margin: 0;
    line-height: 1.3;
}

/* 2. BARRA DE BÚSQUEDA Y FILTROS HORIZONTALES (FILTER PILLS) */
.bar-busqueda-filtros-productos {
    background: #ffffff !important;
    padding: 16px 0 14px 0 !important;
    border-bottom: 1px solid #eae7e0 !important;
    position: sticky !important;
    top: 65px !important;
    z-index: 1000 !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04) !important;
}

.container-filtros-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.box-buscador-catalogo {
    position: relative;
    width: 280px;
    flex-shrink: 0;
}

.box-buscador-catalogo i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 0.95rem;
}

.input-busqueda-catalogo {
    width: 100%;
    padding: 10px 16px 10px 42px;
    border-radius: 30px;
    border: 1px solid #dedace;
    background: #ffffff;
    font-size: 0.9rem;
    color: #222;
    transition: all 0.3s ease;
}

.input-busqueda-catalogo:focus {
    outline: none;
    border-color: #00177c;
    box-shadow: 0 0 0 3px rgba(0, 23, 124, 0.12);
}

.filter-pills-carousel {
    display: flex !important;
    align-items: center !important;
    position: relative !important;
    overflow: visible !important;
    flex-grow: 1 !important;
    gap: 8px !important;
    min-width: 0 !important;
}

.filter-pills-track {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    overflow-x: auto !important;
    scroll-behavior: smooth !important;
    scrollbar-width: none !important;
    padding: 4px 0 !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
}

.filter-pills-track::-webkit-scrollbar {
    display: none;
}

.pill-cat {
    background: #ffffff;
    border: 1px solid #e2ded5;
    color: #444444;
    padding: 7px 18px;
    border-radius: 25px;
    font-size: 0.84rem;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.pill-cat:hover {
    border-color: #00177c;
    color: #00177c;
    background: #f4f6fc;
}

.pill-cat.active {
    background: #2a5a44; /* Verde satinado como la referencia de la captura */
    color: #ffffff;
    border-color: #2a5a44;
    box-shadow: 0 4px 12px rgba(42, 90, 68, 0.25);
}

.btn-filter-nav {
    background: #ffffff !important;
    border: 1.5px solid #00177c !important;
    color: #00177c !important;
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    min-height: 36px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.9rem !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
    transition: all 0.25s ease !important;
    z-index: 10 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
}

.btn-filter-nav:hover {
    background: #00177c !important;
    color: #ffffff !important;
}

/* 3. REJILLA DE TARJETAS DE PRODUCTO ESTILO ALIADOS (LUXURY) */
.product-card {
    position: relative !important;
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 20px !important;
    overflow: visible !important; /* Permitir que el cuadro de cotizar sobresalga a plena vista */
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03) !important;
    z-index: 1 !important;
}

.product-card:hover,
.product-card.has-dropdown-open {
    z-index: 500 !important;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.09) !important;
    border-color: rgba(0, 23, 124, 0.25) !important;
}

.card-heart-icon {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 10;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.card-heart-icon:hover, .card-heart-icon.active {
    color: #e74c3c;
    background: #ffffff;
    transform: scale(1.1);
}

.product-card .card-img-wrapper {
    height: 230px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.product-card .card-img-top {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product-card:hover .card-img-top {
    transform: scale(1.06);
}

.product-card .card-body {
    padding: 18px 20px 22px 20px !important;
    text-align: left !important;
    background: #ffffff;
    border-radius: 0 0 20px 20px;
}

.product-card .dropdown {
    position: relative !important;
    z-index: 550 !important;
}

.product-card .dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    z-index: 600 !important;
    min-width: 220px !important;
    background: #ffffff !important;
    border: 2px solid #b8860b !important;
    border-radius: 16px !important;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.25) !important;
    padding: 12px 10px !important;
    margin-top: 6px !important;
}

.product-card .dropdown-menu.show {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.product-card .dropdown-menu li {
    margin-bottom: 8px;
    list-style: none !important;
}

.product-card .dropdown-menu li:last-child {
    margin-bottom: 0;
}

.product-card .dropdown-menu .dropdown-item,
.product-card .dropdown-menu .btn {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 10px 14px !important;
    border-radius: 10px !important;
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    width: 100% !important;
    box-shadow: none !important;
}

.product-card .dropdown-menu .dropdown-item {
    background: #25d366 !important;
    color: #ffffff !important;
}

.product-card .dropdown-menu .dropdown-item:hover {
    background: #1eb956 !important;
}

.product-card .dropdown-menu .btn-danger {
    background: #ea4335 !important;
    color: #ffffff !important;
    border: none !important;
}

.product-card .dropdown-menu .btn-danger:hover {
    background: #d33426 !important;
}

.card-cat-tag {
    font-size: 0.68rem;
    font-weight: 800;
    color: #2a5a44; /* Tono verde elegante de categoría como el de la captura */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
    display: block;
}

.product-card .card-title {
    font-family: 'Noto Serif', serif !important;
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    color: #111111 !important;
    margin-bottom: 4px !important;
    line-height: 1.35;
}

.card-subtitulo-codigo {
    font-size: 0.78rem;
    color: #888888;
    margin-bottom: 14px;
    display: block;
}

.btn-solicitar-cotizacion-card {
    width: 100%;
    background: #fcf9f4;
    color: #555555;
    border: 1px solid #ebd9c5;
    border-radius: 8px;
    padding: 9px 14px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-solicitar-cotizacion-card:hover,
.product-card:hover .btn-solicitar-cotizacion-card {
    background: #00177c;
    color: #ffffff;
    border-color: #00177c;
}

/* 4. BANNER CTA INFERIOR ("¿NO ENCUENTRAS LO QUE BUSCAS?") */
.cta-banner-productos {
    background: #e2b282; /* Tono dorado/durazno cálido de la captura 1 */
    padding: 60px 0;
    color: #111111;
}

.cta-tag-sub {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #333333;
    margin-bottom: 10px;
    display: block;
}

.cta-title-main {
    font-family: 'Noto Serif', serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: #111111;
    margin: 0;
    line-height: 1.2;
}

.btn-solicitar-asesoria {
    background: #33614a; /* Botón verde institucional de la captura */
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
}

.btn-solicitar-asesoria:hover {
    background: #00177c;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,23,124,0.3);
}

/* RESPONSIVO PARA PRODUCTOS */
@media (max-width: 992px) {
    .hero-productos-title {
        font-size: 2.4rem;
    }
    .hero-productos-badges {
        grid-template-columns: 1fr;
    }
    .container-filtros-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    .box-buscador-catalogo {
        width: 100%;
    }
    .cta-title-main {
        font-size: 1.9rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .product-card {
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
    }
    .hero-productos-section {
        padding: 95px 16px 35px 16px !important;
        min-height: 240px !important;
    }
}




/* ==========================================================
   3. TARJETAS DE PRODUCTOS (NUEVO DISEÑO PREMIUM MATCHING CAPTURA)
   ========================================================== */

.row.g-4 > .col {
    margin-bottom: 30px;
}

.product-card {
    border-radius: 20px !important;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #eaeaea !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04) !important;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    height: 390px !important;
    min-height: 390px !important;
    max-height: 390px !important;
    width: 100% !important;
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12) !important;
    border-color: #dcd6cd !important;
}

/* Contenedor de la imagen de producto */
.card-img-wrapper {
    position: relative;
    height: 250px;
    background: #fbf9f6;
    padding: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

/* Ícono de Corazón / Favorito en esquina superior derecha */
.card-heart-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666666;
    font-size: 0.88rem;
    z-index: 5;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.card-heart-icon:hover, .card-heart-icon.active {
    background: #ffffff;
    color: #e74c3c;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.2);
}

.card-img-wrapper img, .card-img-top {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.4s ease;
}

.product-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

/* --- BARRA HOVER "SOLICITAR COTIZACIÓN ▾" EN PARTE INFERIOR DEL RECUADRO DE IMAGEN --- */
.hover-cotizar-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 10;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Mostrar la barra al hacer hover sobre la tarjeta o si el dropdown está abierto */
.product-card:hover .hover-cotizar-wrapper,
.product-card.has-dropdown-open .hover-cotizar-wrapper {
    transform: translateY(0);
    opacity: 1;
}

/* Botón "SOLICITAR COTIZACIÓN ▾" estilo beige suave idéntico a la captura */
.btn-solicitar-cotizar {
    background: #fbf9f5 !important;
    color: #00177c !important;
    border: none !important;
    border-top: 1px solid #eee9e0 !important;
    border-radius: 0 !important;
    padding: 11px 16px !important;
    font-family: 'Noto Serif', serif !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    box-shadow: none !important;
    cursor: pointer;
    transition: all 0.25s ease !important;
}

.btn-solicitar-cotizar:hover {
    background: #f3eee3 !important;
    color: #b8860b !important;
}

/* Menú desplegable del botón de cotización */
.hover-cotizar-wrapper .dropdown-menu {
    width: 100% !important;
    border-radius: 0 0 16px 16px !important;
    border: 1px solid #eee9e0 !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15) !important;
    padding: 8px !important;
    margin: 0 !important;
    background: #ffffff !important;
    top: 100% !important;
    left: 0 !important;
}

.hover-cotizar-wrapper .dropdown-item {
    font-family: 'Noto Serif', serif !important;
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    color: #222222 !important;
    padding: 9px 14px !important;
    border-radius: 10px !important;
    transition: all 0.2s ease !important;
}

.hover-cotizar-wrapper .dropdown-item:hover {
    background: #f8f6f0 !important;
    color: #b8860b !important;
}

/* Cuerpo de la tarjeta (Debajo de la imagen) */
.product-card .card-body {
    padding: 16px 18px 18px 18px;
    display: flex;
    flex-direction: column;
    text-align: left !important;
    flex-grow: 1;
}

.card-cat-tag {
    font-family: 'Noto Serif', serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: #5a6b5c;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 4px;
    display: block;
    text-align: left !important;
}

.product-card .card-title {
    color: #111111;
    font-family: 'Noto Serif', serif;
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.3;
    min-height: auto;
    display: block;
    margin-bottom: 2px;
    text-align: left !important;
}

.card-subtitulo-codigo {
    font-family: 'Noto Serif', serif;
    font-size: 0.82rem;
    color: #888888;
    margin-bottom: 0;
    text-align: left !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 768px) {
    .product-card {
        height: 370px !important;
        min-height: 370px !important;
        max-height: 370px !important;
    }
    .card-img-wrapper {
        height: 220px;
    }
    .hover-cotizar-wrapper {
        transform: translateY(0);
        opacity: 1;
    }
}




/* ==========================================================
   3. TARJETAS DE PRODUCTOS (NUEVO DISEÑO PREMIUM MATCHING CAPTURA)
   ========================================================== */

.row.g-4 > .col {
    margin-bottom: 30px;
}

.product-card {
    border-radius: 20px !important;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #eaeaea !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04) !important;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    height: 390px !important;
    min-height: 390px !important;
    max-height: 390px !important;
    width: 100% !important;
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12) !important;
    border-color: #dcd6cd !important;
}

/* Contenedor de la imagen de producto */
.card-img-wrapper {
    position: relative;
    height: 250px;
    background: #fbf9f6;
    padding: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

/* Ícono de Corazón / Favorito en esquina superior derecha */
.card-heart-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666666;
    font-size: 0.88rem;
    z-index: 5;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.card-heart-icon:hover, .card-heart-icon.active {
    background: #ffffff;
    color: #e74c3c;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.2);
}

.card-img-wrapper img, .card-img-top {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.4s ease;
}

.product-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

/* --- BARRA HOVER "SOLICITAR COTIZACIÓN ▾" EN PARTE INFERIOR DEL RECUADRO DE IMAGEN --- */
.hover-cotizar-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 10;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Mostrar la barra al hacer hover sobre la tarjeta o si el dropdown está abierto */
.product-card:hover .hover-cotizar-wrapper,
.product-card.has-dropdown-open .hover-cotizar-wrapper {
    transform: translateY(0);
    opacity: 1;
}

/* Botón "SOLICITAR COTIZACIÓN ▾" estilo beige suave idéntico a la captura */
.btn-solicitar-cotizar {
    background: #fbf9f5 !important;
    color: #00177c !important;
    border: none !important;
    border-top: 1px solid #eee9e0 !important;
    border-radius: 0 !important;
    padding: 11px 16px !important;
    font-family: 'Noto Serif', serif !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    box-shadow: none !important;
    cursor: pointer;
    transition: all 0.25s ease !important;
}

.btn-solicitar-cotizar:hover {
    background: #f3eee3 !important;
    color: #b8860b !important;
}

/* Menú desplegable del botón de cotización */
.hover-cotizar-wrapper .dropdown-menu {
    width: 100% !important;
    border-radius: 0 0 16px 16px !important;
    border: 1px solid #eee9e0 !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15) !important;
    padding: 8px !important;
    margin: 0 !important;
    background: #ffffff !important;
    top: 100% !important;
    left: 0 !important;
}

.hover-cotizar-wrapper .dropdown-item {
    font-family: 'Noto Serif', serif !important;
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    color: #222222 !important;
    padding: 9px 14px !important;
    border-radius: 10px !important;
    transition: all 0.2s ease !important;
}

.hover-cotizar-wrapper .dropdown-item:hover {
    background: #f8f6f0 !important;
    color: #b8860b !important;
}

/* Cuerpo de la tarjeta (Debajo de la imagen) */
.product-card .card-body {
    padding: 16px 18px 18px 18px;
    display: flex;
    flex-direction: column;
    text-align: left !important;
    flex-grow: 1;
}

.card-cat-tag {
    font-family: 'Noto Serif', serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: #5a6b5c;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 4px;
    display: block;
    text-align: left !important;
}

.product-card .card-title {
    color: #111111;
    font-family: 'Noto Serif', serif;
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.3;
    min-height: auto;
    display: block;
    margin-bottom: 2px;
    text-align: left !important;
}

.card-subtitulo-codigo {
    font-family: 'Noto Serif', serif;
    font-size: 0.82rem;
    color: #888888;
    margin-bottom: 0;
    text-align: left !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 768px) {
    .product-card {
        height: 370px !important;
        min-height: 370px !important;
        max-height: 370px !important;
    }
    .card-img-wrapper {
        height: 220px;
    }
    .hover-cotizar-wrapper {
        transform: translateY(0);
        opacity: 1;
    }
}




/* ==========================================================
   TARJETAS DE PRODUCTOS CON IMAGEN CENTRADA Y BOTÓN DEBAJO DEL TÍTULO
   ========================================================== */

.row.g-4 > .col {
    margin-bottom: 30px;
}

.product-card {
    border-radius: 20px !important;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #eaeaea !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04) !important;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    height: 400px !important;
    min-height: 400px !important;
    max-height: 400px !important;
    width: 100% !important;
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12) !important;
    border-color: #dcd6cd !important;
}

/* Contenedor de la imagen de producto (Centrada) */
.card-img-wrapper {
    position: relative;
    height: 230px;
    background: #fbf9f6;
    padding: 20px;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.card-img-wrapper img, .card-img-top {
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    margin: 0 auto !important;
    display: block !important;
    transition: transform 0.35s ease;
}

.product-card:hover .card-img-wrapper img {
    transform: scale(1.06);
}

/* Ícono de Corazón / Favorito en la esquina */
.card-heart-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666666;
    font-size: 0.88rem;
    z-index: 5;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.card-heart-icon:hover, .card-heart-icon.active {
    background: #ffffff;
    color: #e74c3c;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.2);
}

/* Cuerpo de la tarjeta (Centrado con Botón Debajo del Título) */
.product-card .card-body {
    padding: 16px 18px 20px 18px;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    flex-grow: 1;
}

.card-cat-tag {
    font-family: 'Noto Serif', serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: #5a6b5c;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 4px;
    display: block;
    text-align: center !important;
}

.product-card .card-title {
    color: #111111;
    font-family: 'Noto Serif', serif;
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.3;
    margin-bottom: 8px;
    text-align: center !important;
}

/* Botón "SOLICITAR COTIZACIÓN" debajo del título */
.btn-solicitar-cotizar {
    background: #fbf9f5 !important;
    color: #00177c !important;
    border: 1px solid #eee9e0 !important;
    border-radius: 25px !important;
    padding: 9px 16px !important;
    font-family: 'Noto Serif', serif !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    width: 100% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    cursor: pointer;
    transition: all 0.25s ease !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03) !important;
}

.btn-solicitar-cotizar:hover {
    background: #00177c !important;
    color: #ffffff !important;
    border-color: #00177c !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(0, 23, 124, 0.2) !important;
}

/* Menú desplegable centrado */
.dropdown-menu-center {
    border-radius: 14px !important;
    border: 1px solid #eee9e0 !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
    padding: 8px !important;
    margin-top: 6px !important;
    background: #ffffff !important;
}

.dropdown-menu-center .dropdown-item {
    font-family: 'Noto Serif', serif !important;
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    color: #222222 !important;
    padding: 9px 14px !important;
    border-radius: 10px !important;
    transition: all 0.2s ease !important;
}

.dropdown-menu-center .dropdown-item:hover {
    background: #f8f6f0 !important;
    color: #b8860b !important;
}

@media (max-width: 768px) {
    .product-card {
        height: 380px !important;
        min-height: 380px !important;
        max-height: 380px !important;
    }
    .card-img-wrapper {
        height: 200px;
    }
}




/* ==========================================================
   FIX DEFINITIVO: DESPLEGABLE DE COTIZACIÓN VISIBLE Y RESPONSIVO
   ========================================================== */

.product-card {
    border-radius: 20px !important;
    overflow: visible !important;
    background: #ffffff;
    border: 1px solid #eaeaea !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04) !important;
    transition: transform 0.35s ease, box-shadow 0.35s ease !important;
    display: flex !important;
    flex-direction: column !important;
    height: 410px !important;
    min-height: 410px !important;
    max-height: 410px !important;
    width: 100% !important;
    position: relative !important;
    z-index: 1 !important;
}

.product-card:hover, .product-card.has-dropdown-open {
    z-index: 100 !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12) !important;
    border-color: #dcd6cd !important;
}

/* Contenedor de la imagen centrada */
.card-img-wrapper {
    position: relative !important;
    height: 230px !important;
    background: #fbf9f6 !important;
    padding: 20px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    overflow: hidden !important;
    border-radius: 20px 20px 0 0 !important;
}

.card-img-wrapper img, .card-img-top {
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    margin: 0 auto !important;
    display: block !important;
    transition: transform 0.35s ease !important;
}

/* Cuerpo de la tarjeta */
.product-card .card-body {
    padding: 16px 18px 20px 18px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    flex-grow: 1 !important;
    position: relative !important;
    overflow: visible !important;
}

.card-cat-tag {
    font-family: 'Noto Serif', serif !important;
    font-size: 0.7rem !important;
    font-weight: 700 !important;
    color: #5a6b5c !important;
    letter-spacing: 0.6px !important;
    text-transform: uppercase !important;
    margin-bottom: 4px !important;
    display: block !important;
    text-align: center !important;
}

.product-card .card-title {
    color: #111111 !important;
    font-family: 'Noto Serif', serif !important;
    font-weight: 700 !important;
    font-size: 1.05rem !important;
    line-height: 1.3 !important;
    margin-bottom: 8px !important;
    text-align: center !important;
}

/* Botón SOLICITAR COTIZACIÓN debajo del título */
.btn-solicitar-cotizar {
    background: #fbf9f5 !important;
    color: #00177c !important;
    border: 1px solid #eee9e0 !important;
    border-radius: 25px !important;
    padding: 9px 16px !important;
    font-family: 'Noto Serif', serif !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    width: 100% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03) !important;
}

.btn-solicitar-cotizar:hover {
    background: #00177c !important;
    color: #ffffff !important;
    border-color: #00177c !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(0, 23, 124, 0.2) !important;
}

/* Menú desplegable flotante desplegado en el primer clic */
.dropdown-menu-center {
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    border-radius: 14px !important;
    border: 1px solid #eee9e0 !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18) !important;
    padding: 8px !important;
    margin-top: 6px !important;
    background: #ffffff !important;
}

.dropdown-menu-center.show {
    display: block !important;
}

.dropdown-menu-center .dropdown-item {
    font-family: 'Noto Serif', serif !important;
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    color: #222222 !important;
    padding: 10px 14px !important;
    border-radius: 10px !important;
    transition: all 0.2s ease !important;
}

.dropdown-menu-center .dropdown-item:hover {
    background: #f8f6f0 !important;
    color: #b8860b !important;
}




/* ==========================================================
   DESPLEGABLE RESPONSIVO POR HOVER Y CLIC DIRECTO
   ========================================================== */

.product-card {
    border-radius: 20px !important;
    overflow: visible !important;
    background: #ffffff;
    border: 1px solid #eaeaea !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04) !important;
    transition: transform 0.35s ease, box-shadow 0.35s ease !important;
    display: flex !important;
    flex-direction: column !important;
    height: 410px !important;
    min-height: 410px !important;
    max-height: 410px !important;
    width: 100% !important;
    position: relative !important;
    z-index: 1 !important;
}

.product-card:hover, .product-card.has-dropdown-open {
    z-index: 100 !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12) !important;
    border-color: #dcd6cd !important;
}

/* Abrir desplegable automáticamente al pasar el mouse por la tarjeta O por la zona de cotización O con clic (.show) */


.dropdown-menu-center {
    display: none;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    border-radius: 14px !important;
    border: 1px solid #eee9e0 !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18) !important;
    padding: 8px !important;
    margin-top: 4px !important;
    background: #ffffff !important;
}




/* ==========================================================
   DESPLEGABLE EXCLUSIVO POR CLIC (SINFÍN DE HOVER AUTOMÁTICO)
   ========================================================== */

.product-card {
    border-radius: 20px !important;
    overflow: visible !important;
    background: #ffffff;
    border: 1px solid #eaeaea !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04) !important;
    transition: transform 0.35s ease, box-shadow 0.35s ease !important;
    display: flex !important;
    flex-direction: column !important;
    height: 410px !important;
    min-height: 410px !important;
    max-height: 410px !important;
    width: 100% !important;
    position: relative !important;
    z-index: 1 !important;
}

.product-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12) !important;
    border-color: #dcd6cd !important;
}

.product-card.has-dropdown-open {
    z-index: 100 !important;
}

/* El desplegable está oculto por defecto y SOLO se muestra al hacer clic (.show) */
.dropdown-menu-center {
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    border-radius: 14px !important;
    border: 1px solid #eee9e0 !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18) !important;
    padding: 8px !important;
    margin-top: 4px !important;
    background: #ffffff !important;
}

.dropdown-menu-center.show {
    display: block !important;
}
