.cookie-consent-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 2000;
    background: rgba(14, 24, 18, 0.96);
    color: #f4f1e8;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.cookie-consent-inner {
    padding: 18px 20px;
}

.cookie-consent-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.cookie-consent-text {
    font-size: 14px;
    line-height: 1.5;
    max-width: 720px;
}

.cookie-consent-link {
    color: #9fe870;
    text-decoration: underline;
}

.cookie-consent-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.cookie-consent-button {
    border: 0;
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.cookie-consent-button-primary {
    background: #8ccf52;
    color: #14220f;
}

.cookie-consent-button-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #f4f1e8;
}

.cookie-consent-settings {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.cookie-consent-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 400;
}

.cookie-consent-option input {
    margin-top: 3px;
}

.cookie-consent-option span {
    display: block;
}

.cookie-consent-option small {
    display: block;
    margin-top: 3px;
    color: rgba(244, 241, 232, 0.75);
}

.cookie-consent-option-fixed {
    opacity: 0.75;
}

.cookie-consent-settings-actions {
    margin-top: 14px;
}

@media (max-width: 767px) {
    .cookie-consent-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .cookie-consent-inner {
        padding: 16px;
    }

    .cookie-consent-button {
        width: 100%;
    }
}
