/* Cookie Banner - Dark Style */
.aqr-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    border-top: 1px solid #333;
    padding: 16px 24px;
    z-index: 99999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

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

.aqr-cookie-banner__content p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.aqr-cookie-banner__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.aqr-cookie-banner__link {
    color: #c49b5c;
    text-decoration: underline;
    font-size: 13px;
    white-space: nowrap;
}

.aqr-cookie-banner__btn {
    background: #c49b5c;
    color: #141414;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.aqr-cookie-banner__btn:hover {
    background: #d4ab6c;
}

@media (max-width: 600px) {
    .aqr-cookie-banner__content {
        flex-direction: column;
        text-align: center;
    }
    .aqr-cookie-banner__actions {
        justify-content: center;
    }
}
