/* Playfair Display & Manrope*/
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* Основные стили */
* {
    padding: 0;
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-weight: 400;
}

body {
    background-color: #ffffff;
}

img {
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
}

a, button {
    cursor: pointer;
}

a {
    text-decoration: none;
}




/* Тост уведомление */
.toast {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 100;
    background-color: rgba(29, 43, 79, 1);
    color: #ffffff;
    font-size: 15px;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(29, 43, 79, 0.25);
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.3s ease;
}

.toast.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Адаптация тоста */
@media (max-width: 480px) {
    .toast {
        right: 16px;
        left: 16px;
        bottom: 16px;
        font-size: 14px;
        padding: 13px 18px;
    }
}
