.wbx-wishlist {
    max-width: 640px;
    margin: 20px auto;
    padding: 16px;
    border-radius: 12px;
    background: #111827;
    color: #e5e7eb;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.wbx-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wbx-form input,
.wbx-form textarea {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #374151;
    background: #020617;
    color: #e5e7eb;
    padding: 8px 10px;
    font-size: 14px;
}

.wbx-form input::placeholder,
.wbx-form textarea::placeholder {
    color: #6b7280;
}

.wbx-form button {
    align-self: flex-end;
    margin-top: 6px;
    padding: 8px 16px;
    border-radius: 999px;
    border: none;
    background: #3b82f6;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

.wbx-form button:hover {
    background: #2563eb;
}

@media (max-width: 640px) {
    .wbx-wishlist {
        margin: 10px;
        padding: 12px;
    }
    .wbx-form button {
        width: 100%;
        align-self: stretch;
    }
}
