.cookie-consent {
    position: fixed;
    z-index: 10000;
    right: 1.25rem;
    bottom: 1.25rem;
    width: min(34rem, calc(100% - 2.5rem));
    padding: 1.5rem;
    border: 1px solid rgba(177, 143, 113, 0.45);
    background: #211d1a;
    color: #f8f3ed;
    box-shadow: 0 1.25rem 3.5rem rgba(25, 20, 17, 0.28);
    font-family: "Montserrat", Arial, sans-serif;
}

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

.cookie-consent__eyebrow {
    margin: 0 0 0.55rem;
    color: #c9a787;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.cookie-consent__title {
    margin: 0 0 0.65rem;
    color: #ffffff;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.65rem, 4vw, 2.15rem);
    font-weight: 500;
    line-height: 1.05;
}

.cookie-consent__copy {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.82rem;
    line-height: 1.7;
}

.cookie-consent__copy a {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.cookie-consent__choices {
    display: grid;
    gap: 0.7rem;
    margin: 1.15rem 0 0;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.cookie-consent__choice {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    cursor: pointer;
}

.cookie-consent__choice input {
    width: 1rem;
    height: 1rem;
    margin: 0.12rem 0 0;
    accent-color: #b98c68;
}

.cookie-consent__choice strong,
.cookie-consent__choice span {
    display: block;
}

.cookie-consent__choice strong {
    color: #ffffff;
    font-size: 0.78rem;
}

.cookie-consent__choice span {
    margin-top: 0.18rem;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.7rem;
    line-height: 1.45;
}

.cookie-consent__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.1rem;
}

.cookie-consent__button {
    min-height: 2.75rem;
    padding: 0.7rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    font: inherit;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.cookie-consent__button--primary {
    border-color: #b98c68;
    background: #b98c68;
    color: #211d1a;
}

.cookie-consent__button:focus-visible,
.footer_cookie_settings:focus-visible {
    outline: 2px solid #d1ab87;
    outline-offset: 3px;
}

.footer_cookie_settings {
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font: inherit;
    text-decoration: underline;
    text-underline-offset: 0.16em;
}

@media (max-width: 40rem) {
    .cookie-consent {
        right: 0;
        bottom: 0;
        width: 100%;
        padding: 1.25rem;
    }

    .cookie-consent__actions {
        display: grid;
    }

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