.cookie-consent {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    padding: 16px 24px calc(16px + env(safe-area-inset-bottom));
    background: var(--deep-sage, #2A1028);
    color: var(--warm-cream, #FFF8F2);
    box-shadow: 0 -5px 20px rgba(36, 21, 31, .18);
    font: inherit;
    font-size: 15px;
    line-height: 1.5;
}

.cookie-consent__inner {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.cookie-consent__title {
    margin-bottom: 3px;
    color: var(--golden-light, #F2C15D);
    font-weight: 700;
}

.cookie-consent__message {
    color: var(--warm-cream, #FFF8F2);
}

.cookie-consent__message a {
    color: var(--golden-light, #F2C15D);
    font-weight: 700;
    text-underline-offset: 3px;
}

.cookie-consent__dismiss {
    flex: 0 0 auto;
    padding: 10px 18px;
    border: 2px solid var(--golden-light, #F2C15D);
    border-radius: 8px;
    background: var(--golden, #D81B72);
    color: var(--warm-cream, #FFF8F2);
    cursor: pointer;
    font: inherit;
    font-weight: 700;
}

.cookie-consent__dismiss:hover {
    filter: brightness(.93);
}

.cookie-consent__dismiss:focus-visible,
.cookie-consent__message a:focus-visible {
    outline: 3px solid var(--golden-light, #F2C15D);
    outline-offset: 3px;
}

@media (max-width: 640px) {
    .cookie-consent {
        padding: 14px 16px calc(14px + env(safe-area-inset-bottom));
    }

    .cookie-consent__inner {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
    }

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