/**
 * Elementor widget specific overrides
 */
.sbc-widget-container {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.sbc-widget-container h2 {
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

/* ── Field width layout ───────────────────────────────────────────────── */
.sbc-fields-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.sbc-fields-wrap .sbc-form-row {
    margin-bottom: 0; /* gap handles spacing */
}

.sbc-col-full {
    width: 100%;
}

.sbc-col-half {
    width: calc(50% - 6px);
}

@media (max-width: 480px) {
    .sbc-col-half {
        width: 100%;
    }
}

/* ── Button row ───────────────────────────────────────────────────────── */
.sbc-btn-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

.sbc-btn-row .sbc-submit-btn,
.sbc-btn-row .sbc-whatsapp-btn {
    flex: 1;
    text-align: center;
}

/* ── WhatsApp button ──────────────────────────────────────────────────── */
.sbc-whatsapp-btn {
    display: inline-block;
    padding: 12px 20px;
    background-color: #25d366;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.2s;
    cursor: pointer;
}

.sbc-whatsapp-btn:hover {
    background-color: #1ebe5d;
    color: #fff;
    text-decoration: none;
}

.sbc-product-wa-wrap {
    display: block;
}

.sbc-product-wa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    padding: 14px 22px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    transition: transform .15s ease, opacity .15s ease, background-color .15s ease;
}

.sbc-product-wa-btn:hover {
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}

.sbc-product-wa-btn.is-disabled,
.sbc-product-wa-btn[aria-disabled="true"] {
    background: #94a3b8;
    cursor: not-allowed;
    pointer-events: auto;
    opacity: .9;
}

.sbc-product-wa-placeholder {
    padding: 14px 16px;
    border: 1px dashed #cbd5e1;
    border-radius: 10px;
    color: #475569;
    background: #f8fafc;
}

.sbc-product-wa-message {
    display: none;
    margin-top: 10px;
    color: #b42318;
    font-size: 13px;
    line-height: 1.5;
}

.sbc-product-wa-message.is-visible {
    display: block;
}
