:root {
    --yoli-pink: #FFD1DC;
    --yoli-blue: #B3E5FC;
    --yoli-yellow: #FFF9C4;
    --yoli-text: #2D3436;
    --yoli-gradient: linear-gradient(135deg, #FFF9C4 0%, #B3E5FC 100%);
}

/* --- ANIMACIONES --- */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-soft {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* --- MENÚ MODERNO --- */
.navbar {
    animation: fadeInDown 0.6s ease-out;
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(15px);
    border-bottom: 3px solid #FFFFFF !important;
    padding: 15px 0;
}

.nav-link {
    position: relative;
    padding: 10px 20px !important;
    margin: 0 5px;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Estado Seleccionado / Activo */
.nav-link.active-yoli {
    background: var(--yoli-blue);
    color: var(--yoli-text) !important;
    box-shadow: 0 8px 15px rgba(179, 229, 252, 0.4);
    font-weight: 700;
}

.nav-link:hover:not(.active-yoli) {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Botón de Carrito Animado */
.btn-cart-modern {
    background: var(--yoli-pink);
    border: 3px solid #FFF;
    box-shadow: 0 10px 20px rgba(255, 209, 220, 0.3);
    transition: all 0.3s;
}

.btn-cart-modern:hover {
    transform: scale(1.1) rotate(-3deg);
    background: #FFB6C1;
}

/* --- CARRITO LATERAL --- */
.offcanvas-clay {
    border-radius: 40px 0 0 40px !important;
    border-left: 5px solid #FFF !important;
    box-shadow: -20px 0 40px rgba(0,0,0,0.05) !important;
}

.cart-item-card {
    border: none;
    border-radius: 20px;
    background: white;
    box-shadow: 10px 10px 20px rgba(0,0,0,0.02);
    transition: 0.3s;
}

.cart-item-card:hover {
    transform: scale(1.02);
}