.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}



@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-\[fade-in-up_0\.3s_ease-out\] {
    animation: fade-in-up 0.3s ease-out;
}

.servicio-titulo {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 1.375rem;
    line-height: 1.4;
    letter-spacing: 0.02em;
    color: #4c2d0a; /* on-primary-fixed */
    background-color: transparent;
    padding: 0.6rem 1.25rem;
    display: inline-block;
    text-align: center;
}

.combo-nombre {
    font-family: 'Manrope', sans-serif;
    font-weight: 600; 
    font-size: 1.75rem; 
    line-height: 1.3;
    letter-spacing: 0.02em;
    color: #4c2d0a; 
    background-color: transparent;
    padding: 0.5rem 1rem;
    display: inline-block;
    text-align: center;
}

/* --- Content Capsules --- */
.content-capsule {
    background-color: #fdfaf5;
    box-shadow: 0 12px 30px rgba(125, 87, 49, 0.18);
    border: 1px solid rgba(125, 87, 49, 0.1);
    border-radius: 1.25rem;
    transition: all 0.3s ease;
}
.content-capsule:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(125, 87, 49, 0.25);
}

/* --- Dynamic WhatsApp Cart --- */

.btn-agregar {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.7rem 1.4rem;
    border: none;
    border-radius: 20px;
    color: #fff7f4;
    background: #7d5731;
    box-shadow: 0 4px 10px rgba(125, 87, 49, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-agregar:hover {
    background-color: #6f4c26;
    box-shadow: 0 6px 15px rgba(125, 87, 49, 0.3);
}

.btn-agregar.agregado {
    background-color: #f9ddd0;
    color: #4c2d0a;
    box-shadow: none;
    font-weight: 700;
}

#cart-widget {
    position: fixed;
    bottom: 106px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

#cart-button {
    width: 4rem;
    height: 4rem;
    background-color: #ba7c7c; /* Rosa viejo intenso/elegante */
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    transition: transform 0.3s ease;
    border: none;
}

#cart-button:hover {
    transform: scale(1.05);
}

.pop-cart {
    animation: pop-animation 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes pop-animation {
    50% { transform: scale(1.2); }
}

#cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: #ffffff;
    color: #ba7c7c;
    border: 2px solid #ba7c7c;
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#cart-badge.show {
    opacity: 1;
    transform: scale(1);
}

#cart-dropdown {
    background-color: #ffffff;
    border-radius: 1.25rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    width: 320px;
    max-width: calc(100vw - 40px);
    padding: 1.5rem;
    margin-bottom: 1rem;
    display: none;
    transform-origin: bottom right;
    border: 1px solid rgba(0,0,0,0.05);
}

#cart-dropdown.active {
    display: block;
    animation: fade-in-up 0.2s ease-out;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(125, 87, 49, 0.1);
    font-size: 0.85rem;
    color: #4c2d0a;
}

.cart-item-remove {
    color: #a89481;
    cursor: pointer;
    font-size: 1.1rem;
    transition: color 0.2s;
}

.cart-item-remove:hover {
    color: #db3a3a;
}

/* Scroll Spy Styles */
.nav-link-active {
    color: #7d5731 !important;
}

.desktop-link.nav-link-active {
    border-bottom-color: #7d5731 !important;
}

.dark .nav-link-active {
    color: #fac898 !important;
}

.dark .desktop-link.nav-link-active {
    border-bottom-color: #fac898 !important;
}


