.cookie-consent {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 10000;
    width: min(380px, calc(100vw - 32px));
    padding: 24px;
    border-top: 5px solid #b07f4e;
    background: #fff;
    color: #073b4c;
    box-shadow: 0 8px 30px rgba(7, 59, 76, .24);
}

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

.cookie-consent__title,
.cookie-consent__text {
    margin: 0;
}

.cookie-consent__title {
    font-family: parisplus-sombre, sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
}

.cookie-consent__text {
    margin-top: 8px;
    font-size: .95rem;
    font-weight: 500;
    line-height: 1.45;
}

.cookie-consent__actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.cookie-consent .cookie-consent__button {
    width: auto;
    height: auto;
    flex: 1;
    padding: 11px 16px;
    border: 2px solid #073b4c;
    background: #fff;
    color: #073b4c;
    font-family: quicksand, sans-serif;
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: 0;
    box-shadow: none;
    transition: background-color .2s, color .2s;
}

.cookie-consent .cookie-consent__button:hover,
.cookie-consent .cookie-consent__button:focus-visible {
    background: #073b4c;
    color: #fff;
    box-shadow: none;
}

.cookie-consent .cookie-consent__button--accept {
    background: #073b4c;
    color: #fff;
}

.cookie-consent .cookie-consent__button--accept:hover,
.cookie-consent .cookie-consent__button--accept:focus-visible {
    background: #b07f4e;
    border-color: #b07f4e;
}

footer .cookie-settings {
    width: auto;
    height: auto;
    margin: 0 auto 16px;
    padding: 4px 8px;
    border: 0;
    background: transparent;
    color: #fff;
    font-family: quicksand, sans-serif;
    font-size: .85rem;
    font-weight: 400;
    letter-spacing: 0;
    text-decoration: underline;
    box-shadow: none;
}

footer .cookie-settings:hover,
footer .cookie-settings:focus-visible {
    box-shadow: none;
    color: #f8ead2;
}

@media (max-width: 576px) {
    .cookie-consent {
        right: 16px;
        bottom: 16px;
        padding: 20px;
    }
}

@media (max-width: 360px) {
    .cookie-consent__actions {
        flex-direction: column-reverse;
    }
}
