.cookies-banner {
    position: fixed;
    right: 16px;
    bottom: 16px;
    width: min(440px, calc(100vw - 24px));
    z-index: 1185;
    display: none;
}

.cookies-content {
    max-width: none;
    margin: 0;
    border: 1px solid #ffd4aa;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #fff8ee 100%);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.2);
    padding: 13px 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.cookies-copy strong {
    color: #9a3412;
    display: block;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.cookies-copy p {
    margin: 0;
    color: #4b5563;
    font-size: 0.87rem;
    line-height: 1.45;
}

.cookies-copy a {
    color: #b45309;
    font-weight: 700;
}

.cookies-actions {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.btn-accept,
.btn-reject {
    border: none;
    border-radius: 999px;
    min-height: 40px;
    width: 100%;
    padding: 0 14px;
    cursor: pointer;
    font-size: 0.83rem;
    font-weight: 800;
}

.btn-accept {
    background: linear-gradient(135deg, #ff8f1f, #f97316);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.25);
}

.btn-reject {
    background: #ffffff;
    color: #9a3412;
    border: 1px solid #fdba74;
}

.btn-reject:hover {
    background: #fff2df;
}

@media (max-width: 860px) {
    .cookies-banner {
        left: 12px;
        right: 12px;
        width: auto;
        bottom: 12px;
    }

    .cookies-content {
        gap: 11px;
    }

    .cookies-actions {
        grid-template-columns: 1fr;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}
