.cookie-consent {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 10000;
    width: 360px;
    max-width: calc(100vw - 32px);
    padding: 16px 18px;
    background: #fffdf7;
    border: 1px solid rgba(21, 18, 15, 0.18);
    border-left: 4px solid #2b3eff;
    box-shadow: 0 16px 45px rgba(21, 18, 15, 0.18);
    color: #15120f;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    text-align: left;
}

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

.cookie-consent__title {
    margin: 0 0 8px;
    font-family: "Victor Mono", "Courier New", monospace;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    text-align: left;
}

.cookie-consent__text {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.5;
    text-align: left;
    text-wrap: pretty;
}

.cookie-consent__text a {
    color: #2b3eff;
    text-decoration: underline;
}

.cookie-consent__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
    justify-content: flex-start;
}

.cookie-consent__button {
    min-height: 40px;
    padding: 9px 14px;
    border: 1px solid #15120f;
    border-radius: 0;
    background: #fffdf7;
    color: #15120f;
    font-family: "Victor Mono", "Courier New", monospace;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    text-align: center;
}

.cookie-consent__button:hover,
.cookie-consent__button:focus-visible {
    border-color: #2b3eff;
    color: #2b3eff;
}

.cookie-consent__button--primary {
    background: #2b3eff;
    border-color: #2b3eff;
    color: #fffdf7;
}

.cookie-consent__button--primary:hover,
.cookie-consent__button--primary:focus-visible {
    background: #15120f;
    border-color: #15120f;
    color: #fffdf7;
}

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

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

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