.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    padding: 1rem;
    pointer-events: none;
}

.cookie-consent.is-hidden {
    display: none;
}

.cookie-consent-inner {
    pointer-events: auto;
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: #FBF7F8;
    border: 1px solid #E7DCE0;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(42, 34, 48, 0.12);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

.cookie-consent-text {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.55;
    color: #443C4A;
}

.cookie-consent-text a {
    color: #B06A79;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-consent-text a:hover {
    color: #C9818F;
}

.cookie-consent-actions {
    display: flex;
    flex-shrink: 0;
    gap: 0.6rem;
}

.cookie-consent-btn {
    padding: 0.65rem 1.1rem;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cookie-consent-btn:focus-visible {
    outline: 2px solid #C9818F;
    outline-offset: 2px;
}

.cookie-consent-accept {
    background: #C9818F;
    color: #FFFFFF;
    border: 1px solid #C9818F;
}

.cookie-consent-accept:hover {
    background: #B06A79;
    border-color: #B06A79;
}

.cookie-consent-decline {
    background: transparent;
    color: #B06A79;
    border: 1px solid #C9818F;
}

.cookie-consent-decline:hover {
    background: #F4EEEF;
}

@media (max-width: 640px) {
    .cookie-consent-inner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .cookie-consent-actions {
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cookie-consent-btn {
        transition: none;
    }
}
