.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 1);
    color: white;
    z-index: 10000;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-popup__content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-popup__text {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
	color: black;
    min-width: 300px;
}

.cookie-popup__link {
    color: #572A6B;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-popup__link:hover {
    color: #431c54;
}

.cookie-popup__buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-popup__btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 100px;
}

.cookie-popup__btn--accept {
    background: #572A6B;
    color: white;
}

.cookie-popup__btn--accept:hover {
    background: #431c54;
    transform: translateY(-1px);
}

.cookie-popup__btn--decline {
    background: #fff;
    border: solid 1px #572A6B;
    border-radius: 20px;
    color: black;
}

.cookie-popup__btn--decline:hover {
    background: #572A6B;
    border: solid 1px #572A6B;
    color: white;
    transform: translateY(-1px);
}

/* Адаптивность */
@media (max-width: 768px) {
    .cookie-popup {
        padding: 15px;
    }

    .cookie-popup__content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-popup__text {
        min-width: auto;
        margin-bottom: 10px;
    }

    .cookie-popup__buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-popup__btn {
        flex: 1;
        max-width: 150px;
    }
}

/* Скрытие попапа */
.cookie-popup--hidden {
    animation: slideDown 0.3s ease-in forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100%);
        opacity: 0;
    }
}