.cookie-consent-banner {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 2000;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    padding: 1rem;
    max-width: 780px;
    margin: 0 auto;
}

.cookie-consent-banner h3 {
    font-size: 1.1rem;
    margin: 0 0 0.5rem;
    color: #1a1a1a;
}

.cookie-consent-banner p {
    margin: 0;
    color: #555555;
    line-height: 1.6;
    font-size: 0.95rem;
}

.cookie-consent-actions {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.cookie-btn {
    border: none;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 600;
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
}

.cookie-btn-primary {
    background: linear-gradient(135deg, #d9941e, #f4b942);
    color: #ffffff;
}

.cookie-btn-secondary {
    background: #f3f3f3;
    color: #1a1a1a;
}

.cookie-btn-link {
    background: transparent;
    color: #8b6914;
    text-decoration: underline;
    padding-left: 0;
    padding-right: 0;
}

.cookie-preferences {
    position: fixed;
    inset: 0;
    z-index: 2100;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.cookie-preferences[hidden] {
    display: none;
}

.cookie-preferences-card {
    width: 100%;
    max-width: 620px;
    background: #ffffff;
    border-radius: 16px;
    padding: 1.4rem;
}

.cookie-option {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    margin: 1rem 0;
    padding: 0.9rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
}

.cookie-option input {
    margin-top: 0.2rem;
}

.cookie-settings-trigger {
    display: inline-block;
    margin-top: 0.5rem;
}

@media (max-width: 640px) {
    .cookie-consent-banner {
        left: 0.6rem;
        right: 0.6rem;
        bottom: 0.6rem;
        padding: 0.9rem;
    }
}
