
:root {
    --lila: #b68ac9;
    --lila2: #dcc4e8;
    --lila3: #eee0f4;

    --rosa: #efbfd3;
    --rosa2: #f7dce8;

    --melocoton: #f5d1bc;
    --crema: #fff0df;

    --texto: #403541;
    --muted: #796d7b;

    --blanco: #fffafc;

    --verde: #25D366;
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: Arial, Helvetica, sans-serif;

    color: var(--texto);

    background: #ead8f2;
}


a {
    color: inherit;
}


button {
    font-family: inherit;
}


/* =========================
   TOP
   ========================= */

.topbar {
    min-height: 38px;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 55px;

    padding: 8px;

    color: white;

    background:
        linear-gradient(
            90deg,
            #9670a9,
            #bb8fbf
        );

    font-size: 12px;
}


.topbar a {
    color: white;

    text-decoration: none;
}


.topbar i {
    margin-right: 6px;
}



/* =========================
   DESKTOP NAV
   ========================= */

.desktop-nav {
    position: relative;

    z-index: 1000;

    min-height: 62px;

    display: flex;
    justify-content: space-between;
    align-items: stretch;

    padding: 0 4%;

    background:
        linear-gradient(
            90deg,
            #e4d1ed,
            #f3d5e2,
            #f4d8c6
        );

    border-bottom:
        1px solid rgba(100,70,110,.12);
}


.nav-menu {
    display: flex;

    align-items: stretch;

    gap: 33px;
}


.nav-menu > a,
.nav-dropdown > button {
    min-height: 62px;

    display: flex;
    align-items: center;

    border: 0;

    background: transparent;

    color: var(--texto);

    text-decoration: none;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: .7px;

    cursor: pointer;
}


.novedades-link {
    color: #b0678a !important;
}


.novedades-link::before {
    content: "●";

    margin-right: 7px;

    color: #db91af;

    font-size: 6px;
}


.nav-dropdown {
    position: relative;
}


.nav-dropdown > button {
    gap: 7px;
}


.nav-dropdown > button i {
    font-size: 8px;
}



/* =========================
   MEGA MENU
   ========================= */

.mega-menu,
.mini-menu {
    position: absolute;

    top: 100%;
    left: 50%;

    z-index: 2000;

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transform:
        translateX(-50%)
        translateY(10px);

    transition: .2s;

    background: #fbf4fd;

    border: 1px solid #decbe7;

    box-shadow:
        0 18px 50px
        rgba(65,40,75,.15);
}


.nav-dropdown:hover .mega-menu,
.nav-dropdown:hover .mini-menu {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform:
        translateX(-50%)
        translateY(0);
}


.mega-menu {
    width: 680px;

    padding: 30px;

    display: grid;

    grid-template-columns:
        1fr 1fr 1.2fr;

    gap: 30px;

    border-radius:
        0 0 14px 14px;
}


.mega-menu > div:not(.mega-promo) {
    display: flex;

    flex-direction: column;

    gap: 11px;
}


.mega-title {
    margin-bottom: 6px;

    color: #9c76ad;

    font-size: 9px;
    font-weight: bold;

    letter-spacing: 2px;
}


.mega-menu a,
.mini-menu a {
    color: var(--texto);

    text-decoration: none;

    font-size: 13px;
}


.mega-menu a:hover,
.mini-menu a:hover {
    color: #9c76ad;
}


.mega-promo {
    padding: 22px;

    border-radius: 11px;

    background:
        linear-gradient(
            135deg,
            #dfc4ea,
            #f1cbdc,
            #f4d1bc
        );
}


.mega-promo span {
    font-size: 8px;

    letter-spacing: 2px;

    color: #845f95;
}


.mega-promo strong {
    display: block;

    margin-top: 9px;

    font-family: Georgia, serif;

    font-size: 23px;

    font-weight: normal;
}


.mega-promo p {
    margin-top: 10px;

    color: var(--muted);

    font-size: 11px;

    line-height: 1.6;
}


.mega-promo a {
    display: inline-block;

    margin-top: 15px;

    font-size: 10px;

    font-weight: bold;
}


.mini-menu {
    width: 220px;

    padding: 20px;

    display: flex;

    flex-direction: column;

    gap: 12px;

    border-radius:
        0 0 12px 12px;
}



/* =========================
   NAV ICONS
   ========================= */

.nav-tools {
    display: flex;

    align-items: center;

    gap: 8px;
}


.nav-tools > * {
    position: relative;

    width: 38px;
    height: 38px;

    border: 0;

    border-radius: 50%;

    display: grid;

    place-items: center;

    background: rgba(255,250,253,.7);

    color: #6f557a;

    text-decoration: none;

    cursor: pointer;

    transition: .2s;
}


.nav-tools > *:hover {
    background: #a984bb;

    color: white;
}


#favorites-count {
    position: absolute;

    right: -5px;
    top: -5px;

    min-width: 18px;
    height: 18px;

    display: grid;

    place-items: center;

    border-radius: 20px;

    background: #dd8fab;

    color: white;

    font-size: 9px;
}



/* =========================
   HERO BRAND
   ========================= */

.brand-hero {
    position: relative;

    height: 345px;

    overflow: hidden;

    display: flex;

    justify-content: center;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            #dfc4eb,
            #f3d1e0,
            #f3d3be
        );

    isolation: isolate;
}


.brand-hero-background {
    position: absolute;

    inset: -35px;

    background:
        url("../img/portada/cabecera.png")
        center / cover
        no-repeat;

    filter: blur(27px);

    opacity: .48;

    transform: scale(1.08);
}


.brand-hero::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(210,184,226,.45),
            transparent 25%,
            transparent 75%,
            rgba(230,194,207,.45)
        );
}


.brand-hero > img {
    position: relative;

    z-index: 2;

    width: min(1100px, 90%);

    height: 100%;

    object-fit: contain;

    display: block;
}



/* =========================
   SECTION HEADINGS
   ========================= */

.section-heading {
    text-align: center;
}


.section-heading > p {
    color: #9d72ae;

    font-size: 10px;

    font-weight: bold;

    letter-spacing: 2.5px;
}


.section-heading h2 {
    margin-top: 7px;

    font-family: Georgia, serif;

    font-size: 34px;

    font-weight: normal;
}



/* =========================
   REELS
   ========================= */

.reels-section {
    padding: 45px 20px 55px;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            #e4ceef,
            #f1cadb 53%,
            #f4d2bc
        );
}


.reels-track {
    max-width: 850px;

    margin: 30px auto 0;

    display: flex;

    justify-content: center;

    gap: 15px;

    overflow-x: auto;

    scroll-snap-type: x mandatory;

    scrollbar-width: none;
}


.reels-track article {
    flex: 0 0 175px;

    padding: 7px;

    border-radius: 14px;

    scroll-snap-align: start;

    background: #f9edf8;

    box-shadow:
        0 8px 25px
        rgba(65,35,75,.10);
}


.reels-track article:nth-child(2) {
    background: #f7e3ea;
}


.reels-track article:nth-child(3) {
    background: #f9e5d9;
}


.reels-track article:nth-child(4) {
    background: #ead8f1;
}


.reels-track iframe {
    width: 100%;

    aspect-ratio: 9 / 16;

    display: block;

    border: 0;

    border-radius: 10px;
}


.reels-track strong {
    display: block;

    padding: 10px 4px 5px;

    font-family: Georgia, serif;

    font-size: 13px;

    font-weight: normal;
}


.social-button {
    display: inline-block;

    margin-top: 25px;

    padding: 12px 21px;

    border-radius: 30px;

    background: #9c75ae;

    color: white;

    text-decoration: none;

    font-size: 10px;

    font-weight: bold;

    letter-spacing: 1px;
}



/* =========================
   BENEFITS
   ========================= */

.benefits {
    max-width: 1200px;

    margin: 35px auto;

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    border-radius: 12px;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            #ddc4e9,
            #efcbdc,
            #f3d4bf,
            #dfc9ea
        );
}


.benefits > div {
    padding: 25px;

    display: flex;

    align-items: center;

    gap: 13px;
}


.benefits i {
    color: #8c669d;

    font-size: 25px;
}


.benefits strong {
    display: block;

    margin-bottom: 4px;

    font-family: Georgia, serif;

    font-size: 15px;

    font-weight: normal;
}


.benefits span {
    color: var(--muted);

    font-size: 10px;
}



/* =========================
   CATEGORIES
   ========================= */

.categories {
    padding: 55px 5% 70px;

    background: #ead8f2;
}


.category-track {
    max-width: 1200px;

    margin: 30px auto 0;

    display: grid;

    grid-template-columns:
        repeat(5,1fr);

    gap: 14px;
}


.category-track a {
    position: relative;

    aspect-ratio: 4 / 5;

    overflow: hidden;

    border-radius: 12px;

    box-shadow:
        0 8px 25px
        rgba(65,40,75,.08);
}


.category-track img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .4s;
}


.category-track a:hover img {
    transform: scale(1.05);
}


.category-track span {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 17px;

    background:
        linear-gradient(
            transparent,
            rgba(45,30,50,.72)
        );

    color: white;

    font-size: 11px;

    font-weight: bold;

    letter-spacing: .7px;
}



/* =========================
   PRODUCTS
   ========================= */

.shop-section {
    padding: 70px 5% 90px;

    background: #dfcbea;
}


.products-grid {
    max-width: 1350px;

    margin: 35px auto 0;

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 23px;
}


.product-card {
    padding: 10px;

    border-radius: 12px;

    background: #fff7fb;

    box-shadow:
        0 8px 28px
        rgba(65,40,75,.07);
}


.product-image {
    position: relative;

    aspect-ratio: 4 / 5;

    overflow: hidden;

    border-radius: 8px;
}


.product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.product-card h3 {
    margin-top: 13px;

    font-family: Georgia, serif;

    font-size: 17px;

    font-weight: normal;
}


.product-category {
    margin-top: 5px;

    color: var(--muted);

    font-size: 10px;
}


.product-price {
    margin-top: 6px;

    font-weight: bold;

    font-size: 13px;
}


.product-actions {
    margin-top: 12px;

    display: grid;

    grid-template-columns:
        1fr 40px 40px;

    gap: 6px;
}


.product-actions > * {
    min-height: 40px;

    display: grid;

    place-items: center;

    border: 0;

    text-decoration: none;

    cursor: pointer;
}


.product-view {
    background: #a17ab3;

    color: white;

    font-size: 10px;

    font-weight: bold;
}


.product-heart {
    background: #f4d8e4;

    color: #aa617e;
}


.product-wa {
    background: var(--verde);

    color: white;
}



/* =========================
   STORE
   ========================= */

.store-section {
    max-width: 1200px;

    margin: 65px auto;

    padding: 55px;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 45px;

    border-radius: 18px;

    background:
        linear-gradient(
            130deg,
            #d9bee7,
            #efc6d8,
            #f3d0ba
        );
}


.store-section h2 {
    margin-top: 8px;

    font-family: Georgia, serif;

    font-size: 38px;

    font-weight: normal;
}


.small-title {
    color: #936ca4;

    font-size: 10px;

    font-weight: bold;

    letter-spacing: 2px;
}


.store-section p {
    margin: 20px 0;

    color: var(--muted);

    line-height: 1.7;
}


.store-section a {
    display: inline-block;

    padding: 13px 19px;

    background: #9270a3;

    color: white;

    text-decoration: none;

    font-size: 10px;

    font-weight: bold;
}


.store-whatsapp {
    padding: 30px;

    border-radius: 14px;

    background: rgba(255,248,252,.80);
}


.store-whatsapp > i {
    color: var(--verde);

    font-size: 35px;
}


.store-whatsapp h3 {
    margin-top: 15px;

    font-family: Georgia, serif;

    font-size: 24px;

    font-weight: normal;
}


.store-whatsapp a {
    background: var(--verde);
}



/* =========================
   FOOTER
   ========================= */

footer {
    padding: 55px 6%;

    display: grid;

    grid-template-columns:
        1.4fr 1fr 1fr 1fr;

    gap: 45px;

    background:
        linear-gradient(
            135deg,
            #654b72,
            #80618b
        );

    color: white;
}


.footer-brand img {
    width: 85px;

    border-radius: 50%;
}


footer h4 {
    margin-bottom: 15px;

    font-size: 10px;

    letter-spacing: 1px;
}


footer p,
footer a {
    display: block;

    margin-top: 8px;

    color: rgba(255,255,255,.75);

    text-decoration: none;

    font-size: 11px;
}


.footer-brand p {
    max-width: 230px;

    line-height: 1.6;
}



/* =========================
   SEARCH
   ========================= */

.search-overlay {
    position: fixed;

    inset: 0;

    z-index: 5000;

    padding: 80px max(20px,10vw);

    display: none;

    background:
        rgba(241,225,248,.98);
}


.search-overlay.open {
    display: block;
}


.search-overlay > button {
    position: absolute;

    right: 35px;
    top: 30px;

    border: 0;

    background: transparent;

    font-size: 25px;

    cursor: pointer;
}


.search-overlay h2 {
    font-family: Georgia, serif;

    font-size: 38px;

    font-weight: normal;
}


.search-overlay input {
    width: min(700px,100%);

    margin-top: 30px;

    padding: 18px 5px;

    border: 0;

    border-bottom: 2px solid #b992ca;

    outline: 0;

    background: transparent;

    font-size: 20px;
}


#search-results {
    margin-top: 25px;
}



/* =========================
   FAVORITES
   ========================= */

.favorites-drawer {
    position: fixed;

    right: -420px;
    top: 0;

    z-index: 5500;

    width: min(400px,92vw);
    height: 100vh;

    padding: 30px;

    overflow-y: auto;

    background: #f8edf9;

    box-shadow:
        -12px 0 40px
        rgba(50,30,60,.18);

    transition: right .3s;
}


.favorites-drawer.open {
    right: 0;
}


#favorites-close {
    float: right;

    border: 0;

    background: transparent;

    cursor: pointer;

    font-size: 20px;
}


.favorites-drawer h2 {
    margin: 35px 0 25px;

    font-family: Georgia, serif;

    font-weight: normal;
}



/* =========================
   WHATSAPP
   ========================= */

.whatsapp-float {
    position: fixed;

    right: 20px;
    bottom: 20px;

    z-index: 4000;

    width: 55px;
    height: 55px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: var(--verde);

    color: white;

    text-decoration: none;

    font-size: 25px;

    box-shadow:
        0 8px 25px rgba(0,0,0,.18);
}



/* =========================
   MOBILE HEADER
   ========================= */

.mobile-header {
    display: none;
}


.mobile-menu {
    display: none;
}



/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 850px) {

    .topbar span {
        display: none;
    }


    .desktop-nav {
        display: none;
    }


    .mobile-header {
        min-height: 54px;

        padding: 0 16px;

        display: flex;

        align-items: center;
        justify-content: space-between;

        background:
            linear-gradient(
                90deg,
                #dfc7eb,
                #f1cfdd
            );
    }


    .mobile-header button {
        width: 38px;
        height: 38px;

        border: 0;

        background: transparent;

        color: #59455f;

        font-size: 18px;

        cursor: pointer;
    }


    .mobile-brand {
        font-family: Georgia, serif;

        font-size: 19px;

        letter-spacing: 1px;
    }


    .brand-hero {
        height: 210px;
    }


    .brand-hero > img {
        width: 95%;
    }


    .reels-track {
        justify-content: flex-start;

        padding-right: 35px;
    }


    .benefits {
        margin: 20px 14px;

        grid-template-columns:
            1fr 1fr;
    }


    .category-track {
        display: flex;

        overflow-x: auto;

        scroll-snap-type: x mandatory;

        scrollbar-width: none;
    }


    .category-track a {
        flex: 0 0 38%;

        scroll-snap-align: start;
    }


    .products-grid {
        grid-template-columns:
            1fr 1fr;

        gap: 13px;
    }


    .store-section {
        margin: 30px 14px;

        padding: 35px 25px;

        grid-template-columns: 1fr;
    }


    footer {
        grid-template-columns:
            1fr 1fr;
    }


    /* MOBILE MENU */

    .mobile-menu {
        position: fixed;

        left: -100%;
        top: 0;

        z-index: 6000;

        width: min(360px,90vw);
        height: 100vh;

        padding: 25px;

        display: block;

        overflow-y: auto;

        background:
            linear-gradient(
                160deg,
                #eddaF5,
                #f4d7e4
            );

        transition: left .3s ease;
    }


    .mobile-menu.open {
        left: 0;
    }


    #mobile-menu-close {
        float: right;

        border: 0;

        background: transparent;

        font-size: 20px;

        cursor: pointer;
    }


    .mobile-menu-logo {
        margin: 35px 0;

        font-family: Georgia, serif;

        font-size: 25px;
    }


    .mobile-menu > a,
    .mobile-menu summary {
        display: block;

        padding: 16px 0;

        border-bottom:
            1px solid rgba(110,80,120,.12);

        color: var(--texto);

        text-decoration: none;

        font-size: 12px;

        cursor: pointer;
    }


    .mobile-menu details a {
        display: block;

        padding: 11px 15px;

        color: var(--muted);

        text-decoration: none;

        font-size: 12px;
    }


    .mobile-social {
        margin-top: 25px;

        display: flex;

        gap: 15px;
    }


    .mobile-social a {
        width: 40px;
        height: 40px;

        display: grid;

        place-items: center;

        border-radius: 50%;

        background: rgba(255,255,255,.6);

        color: #745780;

        text-decoration: none;
    }

}


@media (max-width: 520px) {

    .brand-hero {
        height: 165px;
    }


    .reels-section {
        padding-left: 14px;
        padding-right: 0;
    }


    .reels-track article {
        flex-basis: 155px;
    }


    .benefits {
        grid-template-columns: 1fr;
    }


    .category-track a {
        flex-basis: 52%;
    }


    .shop-section {
        padding-left: 12px;
        padding-right: 12px;
    }


    footer {
        grid-template-columns: 1fr;

        text-align: center;
    }


    .footer-brand p {
        margin-left: auto;
        margin-right: auto;
    }

}



/* =========================================================
   LUCE BONITO · ACABADO FINAL
   ========================================================= */


/* ---------- CABECERA PANORÁMICA ---------- */

.brand-hero {
    width: 100%;
    height: auto;

    position: relative;

    overflow: hidden;

    display: block;

    background: #efdff5;
}


/* anulamos el viejo fondo artificial */

.brand-hero-background,
.brand-hero::after {
    display: none !important;
}


.brand-hero > img {
    width: 100%;
    height: auto;

    max-width: none;

    display: block;

    object-fit: contain;

    transform: none !important;
}


/* ---------- MENÚ MÁS PREMIUM ---------- */

.desktop-nav {
    min-height: 64px;

    background:
        linear-gradient(
            90deg,
            #dac1e7 0%,
            #edc4d7 48%,
            #f4cfb9 100%
        );

    border-bottom:
        1px solid rgba(104,70,120,.14);

    box-shadow:
        0 6px 24px rgba(70,40,85,.08);
}


.nav-menu > a,
.nav-dropdown > button {
    position: relative;

    color: #483a4b;

    transition:
        color .2s ease;
}


.nav-menu > a::after,
.nav-dropdown > button::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 9px;

    width: 0;
    height: 2px;

    transform: translateX(-50%);

    border-radius: 10px;

    background: #9b70ad;

    transition: width .2s ease;
}


.nav-menu > a:hover::after,
.nav-dropdown:hover > button::after {
    width: 100%;
}


.nav-menu > a:hover,
.nav-dropdown > button:hover {
    color: #765486;
}


/* ---------- ICONOS SUPERIORES ---------- */

.nav-tools > * {
    background: rgba(255,247,252,.76);

    border:
        1px solid rgba(120,85,135,.08);

    box-shadow:
        0 3px 12px rgba(75,45,90,.07);

    transition:
        transform .2s ease,
        background .2s ease,
        color .2s ease;
}


.nav-tools > *:hover {
    transform: translateY(-2px);

    background: #9d78af;

    color: white;
}


/* ---------- REELS ---------- */

.reels-section {
    padding-top: 42px;
    padding-bottom: 52px;

    background:
        linear-gradient(
            125deg,
            #dec3eb 0%,
            #efc6da 50%,
            #f3ceb7 100%
        );
}


.reels-track {
    max-width: 760px;

    gap: 13px;
}


.reels-track article {
    flex: 0 0 160px;

    width: 160px;
    max-width: 160px;

    padding: 7px;

    border-radius: 14px;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.reels-track article:hover {
    transform: translateY(-5px);

    box-shadow:
        0 14px 35px rgba(80,45,95,.15);
}


/* seguimos en formato TikTok vertical */

.reels-track iframe {
    width: 100%;

    aspect-ratio: 9 / 16;

    border-radius: 9px;
}


/* ---------- TÍTULOS ---------- */

.section-heading h2 {
    color: #4a3a4d;

    letter-spacing: -.4px;
}


.section-heading > p {
    color: #9a69ad;
}


/* ---------- BENEFICIOS ---------- */

.benefits {
    box-shadow:
        0 10px 30px rgba(80,45,95,.07);
}


.benefits > div {
    transition:
        background .2s ease;
}


.benefits > div:hover {
    background: rgba(255,255,255,.20);
}


/* ---------- CATEGORÍAS ---------- */

.categories {
    background:
        linear-gradient(
            145deg,
            #dfc9eb,
            #ebcfe3
        );
}


.category-track a {
    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.category-track a:hover {
    transform: translateY(-5px);

    box-shadow:
        0 14px 35px rgba(70,40,85,.15);
}


.category-track span {
    padding-top: 45px;

    background:
        linear-gradient(
            transparent,
            rgba(48,30,52,.76)
        );
}


/* ---------- PRODUCTOS ---------- */

.shop-section {
    background:
        linear-gradient(
            145deg,
            #dbc4e7,
            #e7d0ed
        );
}


.product-card {
    background: rgba(255,247,252,.94);

    border:
        1px solid rgba(135,95,150,.09);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.product-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 38px rgba(70,40,85,.12);
}


.product-image img {
    transition:
        transform .45s ease;
}


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


.product-view {
    border-radius: 4px;

    transition:
        background .2s ease,
        transform .2s ease;
}


.product-view:hover {
    background: #89669a;

    transform: translateY(-1px);
}


.product-heart,
.product-wa {
    border-radius: 4px;
}


/* ---------- TIENDA FÍSICA ---------- */

.store-section {
    box-shadow:
        0 14px 40px rgba(72,42,86,.09);
}


.store-whatsapp {
    backdrop-filter: blur(8px);
}


/* ---------- FOOTER ---------- */

footer {
    border-top:
        4px solid #bd91c8;

    background:
        linear-gradient(
            135deg,
            #5e4768,
            #80608a
        );
}


footer a {
    transition: color .2s ease;
}


footer a:hover {
    color: white;
}


/* ---------- WHATSAPP FLOTANTE ---------- */

.whatsapp-float {
    width: auto;
    height: 54px;

    padding: 0 19px;

    display: flex;
    align-items: center;
    gap: 9px;

    border-radius: 30px;

    background:
        linear-gradient(
            135deg,
            #25D366,
            #20bd5a
        );

    font-size: 14px;
    font-weight: 700;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}


.whatsapp-float:hover {
    transform: translateY(-4px);

    box-shadow:
        0 13px 32px rgba(0,0,0,.22);
}


.whatsapp-float i {
    font-size: 23px;
}


/* =========================================================
   MÓVIL
   ========================================================= */

@media (max-width: 850px) {

    /*
     * En móvil el banner panorámico no se deforma.
     */

    .brand-hero {
        height: auto;
    }


    .brand-hero > img {
        width: 100%;
        height: auto;

        object-fit: contain;
    }


    .reels-track article {
        flex: 0 0 150px;

        width: 150px;
        max-width: 150px;
    }

}


@media (max-width: 520px) {

    /*
     * Botón WhatsApp compacto.
     */

    .whatsapp-float {
        width: 54px;
        height: 54px;

        padding: 0;

        justify-content: center;

        border-radius: 50%;
    }


    .whatsapp-float span {
        display: none;
    }


    .whatsapp-float i {
        font-size: 24px;
    }


    /*
     * Productos en dos columnas:
     * aspecto ecommerce real.
     */

    .products-grid {
        grid-template-columns:
            repeat(2, minmax(0,1fr));
    }

}



/* =========================================================
   LUCE BONITO · BLOQUE DE CONFIANZA
   ========================================================= */

.trust-benefits {
    max-width: 1200px;

    margin: 38px auto 55px;

    padding: 0;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 12px;

    overflow: visible;

    background: transparent;

    box-shadow: none;
}


.trust-item {
    min-height: 105px;

    padding: 22px 20px;

    display: flex;
    align-items: center;

    gap: 15px;

    border-radius: 15px;

    color: var(--texto);

    text-decoration: none;

    box-shadow:
        0 8px 26px
        rgba(75, 45, 90, .07);

    transition:
        transform .22s ease,
        box-shadow .22s ease;
}


/* cada tarjeta tiene un pastel ligeramente distinto */

.trust-item:nth-child(1) {
    background: #dbc4e8;
}

.trust-item:nth-child(2) {
    background: #f0c8d9;
}

.trust-item:nth-child(3) {
    background: #f3d2bd;
}

.trust-item:nth-child(4) {
    background: #dfcbea;
}


.trust-item:hover {
    transform: translateY(-4px);

    box-shadow:
        0 13px 33px
        rgba(75,45,90,.12);
}


.trust-icon {
    flex: 0 0 auto;

    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        rgba(255,255,255,.62);

    color: #835f94;

    font-size: 20px;
}


.whatsapp-trust {
    color: #20ad55;
}


.trust-item strong {
    display: block;

    margin-bottom: 6px;

    color: #493b4c;

    font-family:
        Georgia, serif;

    font-size: 16px;

    font-weight: normal;
}


.trust-item span {
    display: block;

    color: #756978;

    font-size: 11px;

    line-height: 1.4;
}


/* tablet */

@media (max-width: 900px) {

    .trust-benefits {
        margin-left: 15px;
        margin-right: 15px;

        grid-template-columns:
            1fr 1fr;
    }

}


/* móvil */

@media (max-width: 520px) {

    .trust-benefits {
        grid-template-columns:
            1fr 1fr;

        gap: 8px;
    }


    .trust-item {
        min-height: 115px;

        padding: 16px 12px;

        display: block;

        text-align: center;
    }


    .trust-icon {
        width: 40px;
        height: 40px;

        margin: 0 auto 10px;

        font-size: 17px;
    }


    .trust-item strong {
        font-size: 14px;
    }


    .trust-item span {
        font-size: 10px;
    }

}



/* =========================================================
   LUCE BONITO
   HEADER COMPLETAMENTE INTEGRADO
   ========================================================= */


/*
 * La cabecera completa pasa a ser una sola composición.
 */

.site-header {
    position: relative;

    width: 100%;

    border: 0 !important;

    overflow: visible;
}


/* =========================================================
   BARRA SUPERIOR
   Ahora flota encima de la acuarela.
   ========================================================= */

.topbar {
    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    z-index: 4000;

    height: 34px;
    min-height: 34px;

    padding: 0 5%;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 70px;

    color: #624d69;

    background:
        rgba(249, 239, 246, .72) !important;

    border: 0 !important;

    box-shadow: none !important;

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    font-size: 11px;
    font-weight: 500;
}


.topbar span,
.topbar a {
    color: #624d69 !important;
}


.topbar i {
    color: #a66e9f;
}


/* =========================================================
   MENÚ PRINCIPAL
   Flotando también sobre el banner.
   ========================================================= */

.desktop-nav {
    position: absolute !important;

    top: 34px;
    left: 0;
    right: 0;

    z-index: 3900;

    width: 100%;

    min-height: 66px;

    padding: 0 4%;

    display: flex;
    align-items: stretch;
    justify-content: space-between;

    background:
        rgba(248, 235, 244, .78) !important;

    border: 0 !important;

    box-shadow: none !important;

    backdrop-filter:
        blur(16px)
        saturate(125%);

    -webkit-backdrop-filter:
        blur(16px)
        saturate(125%);
}


/*
 * Solo una línea al final de TODO el bloque,
 * no una línea entre cada menú.
 */

.desktop-nav::after {
    content: "";

    position: absolute;

    left: 4%;
    right: 4%;
    bottom: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(137,94,150,.24),
            transparent
        );
}


/* =========================================================
   MENÚ
   ========================================================= */

.nav-menu {
    gap: 37px;
}


.nav-menu > a,
.nav-dropdown > button {
    min-height: 66px;

    color: #493c4d !important;

    font-size: 12px;

    font-weight: 650;

    letter-spacing: .8px;
}


/*
 * Novedades mantiene ese pequeño toque rosa.
 */

.novedades-link {
    color: #b06184 !important;
}


.novedades-link::before {
    color: #d886aa;
}


/*
 * Indicador inferior mucho más fino.
 */

.nav-menu > a::after,
.nav-dropdown > button::after {
    bottom: 10px;

    height: 1.5px;

    background: #9e72ad;
}



/* =========================================================
   ICONOS
   Quitamos las grandes bolas blancas.
   ========================================================= */

.nav-tools {
    display: flex;

    align-items: center;

    gap: 3px;
}


.nav-tools > * {
    width: 41px;
    height: 41px;

    border: 0 !important;

    border-radius: 50%;

    background:
        transparent !important;

    box-shadow:
        none !important;

    color: #6f5677;

    font-size: 17px;

    transition:
        background .2s ease,
        color .2s ease,
        transform .2s ease;
}


.nav-tools > *:hover {
    background:
        rgba(255,255,255,.50) !important;

    color: #9b6595;

    transform: translateY(-2px);
}


/*
 * Favoritos: contador pequeño.
 */

#favorites-count {
    right: 0;
    top: 3px;

    min-width: 17px;
    height: 17px;

    background: #d986a6;

    border:
        2px solid rgba(248,235,244,.9);

    font-size: 8px;
}



/* =========================================================
   EL BANNER EMPIEZA DETRÁS DE TODO
   ========================================================= */

.brand-hero {
    position: relative;

    width: 100%;

    height: auto;

    margin: 0;

    padding: 0;

    overflow: hidden;

    display: block;

    background:
        linear-gradient(
            135deg,
            #ebd6f2,
            #f4d6e3,
            #f6ddca
        );
}


/*
 * No blur.
 * No segunda imagen.
 */

.brand-hero-background,
.brand-hero::after {
    display: none !important;
}


/*
 * Nuestra cabecera panorámica real.
 */

.brand-hero > img {
    width: 100% !important;
    height: auto !important;

    max-width: none !important;

    margin: 0;

    display: block;

    object-fit: contain !important;

    transform: none !important;
}



/* =========================================================
   TRANSICIÓN DEL BANNER AL CONTENIDO
   Para evitar el corte brusco.
   ========================================================= */

.reels-section {
    position: relative;

    margin-top: 0;

    border-top: 0;

    background:
        linear-gradient(
            145deg,
            #dcc2e9 0%,
            #efc5d8 49%,
            #f3cfb8 100%
        ) !important;
}


.reels-section::before {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    top: -22px;

    height: 45px;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(225,198,234,.48)
        );
}



/* =========================================================
   DESPLEGABLES
   ========================================================= */

.mega-menu,
.mini-menu {
    background:
        rgba(251,244,252,.97);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border:
        1px solid rgba(155,115,170,.15);

    box-shadow:
        0 20px 48px
        rgba(61,36,72,.14);
}



/* =========================================================
   MÓVIL
   ========================================================= */

@media (max-width: 850px) {

    /*
     * En móvil desaparece la barra superior.
     * No tiene sentido gastar pantalla en ella.
     */

    .topbar {
        display: none !important;
    }


    /*
     * El menú desktop también desaparece.
     */

    .desktop-nav {
        display: none !important;
    }


    /*
     * El header móvil queda integrado encima
     * de la misma acuarela.
     */

    .mobile-header {
        position: absolute;

        top: 0;
        left: 0;
        right: 0;

        z-index: 4000;

        min-height: 55px;

        padding: 0 15px;

        display: flex !important;

        align-items: center;
        justify-content: space-between;

        background:
            rgba(248,236,245,.75) !important;

        border: 0;

        box-shadow: none;

        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }


    .mobile-brand {
        color: #493b4d;

        font-family: Georgia, serif;

        font-size: 18px;

        letter-spacing: 1.4px;
    }


    .mobile-header button {
        color: #67516f;

        background: transparent !important;
    }


    /*
     * Imagen debajo de la barra transparente.
     */

    .brand-hero {
        height: auto !important;
    }


    .brand-hero > img {
        width: 100% !important;
        height: auto !important;

        object-fit: contain !important;
    }

}



/* =========================================================
   MÓVIL PEQUEÑO
   ========================================================= */

@media (max-width: 520px) {

    .mobile-header {
        min-height: 52px;
    }


    .mobile-brand {
        font-size: 16px;
    }

}



/* =========================================================
   LUCE BONITO · FOOTER VIVO
   ========================================================= */

.footer-luce {
    position: relative;

    padding: 0 !important;

    display: block !important;

    overflow: hidden;

    color: white;

    background:
        linear-gradient(
            135deg,
            #624a6d 0%,
            #76557d 45%,
            #8c6688 100%
        );

    border-top: 0 !important;
}


/* manchas decorativas */

.footer-luce::before {
    content: "";

    position: absolute;

    width: 430px;
    height: 430px;

    left: -170px;
    bottom: -230px;

    border-radius: 50%;

    background:
        rgba(238,190,215,.13);

    filter: blur(10px);

    pointer-events: none;
}


.footer-luce::after {
    content: "";

    position: absolute;

    width: 360px;
    height: 360px;

    right: -130px;
    top: 80px;

    border-radius: 50%;

    background:
        rgba(226,199,239,.11);

    pointer-events: none;
}


/* =========================================================
   CTA SUPERIOR
   ========================================================= */

.footer-cta {
    position: relative;

    z-index: 2;

    padding: 34px 6%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    color: #49394c;

    background:
        linear-gradient(
            100deg,
            #dcc1e9 0%,
            #efc3d6 50%,
            #f4cab2 100%
        );
}


.footer-eyebrow {
    display: block;

    margin-bottom: 7px;

    color: #9565a1;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2.2px;
}


.footer-cta h2 {
    margin: 0;

    font-family: Georgia, serif;

    font-size: clamp(26px, 3vw, 40px);

    font-weight: normal;
}


.footer-cta p {
    margin-top: 7px;

    color: #756576;

    font-size: 12px;
}


.footer-cta-button {
    flex: 0 0 auto;

    padding: 14px 23px;

    display: flex;

    align-items: center;

    gap: 9px;

    border-radius: 40px;

    background: #25D366;

    color: white !important;

    text-decoration: none;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .8px;

    box-shadow:
        0 8px 24px rgba(34,160,80,.18);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}


.footer-cta-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 13px 30px rgba(34,160,80,.25);
}


.footer-cta-button i {
    font-size: 20px;
}


/* =========================================================
   CUERPO
   ========================================================= */

.footer-main {
    position: relative;

    z-index: 2;

    max-width: 1350px;

    margin: auto;

    padding: 60px 6% 55px;

    display: grid;

    grid-template-columns:
        1.4fr
        .8fr
        1.1fr
        1fr;

    gap: 70px;
}


/* marca */

.footer-brand-new img {
    width: 105px;
    height: 105px;

    object-fit: cover;

    border-radius: 50%;

    border:
        4px solid rgba(255,255,255,.78);

    box-shadow:
        0 10px 30px rgba(35,20,40,.20);
}


.footer-brand-new h3 {
    margin-top: 18px;

    font-family: Georgia, serif;

    font-size: 25px;

    font-weight: normal;

    letter-spacing: 1px;
}


.footer-brand-new > span {
    display: block;

    margin-top: 3px;

    color: #e9cfe6;

    font-family: Georgia, serif;

    font-size: 12px;

    font-style: italic;

    letter-spacing: 1.5px;
}


.footer-brand-new p {
    max-width: 280px;

    margin-top: 18px;

    color: rgba(255,255,255,.72);

    font-size: 12px;

    line-height: 1.7;
}


/* columnas */

.footer-column h4 {
    margin-bottom: 21px;

    color: white;

    font-size: 10px;

    letter-spacing: 2px;
}


.footer-column > a {
    width: fit-content;

    margin: 0 0 11px;

    display: block;

    color: rgba(255,255,255,.72);

    text-decoration: none;

    font-size: 12px;

    transition:
        color .2s ease,
        transform .2s ease;
}


.footer-column > a:hover {
    color: #f1cddd;

    transform: translateX(4px);
}


/* contacto */

.footer-contact > a {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-bottom: 18px;
}


.footer-contact i {
    width: 22px;

    margin-top: 2px;

    color: #f0bdd3;

    text-align: center;

    font-size: 15px;
}


.footer-contact span {
    line-height: 1.55;
}


/* redes */

.footer-social-text {
    max-width: 220px;

    margin-bottom: 20px;

    color: rgba(255,255,255,.68);

    font-size: 11px;

    line-height: 1.6;
}


.footer-socials {
    display: flex;

    gap: 9px;
}


.footer-socials a {
    width: 43px;
    height: 43px;

    margin: 0;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: #6c4f73;

    background:
        linear-gradient(
            145deg,
            #f3d6e5,
            #ead4f2
        );

    text-decoration: none;

    font-size: 17px;

    box-shadow:
        0 5px 16px rgba(30,15,35,.12);

    transition:
        transform .2s ease,
        background .2s ease;
}


.footer-socials a:hover {
    transform:
        translateY(-4px)
        scale(1.04);

    background: white;
}


/* =========================================================
   BARRA FINAL
   ========================================================= */

.footer-bottom {
    position: relative;

    z-index: 2;

    padding: 18px 6%;

    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 20px;

    border-top:
        1px solid rgba(255,255,255,.10);

    background:
        rgba(47,29,53,.16);

    color:
        rgba(255,255,255,.55);

    font-size: 10px;

    letter-spacing: .3px;
}


.footer-heart {
    color: #ebc2d6;
}


/* =========================================================
   MÓVIL
   ========================================================= */

@media (max-width: 850px) {

    .footer-cta {
        padding: 30px 25px;

        flex-direction: column;

        align-items: flex-start;
    }


    .footer-main {
        padding: 45px 28px;

        grid-template-columns:
            1fr 1fr;

        gap: 45px 30px;
    }


    .footer-bottom {
        flex-direction: column;

        text-align: center;

        gap: 7px;
    }

}


@media (max-width: 520px) {

    .footer-cta {
        text-align: center;

        align-items: center;
    }


    .footer-cta-button {
        width: 100%;

        justify-content: center;
    }


    .footer-main {
        grid-template-columns: 1fr;

        text-align: center;
    }


    .footer-brand-new p,
    .footer-social-text {
        margin-left: auto;
        margin-right: auto;
    }


    .footer-column > a {
        margin-left: auto;
        margin-right: auto;
    }


    .footer-contact > a {
        width: fit-content;

        margin-left: auto;
        margin-right: auto;

        text-align: left;
    }


    .footer-socials {
        justify-content: center;
    }

}



/* =========================================================
   LUCE BONITO · DESPLEGABLES EN LISTA
   ========================================================= */


/*
 * MUJER y HOMBRE:
 * dejamos de centrar el desplegable.
 * Ahora nace justo debajo del botón correspondiente.
 */

.mega-menu {
    width: 365px !important;
    max-width: calc(100vw - 32px);

    left: 0 !important;
    right: auto !important;

    padding: 15px 20px 18px;

    display: flex !important;
    flex-direction: column;

    gap: 0;

    border-radius:
        0 0 15px 15px;

    background:
        rgba(251,244,252,.98);

    border:
        1px solid rgba(150,110,165,.14);

    box-shadow:
        0 18px 45px
        rgba(60,35,70,.14);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    transform:
        translateY(9px) !important;
}


/*
 * El hover anterior tenía translateX(-50%).
 * Lo anulamos definitivamente.
 */

.nav-dropdown:hover > .mega-menu {
    transform:
        translateY(0) !important;
}


/* =========================================================
   GRUPOS
   ========================================================= */

.mega-menu > div:not(.mega-promo) {
    display: flex;

    flex-direction: column;

    gap: 0;

    padding: 14px 2px;
}


/*
 * Separación entre PARA TI y COMPLETA EL LOOK
 */

.mega-menu > div:nth-child(2) {
    border-top:
        1px solid rgba(135,95,150,.12);
}


/* encabezados */

.mega-title {
    margin-bottom: 7px;

    color: #9b70ad;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2px;
}


/* =========================================================
   LINKS COMO LISTA
   ========================================================= */

.mega-menu > div:not(.mega-promo) > a {
    position: relative;

    padding:
        7px 8px
        7px 17px;

    display: block;

    border-radius: 6px;

    color: #4b3e4e;

    font-size: 13px;

    text-decoration: none;

    transition:
        background .18s ease,
        color .18s ease,
        padding-left .18s ease;
}


/* puntito pastel */

.mega-menu > div:not(.mega-promo) > a::before {
    content: "";

    position: absolute;

    left: 3px;
    top: 50%;

    width: 5px;
    height: 5px;

    transform:
        translateY(-50%);

    border-radius: 50%;

    background: #d795b3;
}


.mega-menu > div:not(.mega-promo) > a:hover {
    padding-left: 21px;

    color: #8c609c;

    background:
        rgba(223,199,234,.35);
}


/* =========================================================
   PROMO FINAL
   ========================================================= */

.mega-promo {
    margin-top: 5px;

    padding: 18px;

    border-radius: 11px;

    background:
        linear-gradient(
            125deg,
            #ddc1e9,
            #efc4d7 52%,
            #f3cdb7
        );
}


.mega-promo strong {
    margin-top: 7px;

    display: block;

    font-size: 21px;

    line-height: 1.1;
}


.mega-promo p {
    margin-top: 8px;

    font-size: 11px;

    line-height: 1.5;
}


.mega-promo > a {
    margin-top: 12px;

    display: inline-block;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .5px;
}


/* =========================================================
   ACCESORIOS
   También anclado al botón y no centrado.
   ========================================================= */

.mini-menu {
    width: 245px;

    max-width:
        calc(100vw - 32px);

    left: 0 !important;
    right: auto !important;

    padding: 13px;

    transform:
        translateY(9px) !important;
}


.nav-dropdown:hover > .mini-menu {
    transform:
        translateY(0) !important;
}


.mini-menu a {
    position: relative;

    padding: 10px 12px 10px 20px;

    border-radius: 6px;

    transition:
        background .18s ease,
        padding-left .18s ease;
}


.mini-menu a::before {
    content: "";

    position: absolute;

    left: 7px;
    top: 50%;

    width: 5px;
    height: 5px;

    transform:
        translateY(-50%);

    border-radius: 50%;

    background: #d795b3;
}


.mini-menu a:hover {
    padding-left: 24px;

    background:
        rgba(223,199,234,.35);
}


/* =========================================================
   PROTECCIÓN EXTRA
   ========================================================= */

.desktop-nav,
.nav-menu,
.nav-dropdown {
    overflow: visible !important;
}



/* =========================================================
   LUCE BONITO · TIPOGRAFÍA FINAL
   ========================================================= */

body {
    font-family: "Jost", Arial, sans-serif;
}


/* navegación */

.nav-menu > a,
.nav-dropdown > button {
    font-family: "Jost", sans-serif;

    font-size: 13px;

    font-weight: 500;

    letter-spacing: 1.15px;
}


/* desplegables */

.mega-menu a,
.mini-menu a {
    font-family: "Jost", sans-serif;

    font-weight: 400;

    letter-spacing: .15px;
}


.mega-title {
    font-family: "Jost", sans-serif;

    font-weight: 600;

    letter-spacing: 2.2px;
}


/* títulos elegantes */

.section-heading h2,
.store-section h2,
.store-whatsapp h3,
.footer-cta h2,
.footer-brand-new h3,
.product-card h3 {
    font-family: "Cormorant Garamond", Georgia, serif;
}


/* títulos principales algo más boutique */

.section-heading h2 {
    font-size: 40px;

    font-weight: 500;
}


/* botones y etiquetas */

.social-button,
.product-view,
.footer-cta-button,
.small-title,
.section-heading > p {
    font-family: "Jost", sans-serif;
}



/* =========================================================
   VER TODAS LAS NOVEDADES
   ========================================================= */

.shop-more {
    margin-top: 42px;

    text-align: center;
}


.shop-more button {
    padding: 13px 3px 9px;

    border: 0;
    border-bottom: 1px solid #7d5b8c;

    background: transparent;

    color: #5c4664;

    font-family: "Jost", sans-serif;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 1.6px;

    cursor: pointer;

    transition:
        color .2s ease,
        border-color .2s ease;
}


.shop-more button span {
    display: inline-block;

    margin-left: 8px;

    transition: transform .2s ease;
}


.shop-more button:hover {
    color: #9a668d;

    border-color: #bd7d9f;
}


.shop-more button:hover span {
    transform: translateX(5px);
}



/* =========================================================
   LUCE BONITO · HORARIO TIENDA
   ========================================================= */

.store-hours {
    max-width: 510px;

    margin: 27px 0 30px;

    padding: 20px 22px;

    display: flex;
    align-items: flex-start;

    gap: 17px;

    border:
        1px solid rgba(255,255,255,.35);

    border-radius: 16px;

    background:
        rgba(255,249,252,.53);

    box-shadow:
        0 9px 28px
        rgba(70,40,85,.07);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}


/* reloj */

.store-hours-icon {
    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #d7b8e5,
            #efbfd4
        );

    color: white;

    font-size: 20px;

    box-shadow:
        0 6px 18px
        rgba(120,75,140,.17);
}


.store-hours-content {
    flex: 1;
}


/* cabecera */

.store-hours-heading {
    margin-bottom: 13px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;
}


.store-hours-heading strong {
    color: #49394d;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 21px;

    font-weight: 600;
}


/* abierto / cerrado */

.store-status {
    padding: 5px 9px;

    display: inline-flex;
    align-items: center;

    gap: 6px;

    border-radius: 20px;

    font-family:
        "Jost",
        sans-serif;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: .5px;
}


.store-status::before {
    content: "";

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: currentColor;
}


.store-status.open {
    color: #298653;

    background:
        rgba(91,190,130,.15);
}


.store-status.closed {
    color: #a36377;

    background:
        rgba(204,130,155,.15);
}


/* filas */

.store-hours-row {
    min-height: 27px;

    display: grid;

    grid-template-columns:
        1fr auto;

    align-items: center;

    gap: 25px;

    color: #6c5d6e;

    font-family:
        "Jost",
        sans-serif;

    font-size: 11px;
}


.store-hours-row b {
    color: #4e3e51;

    font-weight: 500;

    white-space: nowrap;
}


.store-hours-row.second {
    margin-top: -4px;
}


.store-hours-row.saturday {
    margin-top: 8px;

    padding-top: 8px;

    border-top:
        1px solid rgba(120,85,135,.10);
}


.store-hours-row.sunday {
    color: #9b7583;
}


/* móvil */

@media (max-width: 520px) {

    .store-hours {
        padding: 17px;

        gap: 12px;
    }


    .store-hours-icon {
        width: 41px;
        height: 41px;

        flex-basis: 41px;

        font-size: 17px;
    }


    .store-hours-heading {
        align-items: flex-start;

        flex-direction: column;

        gap: 7px;
    }


    .store-hours-row {
        grid-template-columns:
            1fr;

        gap: 2px;

        margin-bottom: 8px;
    }


    .store-hours-row.second span {
        display: none;
    }

}



/* =========================================================
   CARRITO
   ========================================================= */

.cart-nav {
    position: relative;
}


.cart-count {
    position: absolute;

    right: 0;
    top: 3px;

    min-width: 17px;
    height: 17px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    border:
        2px solid rgba(248,235,244,.92);

    background: #d986a6;

    color: white;

    font-family: "Jost", sans-serif;

    font-size: 8px;
    font-weight: 600;
}



/* =========================================================
   LUCE BONITO · CARRITO TEMPORAL
   ========================================================= */

.cart-page {
    min-height: 100vh;

    background:
        linear-gradient(
            135deg,
            #dcc3e9 0%,
            #efc8da 48%,
            #f4d1ba 100%
        );
}


/* CABECERA */

.cart-header {
    min-height: 72px;

    padding: 0 5%;

    display: grid;

    grid-template-columns:
        1fr auto 1fr;

    align-items: center;

    border-bottom:
        1px solid rgba(105,70,115,.10);

    background:
        rgba(255,247,251,.62);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}


.cart-back {
    justify-self: start;

    color: #69516f;

    text-decoration: none;

    font-family: "Jost", sans-serif;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1.4px;
}


.cart-back i {
    margin-right: 8px;

    transition: transform .2s ease;
}


.cart-back:hover i {
    transform: translateX(-4px);
}


.cart-logo {
    color: #49394c;

    text-align: center;

    text-decoration: none;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 27px;

    line-height: .9;

    letter-spacing: 1.7px;
}


.cart-logo small {
    margin-top: 7px;

    display: block;

    font-family: "Jost", sans-serif;

    font-size: 7px;

    font-weight: 400;

    letter-spacing: 2.6px;
}


.cart-header-bag {
    justify-self: end;

    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(255,255,255,.55);

    color: #775d7e;

    text-decoration: none;

    font-size: 18px;
}



/* CONTENIDO */

.empty-cart {
    position: relative;

    min-height:
        calc(100vh - 72px);

    padding: 65px 20px;

    display: grid;

    place-items: center;

    overflow: hidden;
}


/* manchas pastel */

.empty-cart-decoration {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(7px);
}


.decoration-one {
    width: 370px;
    height: 370px;

    left: -120px;
    top: 40px;

    background:
        rgba(202,164,220,.32);
}


.decoration-two {
    width: 430px;
    height: 430px;

    right: -130px;
    bottom: -150px;

    background:
        rgba(245,196,179,.38);
}



/* TARJETA */

.empty-cart-card {
    position: relative;

    z-index: 2;

    width:
        min(760px,100%);

    padding:
        52px 60px 42px;

    text-align: center;

    border:
        1px solid rgba(255,255,255,.45);

    border-radius: 28px;

    background:
        rgba(255,249,252,.67);

    box-shadow:
        0 25px 70px
        rgba(76,42,88,.12);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}



/* bolsa */

.empty-cart-icon {
    position: relative;

    width: 82px;
    height: 82px;

    margin: 0 auto 25px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #d5b5e3,
            #efbdd2
        );

    color: white;

    box-shadow:
        0 10px 30px
        rgba(140,85,150,.18);

    font-size: 30px;
}


.empty-cart-icon span {
    position: absolute;

    right: -1px;
    top: -5px;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 25px;
}



/* textos */

.empty-cart-small {
    color: #9c6baa;

    font-family: "Jost", sans-serif;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 2.4px;
}


.empty-cart-card h1 {
    margin-top: 14px;

    color: #4e3d50;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size:
        clamp(37px,6vw,58px);

    font-weight: 500;

    line-height: 1;
}


.empty-cart-card h2 {
    margin-top: 4px;

    color: #4e3d50;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size:
        clamp(31px,5vw,48px);

    font-weight: 500;

    line-height: 1.05;
}


.empty-cart-card h2 em {
    color: #b16889;

    font-weight: 600;
}


.cart-laugh {
    margin-top: 5px;

    color: #ca829d;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 29px;

    letter-spacing: 5px;
}


.empty-cart-description {
    max-width: 520px;

    margin: 22px auto 0;

    color: #746776;

    font-family: "Jost", sans-serif;

    font-size: 12px;

    line-height: 1.75;
}



/* BOTONES */

.empty-cart-actions {
    margin-top: 30px;

    display: flex;

    justify-content: center;

    gap: 10px;

    flex-wrap: wrap;
}


.empty-cart-actions a {
    min-height: 48px;

    padding: 0 19px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    border-radius: 30px;

    color: white;

    text-decoration: none;

    font-family: "Jost", sans-serif;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: .9px;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}


.cart-store-button {
    background:
        linear-gradient(
            135deg,
            #9370a4,
            #ad7fac
        );
}


.cart-whatsapp-button {
    background:
        linear-gradient(
            135deg,
            #25D366,
            #20b95a
        );
}


.empty-cart-actions a:hover {
    transform: translateY(-3px);

    box-shadow:
        0 10px 25px
        rgba(70,40,80,.15);
}



/* seguir comprando */

.cart-continue {
    margin-top: 26px;

    display: inline-block;

    padding-bottom: 5px;

    border-bottom:
        1px solid #9f779e;

    color: #715774;

    text-decoration: none;

    font-family: "Jost", sans-serif;

    font-size: 10px;

    font-weight: 500;

    letter-spacing: .7px;
}


.cart-continue span {
    margin-left: 6px;

    display: inline-block;

    transition:
        transform .2s ease;
}


.cart-continue:hover span {
    transform:
        translateX(5px);
}



/* horario */

.cart-store-info {
    margin-top: 40px;

    padding-top: 24px;

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 20px;

    border-top:
        1px solid
        rgba(120,85,130,.12);
}


.cart-store-info > div {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    color: #766777;

    text-align: left;

    font-family: "Jost", sans-serif;

    font-size: 9px;

    line-height: 1.45;
}


.cart-store-info i {
    color: #a476a4;

    font-size: 17px;
}


.cart-store-info strong {
    display: block;

    color: #4d3e50;

    font-weight: 500;
}



/* MÓVIL */

@media (max-width: 600px) {

    .cart-header {
        min-height: 60px;

        padding: 0 16px;
    }


    .cart-back {
        font-size: 0;
    }


    .cart-back i {
        margin: 0;

        font-size: 17px;
    }


    .cart-logo {
        font-size: 22px;
    }


    .cart-header-bag {
        width: 36px;
        height: 36px;

        font-size: 15px;
    }


    .empty-cart {
        min-height:
            calc(100vh - 60px);

        padding:
            35px 14px;
    }


    .empty-cart-card {
        padding:
            38px 20px 30px;

        border-radius: 22px;
    }


    .empty-cart-icon {
        width: 67px;
        height: 67px;

        font-size: 25px;
    }


    .empty-cart-actions {
        flex-direction: column;
    }


    .empty-cart-actions a {
        width: 100%;
    }


    .cart-store-info {
        grid-template-columns: 1fr;

        text-align: center;
    }


    .cart-store-info > div {
        justify-content: flex-start;

        max-width: 230px;

        margin: auto;

        width: 100%;
    }

}



/* =========================================================
   LUCE BONITO · VISÍTANOS MÁS COMPACTO
   ========================================================= */

.store-section {
    max-width: 1180px;

    margin: 45px auto;

    padding: 38px 42px;

    grid-template-columns:
        1.15fr .85fr;

    gap: 45px;

    align-items: start;

    border-radius: 20px;

    background:
        linear-gradient(
            125deg,
            #d8bee7 0%,
            #edc5d8 52%,
            #f2cbb7 100%
        );
}


/* parte izquierda */

.store-section h2 {
    margin-top: 6px;

    font-size: 36px;
}


.store-section > div > p:not(.small-title) {
    margin: 15px 0 20px;

    line-height: 1.6;
}


/* horario un poco más compacto */

.store-hours {
    width: 100%;
    max-width: 590px;

    margin: 20px 0 24px;

    padding: 18px 20px;

    border-radius: 15px;

    background:
        rgba(255,247,252,.58);
}


.store-hours-icon {
    width: 44px;
    height: 44px;

    flex-basis: 44px;

    font-size: 18px;
}


.store-hours-heading {
    margin-bottom: 9px;
}


.store-hours-heading strong {
    font-size: 20px;
}


.store-hours-row {
    min-height: 24px;
}


/* botón mapa */

.store-section > div:first-child > a {
    padding: 12px 18px;

    border-radius: 24px;

    background:
        linear-gradient(
            135deg,
            #9571a6,
            #ab7eaa
        );

    box-shadow:
        0 7px 20px rgba(90,55,105,.12);
}


/* =========================================================
   WHATSAPP DERECHO
   NO SE ESTIRA A TODA LA ALTURA
   ========================================================= */

.store-whatsapp {
    align-self: center;

    height: fit-content;
    min-height: 0;

    padding: 30px 32px;

    border:
        1px solid rgba(255,255,255,.42);

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(255,247,251,.78),
            rgba(246,225,238,.72)
        );

    box-shadow:
        0 13px 35px
        rgba(75,40,90,.09);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}


.store-whatsapp > i {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        rgba(37,211,102,.11);

    color: #25c967;

    font-size: 27px;
}


.store-whatsapp h3 {
    margin-top: 18px;

    font-size: 28px;
}


.store-whatsapp p {
    margin: 12px 0 20px;

    font-size: 13px;

    line-height: 1.6;
}


.store-whatsapp a {
    padding: 13px 20px;

    border-radius: 28px;

    background:
        linear-gradient(
            135deg,
            #25D366,
            #20bb5b
        );

    box-shadow:
        0 8px 22px rgba(37,180,90,.16);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}


.store-whatsapp a:hover {
    transform: translateY(-2px);

    box-shadow:
        0 11px 27px rgba(37,180,90,.23);
}



/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .store-section {
        margin:
            32px 16px;

        padding:
            32px 28px;

        grid-template-columns:
            1fr;

        gap:
            28px;
    }


    .store-whatsapp {
        width: 100%;

        align-self: auto;
    }

}



/* =========================================================
   MÓVIL
   ========================================================= */

@media (max-width: 520px) {

    .store-section {
        margin:
            24px 10px;

        padding:
            27px 18px;

        border-radius:
            16px;
    }


    .store-section h2 {
        font-size:
            31px;
    }


    .store-hours {
        margin-top:
            17px;

        padding:
            16px;
    }


    .store-whatsapp {
        padding:
            24px 20px;

        text-align:
            center;
    }


    .store-whatsapp > i {
        margin:
            auto;
    }


    .store-whatsapp h3 {
        font-size:
            25px;
    }


    .store-whatsapp a {
        width:
            100%;

        text-align:
            center;
    }

}



/* =========================================================
   LUCE BONITO · TOPBAR FINAL
   ========================================================= */

.topbar {
    min-height: 35px;
    height: 35px;

    padding: 0 4%;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: clamp(28px, 5vw, 75px);

    background:
        rgba(249,239,246,.76) !important;

    color: #654f6b;

    font-family: "Jost", sans-serif;

    font-size: 10px;

    font-weight: 500;

    letter-spacing: .35px;

    white-space: nowrap;

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}


.topbar-item {
    display: flex;
    align-items: center;

    gap: 7px;

    color: #654f6b !important;

    text-decoration: none;
}


.topbar-item i {
    color: #a66f9e;

    font-size: 12px;
}


/* El paquete tiene un toque melocotón */

.topbar-item:nth-child(2) i {
    color: #c78776;
}


/* WhatsApp */

.topbar-whatsapp i {
    color: #39a968 !important;
}


.topbar-whatsapp {
    transition:
        color .2s ease,
        transform .2s ease;
}


.topbar-whatsapp:hover {
    color: #8e5e8c !important;

    transform: translateY(-1px);
}


/* En tablet reducimos espacios */

@media (max-width: 1100px) {

    .topbar {
        gap: 24px;

        font-size: 9px;
    }

}


/*
 * En móvil mantenemos la decisión anterior:
 * desaparece para no consumir 35px de pantalla.
 */

@media (max-width: 850px) {

    .topbar {
        display: none !important;
    }

}



/* =========================================================
   LUCE BONITO · MICROINTERACCIONES
   ========================================================= */


/* =========================================================
   VOLVER ARRIBA
   ========================================================= */

.back-to-top {
    position: fixed;

    right: 25px;
    bottom: 88px;

    z-index: 3900;

    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(255,255,255,.48);

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            rgba(220,192,234,.94),
            rgba(239,194,215,.94)
        );

    color: #634c6b;

    font-size: 14px;

    cursor: pointer;

    box-shadow:
        0 8px 24px
        rgba(65,35,75,.13);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transform:
        translateY(10px)
        scale(.92);

    transition:
        opacity .25s ease,
        visibility .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}


.back-to-top.visible {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform:
        translateY(0)
        scale(1);
}


.back-to-top:hover {
    transform:
        translateY(-3px)
        scale(1.04);

    box-shadow:
        0 12px 30px
        rgba(65,35,75,.18);
}


/* =========================================================
   ELEMENTOS QUE APARECEN AL HACER SCROLL
   ========================================================= */

.reveal-item {
    opacity: 0;

    transform:
        translateY(22px);

    transition:
        opacity .60s ease,
        transform .60s
        cubic-bezier(.22,.61,.36,1);

    transition-delay:
        var(--reveal-delay, 0ms);
}


.reveal-item.reveal-visible {
    opacity: 1;

    transform:
        translateY(0);
}


/*
 * Los vídeos y categorías pueden tener
 * un desplazamiento ligeramente menor.
 */

.reels-track article.reveal-item,
.category-track a.reveal-item,
.product-card.reveal-item,
.trust-item.reveal-item {
    transform:
        translateY(16px)
        scale(.985);
}


.reels-track article.reveal-visible,
.category-track a.reveal-visible,
.product-card.reveal-visible,
.trust-item.reveal-visible {
    transform:
        translateY(0)
        scale(1);
}


/* =========================================================
   MENÚ - SECCIÓN ACTIVA
   ========================================================= */

.nav-menu > a.section-active {
    color: #8d5f98 !important;
}


.nav-menu > a.section-active::after {
    width: 100% !important;

    background:
        linear-gradient(
            90deg,
            #a674b2,
            #d988aa
        );
}


/* =========================================================
   PEQUEÑO EFECTO EN BOTONES
   ========================================================= */

.social-button,
.footer-cta-button,
.product-view,
.store-section a,
.cart-store-button,
.cart-whatsapp-button {
    transition:
        transform .20s ease,
        box-shadow .20s ease,
        background .20s ease;
}


/* =========================================================
   MÓVIL
   ========================================================= */

@media (max-width: 520px) {

    .back-to-top {
        right: 17px;
        bottom: 82px;

        width: 42px;
        height: 42px;
    }


    .reveal-item {
        transform:
            translateY(14px);
    }

}


/* =========================================================
   ACCESIBILIDAD
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }


    .reveal-item,
    .reels-track article.reveal-item,
    .category-track a.reveal-item,
    .product-card.reveal-item,
    .trust-item.reveal-item {
        opacity: 1 !important;

        transform: none !important;

        transition: none !important;
    }


    .back-to-top {
        transition:
            opacity .1s ease;
    }

}



/* =========================================================
   LUCE BONITO · PULIDO FINAL VISUAL
   ========================================================= */


/* =========================================================
   1) TOPBAR MÁS VISIBLE
   ========================================================= */

.topbar {
    min-height: 42px !important;
    height: 42px !important;

    padding: 0 4% !important;

    gap: clamp(24px, 4vw, 60px) !important;

    font-size: 12px !important;
    font-weight: 500 !important;
    letter-spacing: .2px !important;
}


.topbar-item {
    gap: 8px !important;
}


.topbar-item i {
    font-size: 13px !important;
}


/* en pantallas medias, que no se aplaste */

@media (max-width: 1100px) {

    .topbar {
        font-size: 11px !important;
        gap: 20px !important;
    }

}


/* =========================================================
   2) HERO / LOGO LUCE BONITO MÁS ESTRECHO
   ========================================================= */

/*
 * El banner sigue a ancho completo,
 * pero limitamos su altura visual.
 */

.brand-hero {
    max-height: 430px;
    overflow: hidden;
}


.brand-hero > img {
    width: 100% !important;
    height: auto !important;

    max-height: 430px !important;

    object-fit: cover !important;
    object-position: center center !important;

    display: block;
}


/* tablet */

@media (max-width: 900px) {

    .brand-hero {
        max-height: 330px;
    }

    .brand-hero > img {
        max-height: 330px !important;
    }

}


/* móvil */

@media (max-width: 520px) {

    .brand-hero {
        max-height: 220px;
    }

    .brand-hero > img {
        max-height: 220px !important;
    }

}


/* =========================================================
   3) SECCIÓN VISÍTANOS MÁS BONITA
   ========================================================= */

.store-section {
    position: relative;

    max-width: 1180px;

    margin: 42px auto 50px !important;

    padding: 42px 42px !important;

    border-radius: 26px !important;

    overflow: hidden;

    background:
        linear-gradient(
            125deg,
            #d6bae6 0%,
            #ebc2d6 52%,
            #f3ccb7 100%
        ) !important;

    box-shadow:
        0 16px 42px rgba(75,40,90,.09);
}


/* decoración sutil de fondo */

.store-section::before {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    left: -80px;
    bottom: -110px;

    border-radius: 50%;

    background: rgba(255,255,255,.10);

    pointer-events: none;
}


.store-section::after {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    right: -70px;
    top: -60px;

    border-radius: 50%;

    background: rgba(255,255,255,.08);

    pointer-events: none;
}


/* columna izquierda */

.store-section > div:first-child {
    position: relative;
    z-index: 2;
}


/* columna derecha */

.store-whatsapp {
    position: relative;
    z-index: 2;
}


/* =========================================================
   4) TARJETA HORARIO - MÁS PREMIUM
   ========================================================= */

.store-hours {
    position: relative;

    max-width: 620px;

    margin: 22px 0 24px !important;
    padding: 22px 24px !important;

    border:
        1px solid rgba(255,255,255,.45) !important;

    border-radius: 22px !important;

    background:
        linear-gradient(
            145deg,
            rgba(255,249,252,.72),
            rgba(248,235,244,.58)
        ) !important;

    box-shadow:
        0 14px 36px rgba(70,40,85,.08) !important;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}


/* etiqueta superior */

.store-hours::before {
    content: "TIENDA FÍSICA";

    position: absolute;

    top: 14px;
    right: 18px;

    padding: 5px 10px;

    border-radius: 20px;

    background: rgba(170,120,185,.12);

    color: #9467a4;

    font-family: "Jost", sans-serif;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.5px;
}


.store-hours-icon {
    width: 50px !important;
    height: 50px !important;

    flex-basis: 50px !important;

    background:
        linear-gradient(
            145deg,
            #d9b8e4,
            #efbfd4
        ) !important;

    box-shadow:
        0 8px 20px rgba(130,80,145,.16) !important;
}


.store-hours-heading strong {
    font-size: 24px !important;
}


.store-status {
    font-size: 10px !important;
    font-weight: 600 !important;
}


.store-hours-row {
    min-height: 28px !important;

    font-size: 12px !important;
}


.store-hours-row b {
    font-size: 13px !important;
}


/* =========================================================
   5) TARJETA WHATSAPP - MÁS VIVA
   ========================================================= */

.store-whatsapp {
    align-self: center;

    padding: 34px 34px !important;

    border:
        1px solid rgba(255,255,255,.48) !important;

    border-radius: 24px !important;

    background:
        linear-gradient(
            145deg,
            rgba(255,249,252,.82),
            rgba(247,233,240,.72)
        ) !important;

    box-shadow:
        0 18px 42px rgba(75,40,90,.10) !important;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    overflow: hidden;
}


/* detalle decorativo */

.store-whatsapp::before {
    content: "";

    position: absolute;

    width: 140px;
    height: 140px;

    right: -35px;
    top: -35px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(37,211,102,.10) 0%,
            rgba(37,211,102,0) 70%
        );

    pointer-events: none;
}


.store-whatsapp > i {
    width: 58px !important;
    height: 58px !important;

    margin-bottom: 6px;

    background:
        linear-gradient(
            145deg,
            rgba(37,211,102,.14),
            rgba(37,211,102,.07)
        ) !important;

    box-shadow:
        0 8px 18px rgba(37,180,90,.10);
}


.store-whatsapp h3 {
    margin-top: 18px !important;

    font-size: 32px !important;
    line-height: 1.05;
}


.store-whatsapp p {
    margin: 12px 0 22px !important;

    color: #756878 !important;

    font-size: 14px !important;
    line-height: 1.6 !important;
}


/* botoncito guapo */

.store-whatsapp a {
    padding: 14px 24px !important;

    border-radius: 999px !important;

    background:
        linear-gradient(
            135deg,
            #2ad667,
            #22bf5c
        ) !important;

    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: .5px !important;

    box-shadow:
        0 10px 26px rgba(37,180,90,.18) !important;
}


.store-whatsapp a:hover {
    transform: translateY(-2px) scale(1.01) !important;
}


/* =========================================================
   6) BOTÓN CÓMO LLEGAR MÁS BONITO
   ========================================================= */

.store-section > div:first-child > a {
    padding: 13px 20px !important;

    border-radius: 999px !important;

    background:
        linear-gradient(
            135deg,
            #9671a8,
            #ae80ac
        ) !important;

    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: .4px !important;
}


/* =========================================================
   7) MÓVIL / TABLET
   ========================================================= */

@media (max-width: 900px) {

    .store-section {
        padding: 32px 26px !important;
        gap: 28px !important;
    }

    .store-whatsapp {
        align-self: auto;
    }

}


@media (max-width: 520px) {

    .topbar {
        display: none !important;
    }

    .store-section {
        padding: 26px 18px !important;
        border-radius: 18px !important;
    }

    .store-hours {
        padding: 18px 16px !important;
        border-radius: 18px !important;
    }

    .store-hours::before {
        top: 12px;
        right: 12px;

        font-size: 8px;
        padding: 4px 8px;
    }

    .store-whatsapp {
        padding: 24px 18px !important;
        border-radius: 18px !important;

        text-align: center;
    }

    .store-whatsapp > i {
        margin-left: auto;
        margin-right: auto;
    }

    .store-whatsapp h3 {
        font-size: 28px !important;
    }

    .store-whatsapp a {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

}



/* =========================================================
   LUCE BONITO · VISÍTANOS SIMPLIFICADO
   ========================================================= */

.store-section {
    max-width: 980px !important;

    margin:
        42px auto 50px !important;

    padding:
        46px 55px !important;

    display: block !important;

    background:
        linear-gradient(
            125deg,
            #d6bae6 0%,
            #ebc2d6 55%,
            #f3ccb7 100%
        ) !important;
}


/* contenido más equilibrado */

.store-section > div:first-child {
    max-width: 760px;

    margin: 0 auto;
}


/* cabecera */

.store-section h2 {
    font-size:
        clamp(38px, 5vw, 52px) !important;
}


/* dirección */

.store-section > div:first-child > p:not(.small-title) {
    max-width: 420px;

    margin:
        17px 0 23px !important;

    font-size: 14px;

    line-height: 1.7;
}


/* horario algo más ancho */

.store-hours {
    max-width: 720px !important;

    margin:
        24px 0 26px !important;
}


/* botón cómo llegar */

.store-section > div:first-child > a {
    display: inline-flex !important;

    align-items: center;

    gap: 8px;
}


/* móvil */

@media (max-width: 520px) {

    .store-section {
        margin:
            25px 10px 35px !important;

        padding:
            30px 18px !important;
    }


    .store-section h2 {
        font-size:
            34px !important;
    }

}



/* =========================================================
   LUCE BONITO · REMATE HOME
   Hero más estrecho + vídeos visibles nada más entrar
   ========================================================= */


/* =========================================================
   HERO PANORÁMICO MÁS ESTRECHO
   NO deformamos la imagen
   ========================================================= */

.brand-hero {
    width: 100%;

    height: clamp(245px, 22vw, 330px) !important;
    max-height: 330px !important;

    overflow: hidden;

    background: #efdde9;
}


.brand-hero > img {
    width: 100% !important;
    height: 100% !important;

    max-height: none !important;

    object-fit: cover !important;

    /*
     * Mantenemos el logo en el centro,
     * recortando principalmente acuarela superior/inferior.
     */
    object-position: center 51% !important;

    transform: none !important;
}


/* =========================================================
   MENÚ UN POCO MÁS FINO
   ========================================================= */

.desktop-nav {
    min-height: 60px !important;
}


.nav-menu > a,
.nav-dropdown > button {
    min-height: 60px !important;
}


/*
 * La cabecera superior sigue legible pero
 * no roba demasiada altura.
 */

.topbar {
    height: 39px !important;
    min-height: 39px !important;
}



/* =========================================================
   VÍDEOS CASI PEGADOS AL HERO
   ========================================================= */

.reels-section {
    padding:
        24px 20px
        42px !important;

    margin-top: 0 !important;
}


/*
 * Quitamos el gran espacio antes del título.
 */

.reels-section .section-heading {
    margin: 0 0 17px !important;
}


.reels-section .section-heading > p {
    margin: 0 0 4px !important;

    font-size: 9px !important;

    letter-spacing: 2.4px;
}


.reels-section .section-heading h2 {
    margin-top: 0 !important;

    font-size:
        clamp(29px, 3vw, 38px) !important;

    line-height: 1.05;
}


/*
 * Vídeos inmediatamente debajo del título.
 */

.reels-track {
    margin-top: 19px !important;

    max-width: 760px !important;

    gap: 12px !important;
}


/*
 * Los dejamos verticales y compactos.
 */

.reels-track article {
    flex: 0 0 158px !important;

    width: 158px !important;
    max-width: 158px !important;
}


/*
 * Botón TikTok también más cerca.
 */

.social-button {
    margin-top: 20px !important;
}



/* =========================================================
   TRANSICIÓN HERO → REDES
   ========================================================= */

.reels-section::before {
    height: 18px !important;

    top: -9px !important;

    background:
        linear-gradient(
            180deg,
            rgba(245,220,230,.15),
            rgba(220,194,232,.72)
        ) !important;
}



/* =========================================================
   ESPACIADO GENERAL MÁS COMPACTO
   ========================================================= */

.benefits,
.trust-benefits {
    margin-top: 28px !important;
    margin-bottom: 38px !important;
}


.categories {
    padding-top: 46px !important;
    padding-bottom: 58px !important;
}


.shop-section {
    padding-top: 58px !important;
    padding-bottom: 68px !important;
}


.store-section {
    margin-top: 38px !important;
    margin-bottom: 40px !important;
}



/* =========================================================
   PEQUEÑO DETALLE EN EL HERO
   ========================================================= */

/*
 * Degradado muy sutil abajo para unir visualmente
 * la acuarela con la sección de vídeos.
 */

.brand-hero::after {
    content: "" !important;

    display: block !important;

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 35px;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(225,198,232,.18)
        );
}



/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .brand-hero {
        height: 245px !important;
    }


    .reels-section {
        padding-top: 21px !important;
    }


    .reels-track {
        justify-content: flex-start;
    }

}



/* =========================================================
   MÓVIL
   ========================================================= */

@media (max-width: 520px) {

    /*
     * Queremos ver ya el contenido social
     * después de abrir la web.
     */

    .brand-hero {
        height: 155px !important;
    }


    .brand-hero > img {
        object-position:
            center center !important;
    }


    .reels-section {
        padding:
            20px 0
            34px 14px !important;
    }


    .reels-section .section-heading {
        padding-right: 14px;

        margin-bottom:
            13px !important;
    }


    .reels-section .section-heading h2 {
        font-size:
            28px !important;
    }


    .reels-track {
        margin-top:
            14px !important;
    }


    .reels-track article {
        flex:
            0 0 145px !important;

        width:
            145px !important;

        max-width:
            145px !important;
    }

}



/* =========================================================
   LUCE BONITO · HERO DEFINITIVO
   Cabecera ultrapanorámica SIN RECORTE
   ========================================================= */

.brand-hero {
    position: relative;

    width: 100% !important;
    height: auto !important;

    max-height: none !important;

    margin: 0;
    padding: 0;

    display: block;

    overflow: hidden;

    background: #f5e7ec;
}


/*
 * Nada de imágenes duplicadas o fondos blur.
 */

.brand-hero-background {
    display: none !important;
}


.brand-hero::after {
    content: none !important;
    display: none !important;
}


/*
 * CLAVE:
 *
 * La imagen establece su propia altura.
 * NO cover.
 * NO crop.
 * NO stretch.
 */

.brand-hero > img {
    position: relative !important;

    width: 100% !important;
    height: auto !important;

    min-height: 0 !important;
    max-height: none !important;

    max-width: none !important;

    margin: 0 !important;

    display: block !important;

    object-fit: initial !important;
    object-position: initial !important;

    transform: none !important;
}


/* =========================================================
   MENÚ ALGO MÁS COMPACTO
   para que aparezcan antes los vídeos
   ========================================================= */

.topbar {
    height: 38px !important;
    min-height: 38px !important;
}


.desktop-nav {
    min-height: 58px !important;
}


.nav-menu > a,
.nav-dropdown > button {
    min-height: 58px !important;
}


/* =========================================================
   VÍDEOS MUY CERCA DEL HERO
   ========================================================= */

.reels-section {
    padding-top: 20px !important;
}


.reels-section .section-heading {
    margin-bottom: 12px !important;
}


.reels-track {
    margin-top: 15px !important;
}


/* =========================================================
   MÓVIL
   La proporción también se conserva aquí.
   ========================================================= */

@media (max-width: 850px) {

    .brand-hero {
        width: 100% !important;
        height: auto !important;
    }


    .brand-hero > img {
        width: 100% !important;
        height: auto !important;

        object-fit: initial !important;
    }

}



/* =========================================================
   LUCE BONITO
   HERO FINAL AISLADO - NO TOCAR
   ========================================================= */

.luce-hero-final {
    position: relative;

    width: 100%;

    margin: 0;
    padding: 0;

    display: block;

    overflow: visible;

    line-height: 0;

    background: #f8e9ee;
}


.luce-hero-final > img {
    position: static;

    width: 100%;
    height: auto;

    min-width: 0;
    min-height: 0;

    max-width: 100%;
    max-height: none;

    margin: 0;
    padding: 0;

    display: block;

    object-fit: initial;

    transform: none;

    border: 0;
}



/* =========================================================
   HOME COMPACTA
   ========================================================= */

/*
 * Menú ligeramente compacto sin apretarlo demasiado.
 */

.topbar {
    min-height: 40px !important;
    height: 40px !important;
}


.desktop-nav {
    min-height: 60px !important;
}


.nav-menu > a,
.nav-dropdown > button {
    min-height: 60px !important;
}


/*
 * Los vídeos empiezan inmediatamente después
 * de la cabecera.
 */

.reels-section {
    margin: 0 !important;

    padding:
        21px 20px
        40px !important;
}


.reels-section::before {
    display: none !important;
}


.reels-section .section-heading {
    margin:
        0 0 13px !important;
}


.reels-section .section-heading > p {
    margin-bottom:
        4px !important;
}


.reels-section .section-heading h2 {
    margin:
        0 !important;
}


.reels-track {
    margin-top:
        16px !important;
}



/* =========================================================
   MÓVIL
   También SIN RECORTAR.
   ========================================================= */

@media (max-width: 850px) {

    .luce-hero-final {
        width: 100%;

        height: auto;
    }


    .luce-hero-final > img {
        width: 100%;
        height: auto;

        max-height: none;

        display: block;
    }

}


@media (max-width: 520px) {

    .reels-section {
        padding:
            18px 0
            32px 14px !important;
    }

}



/* =========================================================
   HERO FINAL SIN RECORTE ARRIBA
   ========================================================= */

.brand-hero,
.luce-hero-final {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;

    margin: 0 !important;
    padding: 0 !important;

    overflow: visible !important;
    background: #f8e9ee !important;
}


/* por si quedó el fondo viejo */
.brand-hero-background {
    display: none !important;
}

.brand-hero::before,
.brand-hero::after,
.luce-hero-final::before,
.luce-hero-final::after {
    display: none !important;
    content: none !important;
}


.brand-hero > img,
.luce-hero-final > img {
    width: 100% !important;
    height: auto !important;

    min-height: 0 !important;
    max-height: none !important;

    display: block !important;

    object-fit: contain !important;
    object-position: center top !important;

    transform: none !important;
}


/* vídeos muy arriba */
.reels-section {
    padding-top: 18px !important;
    margin-top: 0 !important;
}

.reels-section .section-heading {
    margin-top: 0 !important;
    margin-bottom: 12px !important;
}



/* =========================================================
   LUCE BONITO · FOOTER COMPACTO FINAL
   ========================================================= */

.footer-main {
    padding-top: 38px !important;
    padding-bottom: 32px !important;

    gap: 55px !important;
}


/* logo un poco menor */

.footer-brand-new img {
    width: 88px !important;
    height: 88px !important;
}


.footer-brand-new h3 {
    margin-top: 12px !important;

    font-size: 23px !important;
}


.footer-brand-new > span {
    margin-top: 2px !important;
}


.footer-brand-new p {
    margin-top: 13px !important;

    line-height: 1.55 !important;
}


/* columnas más compactas */

.footer-column h4 {
    margin-bottom: 15px !important;
}


.footer-column > a {
    margin-bottom: 8px !important;
}


.footer-contact > a {
    margin-bottom: 13px !important;
}


.footer-social-text {
    margin-bottom: 15px !important;
}


/* barra inferior */

.footer-bottom {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
}


/* reducimos también la decoración */

.footer-luce::after {
    width: 300px !important;
    height: 300px !important;

    top: 45px !important;
}


/* móvil */

@media (max-width: 850px) {

    .footer-main {
        padding-top: 35px !important;
        padding-bottom: 30px !important;

        gap: 35px 25px !important;
    }

}

