.cookies-banner {
    position: fixed;
    left: 16px;
    bottom: 16px;
    z-index: 1100;
    background: #ffffff;
    color: #000000;
    border: 3px solid #000000;
    border-radius: 12px;
    box-shadow: 6px 6px 0 #000000;
    max-width: 360px;
    width: calc(100% - 32px);
    padding: 12px;
}

.cookies-title {
    font-size: 16px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 6px;
}

.cookies-text {
    font-size: 13px;
    color: #374151;
    margin-bottom: 10px;
}

.cookies-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookies-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    border: none;
}

.cookies-accept {
    background: #FF002B;
    color: #ffffff;
    border: 1px solid #FF002B;
}

.cookies-reject {
    background: #ffffff;
    color: #111827;
    border: 2px solid #000000;
}

@media (max-width: 640px) {
    .cookies-banner {
        left: 8px;
        bottom: 8px;
        width: calc(100% - 16px);
        padding: 10px;
    }
}

