:root {
    --black: #02000C;
    --navy: #071F40;
    --soft-beige: #F2D2B6;
    --beige: #DAAA91;
    --brown: #A66047;
    --btn-bg-start: #0a1931;
    --btn-bg-end: #000000;
    --glow-color: rgba(255, 255, 255, 0.15);
    --text-beige: #d4c7b0;
    /* Ajusta según tu variable --soft-beige */
}

.colorbrown {
    color: var(--brown);
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Inter:wght@300;400&display=swap');

body {
    background: #071F40;
    background: linear-gradient(180deg, rgba(7, 31, 64, 1) 0%, rgba(4, 17, 34, 1) 25%);
    color: #f3d1b5;
    overflow-x: hidden;
}

.bg-navy {
    background-color: var(--navy) !important;
}

/* EFECTO DE DESENFOQUE PERSISTENTE */
.permanent-blur {
    filter: blur(2.5px);
    /* Se queda un poco borroso siempre */
    transition: filter 0.5s ease;
}

.logo-font {
    font-family: 'Playfair Display', serif;
}

.glass-nav {
    background: rgba(2, 12, 27, 0.7);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(243, 209, 181, 0.1);
}

/* Animación de entrada para el loader */
.blurry-start {
    filter: blur(20px);
    opacity: 0;
}

/* Colores basados en tu nueva imagen */
.bg-cart-item {
    background-color: #fdf5f0;
}

/* El tono beige suave de los precios */
.text-navy {
    color: #020c1b;
}

.btn-navy {
    background-color: #020c1b;
    color: #f3d1b5;
}

.modal-white {
    background-color: #ffffff;
    color: #020c1b;
}

#desktop-links {
    /* Asegura que el despliegue horizontal sea suave */
    transition: max-width 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}



/* Definición de la variante ExtraLight */
@font-face {
    font-family: 'Nexa';
    src: url('font/Nexa-Light.ttf') format('truetype');
    font-weight: 300;
    /* Light */
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nexa';
    src: url('font/Nexa-Heavy.ttf') format('truetype');
    font-weight: 900;
    /* Heavy */
    font-style: normal;
    font-display: swap;
}

/* Clases de utilidad */
.font-nexa-light {
    font-family: 'Nexa', sans-serif !important;
    font-weight: 300 !important;
}

.font-nexa-heavy {
    font-family: 'Nexa', sans-serif !important;
    font-weight: 900 !important;
}


.font-seriff {
    font-family: 'Nexa', sans-serif !important;
    font-weight: 300 !important;
}

.category-label {
    margin-left: 4px;
    width: fit-content;
    max-width: 100%;
    border-radius: 5px 5px 0px 0px;
}

body {
    font-family: 'Nexa', sans-serif;
}


@keyframes marquee {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes marquee2 {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(0%);
    }
}

.animate-marquee {
    animation: marquee 25s linear infinite;
}

.animate-marquee2 {
    animation: marquee2 25s linear infinite;
}

.carrousel-swiper {
    padding: 0.5rem 0 3rem 0;
}

.carrousel-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
}

.carrousel-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    margin-top: 2.5rem;
    position: relative;
    bottom: 0 !important;
}

.carrousel-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #D4C3A9;
    opacity: 0.4;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 !important;
}

.carrousel-pagination .swiper-pagination-bullet-active {
    width: 24px;
    border-radius: 4px;
    opacity: 1;
    background: #020c1b;
}