/* ------------------------------------------------ */
/* TOAST */

.custom-aguafy-toast {
    /* --- Dimensiones y Posicionamiento --- */
    width: 100%;
    max-width: 100% !important;
    height: 70px;
    margin: 0 !important;
    padding: 0 20px;
    border-radius: 0 !important;
    position: fixed;
    left: 0;
    bottom: 0 !important;
    z-index: 99999;

    /* --- Color y Tipografía --- */
    background: var(--secondary) !important;
    color: white;
    font-size: var(--text-l);
    text-align: center;

    /* --- Centrado y Display --- */
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: none !important;

    /* --- Estado Inicial --- */
    /* El toast empieza abajo, fuera de la pantalla. No se usa transition. */
    transform: translateY(100%);
}

@media (max-width: 768px) {
    .custom-aguafy-toast {
        height: 60px;
        font-size: var(--text-m);
    }
}

/* Cuando el toast debe aparecer, se ejecuta la animación */
.custom-aguafy-toast.toastify-on {
    /* La palabra 'forwards' hace que se mantenga en el estado final de la animación */
    animation: slideInFromBottom 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

/* --- Definición de la Animación --- */
@keyframes slideInFromBottom {
    /* Empieza desde abajo (100% de su propia altura) */
    from {
        transform: translateY(100%);
    }
    /* Termina en su posición final (visible) */
    to {
        transform: translateY(0);
    }
}

/* --- Botón de Cerrar --- */
.custom-aguafy-toast .toast-close {
    color: white;
    opacity: 0.8;
    font-size: 1.5em;
    right: 20px;
}

.custom-aguafy-toast .toast-close:hover {
    opacity: 1;
}

/* ------------------------------------------------ */
/* PRECIOS */

/* estilo precios */
.shop-card__price del {
    color: var(--text-aux);
}

.shop-card__price ins {
    text-decoration: none;
}

.price-note {
    font-weight: 500;
    font-style: italic;
    line-height: 1;
}




