.cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(45, 26, 61, 0.94);
    color: #fff;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.cookie-text {
    font-size: 14px;
    line-height: 1.4;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    border: 0;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.cookie-btn-primary {
    background: linear-gradient(135deg, #ff69b4 0%, #ba68ff 100%);
    color: #fff;
}

.cookie-btn-muted {
    background: #fff;
    color: #2d1a3d;
}

@media (max-width: 640px) {
    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-actions {
        width: 100%;
    }

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