.cookie-consent {
    position: fixed;
    inset: auto 1rem 1rem 1rem;
    z-index: 1080;
    display: none;
    align-items: flex-end;
    pointer-events: none;
}
.cookie-consent.is-visible {
    display: flex;
}
.cookie-consent__panel {
    width: min(760px, 100%);
    margin-left: auto;
    background: #fffdf7;
    border: 1px solid rgba(39, 56, 47, 0.14);
    border-radius: 1.25rem;
    box-shadow: 0 24px 70px rgba(25, 38, 32, 0.22);
    color: #24352d;
    overflow: hidden;
    pointer-events: auto;
}
.cookie-consent__body {
    padding: 1.1rem 1.2rem;
}
.cookie-consent__eyebrow {
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8a6d2e;
    font-weight: 800;
    margin-bottom: 0.25rem;
}
.cookie-consent__title {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
}
.cookie-consent__text {
    color: #59685f;
    font-size: 0.94rem;
    margin-bottom: 0.8rem;
}
.cookie-consent__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    justify-content: flex-end;
    padding: 0 1.2rem 1.1rem;
}
.cookie-consent__settings {
    display: none;
    border-top: 1px solid rgba(39, 56, 47, 0.1);
    background: #f8f5ed;
    padding: 0.9rem 1.2rem 1rem;
}
.cookie-consent.is-customizing .cookie-consent__settings {
    display: block;
}
.cookie-consent__choice {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(39, 56, 47, 0.08);
}
.cookie-consent__choice:last-child {
    border-bottom: 0;
}
.cookie-consent__choice-title {
    font-weight: 800;
    margin-bottom: 0.1rem;
}
.cookie-consent__choice-text {
    color: #647269;
    font-size: 0.88rem;
    margin: 0;
}
.cookie-consent__links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    font-size: 0.88rem;
}
.cookie-consent__links a {
    color: #355246;
    font-weight: 700;
}
@media (max-width: 575.98px) {
    .cookie-consent {
        inset: auto 0.75rem 0.75rem 0.75rem;
    }
    .cookie-consent__actions {
        justify-content: stretch;
    }
    .cookie-consent__actions .btn {
        flex: 1 1 100%;
    }
}
