#muebles-section .fade-enter {
    opacity: 0;
    transform: translateY(6px);
}

#muebles-section .fade-enter-active {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .25s, transform .25s;
}

/* Sombra suave (con fondo transparente para evitar halo blanco) */
#muebles-section .shadow-soft {
    box-shadow: 0 10px 30px -12px rgba(0, 0, 0, .25);
    background: transparent;
}

/* Eliminar “gap” por baseline de imágenes inline */
#muebles-section img {
    display: block;
}

/* Imagen de las cards: cubrir el contenedor para evitar bandas blancas */
#muebles-section .card-img-top {
    object-fit: cover;         /* antes: contain */
    width: 100%;
    height: 100%;
    transition: transform .3s ease;
}

/* Contenedor 4:3 con overflow oculto y fondo neutro (por si la imagen tiene bordes claros) */
#muebles-section .ratio-4x3 {
    position: relative;
    width: 100%;
    /* Soporte moderno */
    aspect-ratio: 4 / 3;
    /* Fallback para navegadores sin aspect-ratio */
    padding-top: calc(3 / 4 * 100%);
    overflow: hidden;
    border-radius: 12px;       /* opcional: esquinas suaves */
    background: #000;          /* oculta cualquier borde claro de la imagen */
}

/* La imagen llena el contenedor absoluto */
#muebles-section .ratio-4x3 > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* Hover sutil en imágenes */
#muebles-section .card-hover:hover .card-img-top {
    transform: scale(1.03);
}

/* Overlay en hover */
#muebles-section .overlay-hover {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .2), rgba(0, 0, 0, 0));
    opacity: 0;
    transition: opacity .25s ease;
    pointer-events: none;
}

#muebles-section .card-hover:hover .overlay-hover {
    opacity: 1;
}

/* ===== Opcional: reset de “card” si viene de Bootstrap para quitar marcos blancos ===== */
#muebles-section .card {
    background: transparent;
    border: 0;
    padding: 0;
    box-shadow: none;
}

/* ===== Botones de filtro estilo CHIP (sin cambios funcionales, solo consistente) ===== */
#muebles-section .chip-btn {
    --chip-bg: #f8f9fa;
    --chip-border: #e5e7eb;
    --chip-text: #111827;
    --chip-bg-hover: #eef2ff;
    --chip-ring: rgba(99, 102, 241, .25);

    display: inline-flex;
    align-items: center;
    gap: .5rem;
    height: 38px;
    padding: 0 .875rem;
    border: 1px solid var(--chip-border);
    background: var(--chip-bg);
    color: var(--chip-text);
    border-radius: 9999px;
    font-weight: 500;
    font-size: 1rem;
    transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, border-color .15s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 0 rgba(17, 24, 39, .04);
    cursor: pointer; /* no heredamos .btn de Bootstrap */
}

#muebles-section .chip-btn:hover {
    background: var(--chip-bg-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, .08);
    border-color: #d1d5db;
}

#muebles-section .chip-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px var(--chip-ring);
}

#muebles-section .chip-btn.active {
    background: linear-gradient(180deg, #6366f1 0%, #4f46e5 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 22px rgba(79, 70, 229, .35);
}

#muebles-section .chip-btn::after {
    content: "";
    position: absolute;
    inset: auto;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: width .45s ease, height .45s ease, opacity .6s ease;
    opacity: 0;
}

#muebles-section .chip-btn:active::after {
    left: var(--x, 50%);
    top: var(--y, 50%);
    width: 260px;
    height: 260px;
    opacity: 0.15;
}

/* Modo oscuro: chips */
:root.dark #muebles-section .chip-btn {
    --chip-bg: #0b1220;
    --chip-border: #1f2937;
    --chip-text: #f8fafc;
    --chip-bg-hover: #111827;
}
    /* H1 limpio y elegante SOLO dentro de .lx-page */
    .lx-page > h1 {
        text-align: center;
        font-weight: 700;                           /* Menos pesado que 800 */
        line-height: 1.1;
        letter-spacing: .5px;                       /* Muy sutil */
        color: #2b2e3a;                             /* Gris muy oscuro, legible */
        margin: 24px 0 8px;
        text-shadow: none;                          /* Nada de sombras duras */
        font-size: clamp(1.75rem, 2.2vw + 1rem, 2.75rem); /* Responsivo y equilibrado */
    }

    /* Subrayado discreto como acento */
    .lx-page > h1::after {
        content: "";
        display: block;
        width: 64px;
        height: 3px;
        margin: .6rem auto 0;
        border-radius: 999px;                       /* Pastilla fina */
        opacity: .9;
    }

    /* Ajuste fino en móviles pequeños */
    @media (max-width: 420px) {
        .lx-page > h1 { letter-spacing: .3px; }
    }

    /* H1 elegante solo dentro de .lx-events-surface */
.lx-events-surface > h1 {
    text-align: center;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: .5px;
    color: #2b2e3a;
    margin: 48px 0 16px;
    text-shadow: none;
    font-size: clamp(1.75rem, 2.2vw + 1rem, 2.75rem);
}

/* Línea decorativa sutil debajo */
.lx-events-surface > h1::after {
    content: "";
    display: block;
    width: 64px;
    height: 3px;
    margin: .6rem auto 0;
    border-radius: 999px;
    opacity: .9;
}

/* Ajuste fino en móviles pequeños */
@media (max-width: 420px) {
    .lx-events-surface > h1 { letter-spacing: .3px; }
}

