.cookie-consent {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 10002;
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: min(520px, calc(100vw - 32px));
    padding: 14px 16px;
    color: #1f2937;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .16);
}

.cookie-consent p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.cookie-consent button {
    flex: 0 0 auto;
    padding: 8px 14px;
    color: #fff;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    background: #374151;
    border: 0;
    border-radius: 5px;
}

.cookie-consent button:hover,
.cookie-consent button:focus-visible {
    background: #111827;
}

@media (max-width: 576px) {
    .cookie-consent {
        right: 16px;
        bottom: 16px;
        left: 16px;
        max-width: none;
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .cookie-consent button {
        align-self: flex-end;
    }
}
