.cookie-consent-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    background: #6b5121;
    color: #fff;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, .25);
    padding: 12px 16px;
}

.cookie-consent-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-consent-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 14px;
}

.cookie-consent-copy strong {
    font-size: 16px;
}

.cookie-consent-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-consent-actions button,
.cookie-consent-actions a {
    border: 0;
    border-radius: 4px;
    padding: 8px 14px;
    font-size: 13px;
    cursor: pointer;
    text-decoration: none;
}

.cookie-consent-accept {
    background: #a77f36;
    color: #fff;
}

.cookie-consent-reject {
    background: #e9e6dc;
    color: #4f4637;
}

.cookie-consent-info {
    background: #fff;
    color: #6b5121;
}

@media (max-width: 767px) {
    .cookie-consent-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-consent-actions {
        justify-content: center;
    }
}
