/* cookie-banner.css */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: rgba(45, 43, 43, 0.97);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 20px 30px;
    border-top: 2px solid #aa8453;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1140px;
    margin: 0 auto;
    gap: 15px;
}

.cookie-banner .cookie-text {
    flex: 1 1 60%;
    color: #e0e0e0;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.cookie-banner .cookie-text a {
    color: #aa8453;
    text-decoration: underline;
    transition: color 0.3s;
}

.cookie-banner .cookie-text a:hover {
    color: #d4b48c;
}

.cookie-banner .cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-banner .btn-cookie {
    font-family: 'Rubik', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 28px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.cookie-banner .btn-cookie:hover {
    background: rgba(255, 255, 255, 0.08);
}

.cookie-banner .btn-cookie-accept {
    background: #aa8453;
    border-color: #aa8453;
    color: #fff;
}

.cookie-banner .btn-cookie-accept:hover {
    background: #b8976a;
    border-color: #b8976a;
    color: #fff;
}

.cookie-banner .btn-cookie-decline {
    border-color: rgba(255, 255, 255, 0.2);
    color: #b0b0b0;
}

.cookie-banner .btn-cookie-decline:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

/* Адаптив */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 18px 20px;
    }
    .cookie-banner .container {
        flex-direction: column;
        text-align: center;
    }
    .cookie-banner .cookie-text {
        flex: 1 1 100%;
        font-size: 13px;
    }
    .cookie-banner .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    .cookie-banner .btn-cookie {
        padding: 8px 20px;
        font-size: 12px;
        flex: 1 1 auto;
        min-width: 100px;
    }
}

@media (max-width: 480px) {
    .cookie-banner .cookie-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .cookie-banner .btn-cookie {
        width: 100%;
        text-align: center;
    }
}