/* Например, в handy.css */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
    z-index: 99999;
    border-top: 2px solid #4e831f;
    box-sizing: border-box;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: translateY(0);
}

.cookie-banner.hidden {
    opacity: 0;
    transform: translateY(100%);
    pointer-events: none;
}

.cookie-banner__content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.cookie-banner__text {
    font-size: 14px;
    margin: 0;
    flex: 1 1 300px;
}

.cookie-banner__link {
    color: #4e831f;
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-banner__button {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
}

.cookie-banner__button--primary {
    background: #4e831f;
    color: white;
}

.cookie-banner__button--primary:hover {
    background: #3a6b16;
}

.cookie-banner__button--secondary {
    background: #e0e0e0;
    color: #333;
}

.cookie-banner__button--secondary:hover {
    background: #ccc;
}