/* Cookies Banner Styles */
.cookies {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 800;
    background: #f0fdf4; /* Светлый зеленый фон, как у карточек на сайте */
    border-top: 1px solid #bbf7d0;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.1);
    animation: slideUp 0.6s ease-out;
    font-family: "Inter", "Open Sans", Arial, sans-serif;
}

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

.cookies-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: 1160px;
    margin: 0 auto;
    padding: 24px 20px;
    color: #1f2937; /* Темный текст для светлого фона */
}

.cookies-main {
    flex: 1;
}

.cookies-title {
    font-weight: 700;
    font-size: 19px;
    line-height: 1.3;
    color: #111827;
    margin-bottom: 6px;
}

.cookies-desc {
    font-size: 14px;
    line-height: 1.55;
    color: #4b5563;
    max-width: 800px;
}

.cookies-desc a {
    color: #22c55e; /* Зеленый цвет ссылок, в стиле сайта */
    text-decoration: underline;
    font-weight: 500;
}

.cookies-desc a:hover {
    color: #16a34a;
    text-decoration: none;
}

.cookies-btn {
    min-width: 160px;
    padding: 14px 32px;
    background: #22c55e; /* Зеленый цвет кнопки, как на сайте */
    color: white !important;
    border: none;
    border-radius: 232px; /* Скругление как у кнопок на сайте */
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .1); /* Легкая тень в стиле сайта */
    white-space: nowrap;
}

.cookies-btn:hover {
    background: #16a34a; /* Темнее зеленый при наведении */
    transform: translateY(-2px);
    text-decoration: none;
    box-shadow: 0 6px 8px rgba(0, 0, 0, .15);
}

.cookies-btn:active {
    transform: translateY(-1px);
}

/* Responsive Styles */
@media (max-width: 767px) {
    .cookies-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 24px 16px;
    }
    .cookies-btn {
        width: 100%;
        max-width: 340px;
        padding: 16px 32px;
    }
}