/* Cookie consent banner */
.cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5000;
    padding: 1rem;
}

.cookie-consent__card {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--white, #ffffff);
    color: var(--text-dark, var(--secondary, #3e2c1c));
    border: 1px solid rgba(227, 171, 71, 0.18);
    border-radius: 18px;
    box-shadow: 0 14px 50px rgba(0, 0, 0, 0.12);
    padding: 1.1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.cookie-consent__content {
    flex: 1;
    min-width: 0;
}

.cookie-consent__title {
    font-weight: 800;
    font-size: 1.05rem;
    margin: 0 0 0.25rem;
}

.cookie-consent__text {
    margin: 0;
    color: var(--text-gray, #666);
    font-size: 0.95rem;
    line-height: 1.4;
}

.cookie-consent__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
}

.cookie-consent__link {
    color: inherit;
    text-decoration: underline;
    font-weight: 600;
    white-space: nowrap;
    display: inline-block;
    margin-top: 0.5rem;
}

.cookie-consent__btn {
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-weight: 800;
    border: 1px solid rgba(62, 44, 28, 0.18);
    background: transparent;
    color: var(--text-dark, var(--secondary, #3e2c1c));
    cursor: pointer;
}

.cookie-consent__btn--accept {
    background: var(--yellow-primary, var(--primary, #e3ab47));
    border-color: rgba(227, 171, 71, 0.35);
}

.cookie-consent__btn:focus {
    outline: 2px solid rgba(227, 171, 71, 0.7);
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .cookie-consent__card {
        flex-direction: column;
    }

    .cookie-consent__actions {
        width: 100%;
        justify-content: flex-start;
    }

    .cookie-consent__btn {
        width: 100%;
    }
}

