/* =========================================================
    TEMA ELEGANTE
========================================================= */


/* =========================================================
    HERO
========================================================= */

.tema-elegante .hero {
    padding: 120px 20px;
}

.tema-elegante .hero::before {
    background: rgba(0,0,0,.42);
    backdrop-filter: blur(3px);
}

.tema-elegante .logo {
    width: 170px;
    height: 170px;
    border-radius: 22px;
    padding: 10px;
    border: 2px solid rgba(255,255,255,.35);
    box-shadow: 0 12px 30px rgba(0,0,0,.25);
}

.tema-elegante .hero h1 {
    font-size: 4rem;
    letter-spacing: 1px;
}

.tema-elegante .hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: auto;
}


/* =========================================================
    CATEGORÍAS
========================================================= */

.tema-elegante .categorias {
    gap: 30px;
    justify-content: flex-start;
    padding: 18px 20px;
    background: rgba(255,255,255,.58);
    border-bottom: 1px solid rgba(0,0,0,.08);
}

.tema-elegante .categorias button {
    background: transparent !important;
    color: #222;
    padding: 8px 0;
    font-size: 1.05rem;
    border-radius: 0;
    position: relative;
}

.tema-elegante .categorias button::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 1px;
    background: var(--color-principal);
    transition: .3s;
}

.tema-elegante .categorias button:hover::after,
.tema-elegante .categoria-activa::after {
    width: 100%;
}

.tema-elegante .categoria-activa {
    color: var(--color-principal) !important;
    transform: none;
    filter: none;
    box-shadow: none;
}

.tema-elegante .categorias button.categoria-activa {
    background: transparent !important;
    color: var(--color-principal) !important;
}


/* =========================================================
    PRODUCTOS
========================================================= */

.tema-elegante .productos {
    display: flex;
    flex-direction: column;
    max-width: 950px;
    margin: auto;
    gap: 0;
}


/* =========================================================
    CARDS
========================================================= */

.tema-elegante .card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,.45);
    border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid rgba(0,0,0,.12);
    padding: 10px 0;
    backdrop-filter: blur(3px);
}

.tema-elegante .card:hover {
    transform: translateX(8px);
}

.tema-elegante .card img {
    width: 180px;
    height: 140px;
    border-radius: 12px;
}

.tema-elegante .card-content {
    flex: 1;
    padding: 10px;
}

.tema-elegante .card-content h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.tema-elegante .card-content p {
    max-width: 700px;
    line-height: 1.7;
}

.tema-elegante .precio {
    margin-top: 12px;
    font-size: 1.5rem;
}


/* =========================================================
    BADGE DESTACADO
========================================================= */

.tema-elegante .badge-destacado {
    border-radius: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* =========================================================
    CARDS SIN IMAGEN
========================================================= */

.tema-elegante .card-sin-imagen {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
}

.tema-elegante .card-sin-imagen .card-content {
    width: 100%;
    padding: 0;
}

.tema-elegante .card-sin-imagen h3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.5rem;
}

.tema-elegante .card-sin-imagen .precio {
    margin-top: 10px;
    font-size: 1.2rem;
}


/* =========================================================
    FOOTER
========================================================= */

.tema-elegante .footer {
    background:
        linear-gradient(rgba(139,94,60,.78), rgba(139,94,60,.78)),
        var(--color-superficie);
    backdrop-filter: blur(4px);
}

.tema-elegante .footer h2 {
    letter-spacing: 1px;
}

.tema-elegante .footer-redes a {
    border-radius: 50px;
    padding: 14px 26px;
}


/* =========================================================
    WHATSAPP
========================================================= */

.tema-elegante .whatsapp {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: .75rem;
    text-align: center;
    line-height: 1.2;
    box-shadow: 0 12px 30px rgba(0,0,0,.25);
    border: 3px solid rgba(255,255,255,.4);
    backdrop-filter: blur(5px);
}


/* =========================================================
    ANIMACIONES
========================================================= */

.tema-elegante .card {
    animation: aparecerElegante .45s ease both;
}

@keyframes aparecerElegante {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}
