.cookie-backdrop {
    align-items: center;
    background: rgba(0, 0, 0, 0.78);
    display: flex;
    inset: 0;
    justify-content: center;
    padding: 1.25rem;
    position: fixed;
    z-index: 1000;
}

.cookie-dialog {
    background: #1a1a1a;
    border: 1px solid #f0f0f0;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.55);
    color: #f0f0f0;
    font-family: Helvetica, Arial, sans-serif;
    max-width: 34rem;
    padding: 2rem;
    width: 100%;
}

.cookie-eyebrow {
    color: #f0f0f0;
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 0.08em;
    margin: 0 0 0.75rem;
    text-transform: uppercase;
}

.cookie-dialog h2 {
    font-size: 1.75rem;
    line-height: 1.2;
    margin: 0;
}

.cookie-copy {
    color: #d8d8d8;
    font-size: 1rem;
    line-height: 1.6;
    margin: 1rem 0 0;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.cookie-actions button {
    background: transparent;
    border: 1px solid #f0f0f0;
    border-radius: 0;
    color: #f0f0f0;
    cursor: pointer;
    flex: 1;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 1rem;
    font-weight: bold;
    min-height: 2.9rem;
    padding: 0.7rem 1rem;
    transition: background-color 0.25s, border-color 0.25s;
}

.cookie-yes {
    background: #6A1109 !important;
    border-color: #6A1109 !important;
}

.cookie-actions button:hover,
.cookie-actions button:focus {
    background: red !important;
    border-color: red !important;
    color: #ffffff;
}

.cookie-actions button:focus {
    outline: 2px solid #f0f0f0;
    outline-offset: 3px;
}

@media only screen and (max-width: 520px) {
    .cookie-backdrop {
        align-items: flex-end;
        padding: 1rem;
    }

    .cookie-dialog {
        padding: 1.5rem;
    }

    .cookie-actions {
        flex-direction: column;
    }
}
