/* ── Base reset — prevent theme bleed-in ── */
.wpsc-widget *,
.wpsc-widget *::before,
.wpsc-widget *::after,
.wpsc-modal-overlay *,
.wpsc-modal-overlay *::before,
.wpsc-modal-overlay *::after {
	box-sizing: border-box;
}

/* ── Widget container ── */
.wpsc-widget {
	position: fixed !important;
	bottom: 24px !important;
	right: 24px !important;
	z-index: 99999 !important;
	display: flex !important;
	flex-direction: column !important;
	align-items: flex-end !important;
	gap: 10px !important;
	pointer-events: none !important;
}
.wpsc-widget > * {
	pointer-events: all !important;
}
.wpsc-widget.is-left {
	right: auto !important;
	left: 24px !important;
	align-items: flex-start !important;
}

/* ── Popup card ── */
.wpsc-popup {
	display: none;
	width: 290px;
	background: #fff !important;
	border-radius: 16px !important;
	box-shadow: 0 8px 40px rgba(0,0,0,.18) !important;
	padding: 14px !important;
	flex-direction: column !important;
	gap: 4px !important;
	animation: wpscSlideUp .18s ease;
	margin: 0 !important;
	list-style: none !important;
}
.wpsc-popup.is-open {
	display: flex !important;
}
.wpsc-popup__title {
	font-size: 11px !important;
	font-weight: 700 !important;
	letter-spacing: .07em !important;
	text-transform: uppercase !important;
	color: #9ca3af !important;
	margin: 0 0 6px 2px !important;
	padding: 0 !important;
	line-height: 1.4 !important;
}

@keyframes wpscSlideUp {
	from { opacity: 0; transform: translateY(8px) scale(.97); }
	to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── Option rows ── */
.wpsc-option {
	display: flex !important;
	align-items: center !important;
	gap: 12px !important;
	padding: 10px 10px !important;
	border-radius: 12px !important;
	text-decoration: none !important;
	color: #1a1a1a !important;
	cursor: pointer !important;
	border: none !important;
	background: #f5f7fa !important;
	width: 100% !important;
	text-align: left !important;
	font-family: inherit !important;
	font-size: inherit !important;
	transition: background .15s !important;
	box-shadow: none !important;
	outline: none !important;
	margin: 0 !important;
}
.wpsc-option:hover {
	background: #ebedf0 !important;
}
.wpsc-option__icon {
	width: 44px !important;
	height: 44px !important;
	border-radius: 50% !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	flex-shrink: 0 !important;
}
.wpsc-option--wa    .wpsc-option__icon { background: #e8f8ef !important; }
.wpsc-option--phone .wpsc-option__icon { background: #dbeafe !important; }
.wpsc-option--form  .wpsc-option__icon { background: #ede9fe !important; }
.wpsc-option--chat  .wpsc-option__icon { background: #cffafe !important; }
.wpsc-option__text {
	flex: 1 1 auto !important;
	min-width: 0 !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 2px !important;
	line-height: 1.3 !important;
}
.wpsc-option__text strong { font-size: 14px !important; font-weight: 600 !important; color: #1a1a1a !important; white-space: normal !important; overflow-wrap: break-word !important; }
.wpsc-option__text small  { font-size: 12px !important; color: #888 !important; font-weight: 400 !important; white-space: normal !important; overflow-wrap: break-word !important; }

/* ── Callback panel ── */
.wpsc-callback {
	display: none;
	width: 290px;
	background: #fff !important;
	border-radius: 16px !important;
	box-shadow: 0 8px 40px rgba(0,0,0,.18) !important;
	padding: 16px !important;
	flex-direction: column !important;
	gap: 12px !important;
	animation: wpscSlideUp .18s ease;
	margin: 0 !important;
}
.wpsc-callback.is-open {
	display: flex !important;
}
.wpsc-callback__back {
	display: flex !important;
	align-items: center !important;
	gap: 4px !important;
	font-size: 12px !important;
	color: #6b7280 !important;
	cursor: pointer !important;
	background: none !important;
	border: none !important;
	padding: 0 !important;
	font-family: inherit !important;
	transition: color .15s !important;
}
.wpsc-callback__back:hover { color: #111 !important; }
.wpsc-callback__title {
	font-size: 14px !important;
	font-weight: 700 !important;
	color: #1a1a1a !important;
	margin: 0 !important;
	padding: 0 !important;
}
.wpsc-callback__form {
	display: flex !important;
	flex-direction: column !important;
	gap: 8px !important;
}
.wpsc-callback__input {
	width: 100% !important;
	padding: 10px 12px !important;
	border: 1.5px solid #e5e7eb !important;
	border-radius: 8px !important;
	font-size: 14px !important;
	font-family: inherit !important;
	color: #111 !important;
	outline: none !important;
	transition: border-color .15s !important;
	min-width: 0 !important;
	background: #fff !important;
	box-shadow: none !important;
	box-sizing: border-box !important;
}
.wpsc-callback__input:focus { border-color: var(--wpsc-accent) !important; }
.wpsc-callback__input.has-error { border-color: #ef4444 !important; }
.wpsc-callback__submit {
	width: 100% !important;
	padding: 11px 14px !important;
	background: var(--wpsc-accent) !important;
	color: #fff !important;
	border-radius: 8px !important;
	border: none !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	cursor: pointer !important;
	transition: background .15s, opacity .15s !important;
	font-family: inherit !important;
	box-shadow: none !important;
	outline: none !important;
}
.wpsc-callback__submit:hover    { background: var(--wpsc-accent-dark) !important; }
.wpsc-callback__submit:disabled { opacity: .6 !important; cursor: not-allowed !important; }
.wpsc-callback__msg {
	font-size: 12px !important;
	color: #16a34a !important;
	margin: 0 !important;
	min-height: 16px !important;
}
.wpsc-callback__msg.is-error { color: #dc2626 !important; }

/* ── Bubble button — hardened against theme styles ── */
.wpsc-bubble {
	width: 58px !important;
	height: 58px !important;
	min-width: 58px !important;
	min-height: 58px !important;
	border-radius: 50% !important;
	background: #25d366 !important;
	border: none !important;
	color: #fff !important;
	cursor: pointer !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	box-shadow: 0 4px 20px rgba(37,211,102,.5) !important;
	transition: background .2s, transform .2s, box-shadow .2s !important;
	flex-shrink: 0 !important;
	padding: 0 !important;
	margin: 0 !important;
	line-height: 1 !important;
	text-decoration: none !important;
	appearance: none !important;
	-webkit-appearance: none !important;
	outline: none !important;
	overflow: visible !important;
	position: relative !important;
}
.wpsc-bubble:hover {
	transform: scale(1.08) !important;
	box-shadow: 0 6px 28px rgba(37,211,102,.6) !important;
}
.wpsc-bubble:focus-visible {
	outline: 3px solid rgba(37,211,102,.6) !important;
	outline-offset: 3px !important;
}
.wpsc-bubble.is-open {
	background: #1f2937 !important;
	box-shadow: 0 4px 16px rgba(0,0,0,.3) !important;
}
.wpsc-bubble .icon--close { display: none !important; }
.wpsc-bubble.is-open .icon--chat  { display: none !important; }
.wpsc-bubble.is-open .icon--close { display: block !important; }

/* ── Modal overlay ── */
.wpsc-modal-overlay {
	position: fixed !important;
	inset: 0 !important;
	background: rgba(0,0,0,.5) !important;
	z-index: 100000 !important;
	display: none;
	align-items: center !important;
	justify-content: center !important;
	padding: 20px !important;
}
.wpsc-modal-overlay.is-open {
	display: flex !important;
}
.wpsc-modal {
	background: #fff !important;
	border-radius: 16px !important;
	width: 100% !important;
	max-width: 560px !important;
	max-height: 90vh !important;
	overflow-y: auto !important;
	box-shadow: 0 20px 60px rgba(0,0,0,.25) !important;
	animation: wpscSlideUp .2s ease;
}
.wpsc-modal-header {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	padding: 20px 24px !important;
	border-bottom: 1px solid #f3f4f6 !important;
	position: sticky !important;
	top: 0 !important;
	background: #fff !important;
	z-index: 1 !important;
}
.wpsc-modal-title {
	font-size: 16px !important;
	font-weight: 700 !important;
	color: #111 !important;
}
.wpsc-modal-close {
	width: 32px !important;
	height: 32px !important;
	border-radius: 50% !important;
	border: none !important;
	background: #f3f4f6 !important;
	color: #6b7280 !important;
	cursor: pointer !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	flex-shrink: 0 !important;
	transition: background .15s, color .15s !important;
}
.wpsc-modal-close:hover { background: #e5e7eb !important; color: #111 !important; }
.wpsc-modal-body { padding: 24px !important; }

body.wpsc-modal-open { overflow: hidden !important; }

/* ── Live Chat panel ── */
.wpsc-chat {
	display: none;
	width: 360px;
	background: #fff !important;
	border-radius: 16px !important;
	box-shadow: 0 8px 40px rgba(0,0,0,.18) !important;
	flex-direction: column !important;
	overflow: hidden !important;
	animation: wpscSlideUp .18s ease;
	margin: 0 !important;
	max-height: 560px !important;
}
.wpsc-chat.is-open { display: flex !important; }

.wpsc-chat__header {
	display: flex !important;
	align-items: center !important;
	gap: 8px !important;
	padding: 12px 14px !important;
	background: var(--wpsc-accent) !important;
}
.wpsc-chat__back {
	display: flex !important;
	align-items: center !important;
	gap: 4px !important;
	font-size: 12px !important;
	color: rgba(255,255,255,0.85) !important;
	cursor: pointer !important;
	background: none !important;
	border: none !important;
	padding: 0 !important;
	font-family: inherit !important;
	flex-shrink: 0 !important;
}
.wpsc-chat__back:hover { color: #fff !important; }
.wpsc-chat__title {
	flex: 1 !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	color: #fff !important;
	margin: 0 !important;
	padding: 0 !important;
}
.wpsc-chat__status {
	font-size: 11px !important;
	color: rgba(255,255,255,0.7) !important;
	background: rgba(255,255,255,0.15) !important;
	padding: 2px 8px !important;
	border-radius: 999px !important;
}

.wpsc-chat__intro {
	display: flex !important;
	flex-direction: column !important;
	gap: 8px !important;
	padding: 16px !important;
}
.wpsc-chat.has-session .wpsc-chat__intro { display: none !important; }
.wpsc-chat__intro-txt {
	font-size: 13px !important;
	color: #6b7280 !important;
	margin: 0 0 4px !important;
	padding: 0 !important;
	line-height: 1.5 !important;
}
.wpsc-chat__input-field {
	padding: 9px 12px !important;
	border: 1.5px solid #e5e7eb !important;
	border-radius: 8px !important;
	font-size: 13px !important;
	font-family: inherit !important;
	color: #111 !important;
	outline: none !important;
	background: #fff !important;
	transition: border-color .15s !important;
	box-shadow: none !important;
	width: 100% !important;
	box-sizing: border-box !important;
}
.wpsc-chat__input-field:focus { border-color: var(--wpsc-accent) !important; }
.wpsc-chat__start-btn {
	padding: 10px !important;
	background: var(--wpsc-accent) !important;
	color: #fff !important;
	border-radius: 8px !important;
	border: none !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	cursor: pointer !important;
	font-family: inherit !important;
	transition: background .15s !important;
	width: 100% !important;
}
.wpsc-chat__start-btn:hover    { background: var(--wpsc-accent-dark) !important; }
.wpsc-chat__start-btn:disabled { opacity: .6 !important; cursor: not-allowed !important; }

.wpsc-chat__messages {
	flex: 1 !important;
	overflow-y: auto !important;
	padding: 12px 12px 4px !important;
	display: none !important;
	flex-direction: column !important;
	gap: 6px !important;
	min-height: 200px !important;
}
.wpsc-chat.has-session .wpsc-chat__messages { display: flex !important; }
.wpsc-chat__msg-row {
	display: flex !important;
	flex-direction: column !important;
	gap: 2px !important;
	max-width: 82% !important;
}
.wpsc-chat__msg--visitor {
	align-self: flex-end !important;
	align-items: flex-end !important;
}
.wpsc-chat__msg--agent {
	align-self: flex-start !important;
	align-items: flex-start !important;
}
.wpsc-chat__bubble {
	padding: 8px 12px !important;
	border-radius: 14px !important;
	font-size: 13px !important;
	line-height: 1.45 !important;
	word-break: break-word !important;
}
.wpsc-chat__msg--visitor .wpsc-chat__bubble {
	background: var(--wpsc-accent) !important;
	color: #fff !important;
	border-bottom-right-radius: 4px !important;
}
.wpsc-chat__msg--agent .wpsc-chat__bubble {
	background: #f1f5f9 !important;
	color: #1e293b !important;
	border-bottom-left-radius: 4px !important;
}
.wpsc-chat__time {
	font-size: 10px !important;
	color: #9ca3af !important;
	padding: 0 4px !important;
}

.wpsc-chat__closed-wrap {
	display: none !important;
	flex-direction: column !important;
	align-items: center !important;
	gap: 10px !important;
	padding: 16px !important;
	border-top: 1px solid #f3f4f6 !important;
}
.wpsc-chat.is-closed .wpsc-chat__closed-wrap { display: flex !important; }
.wpsc-chat__closed-msg {
	font-size: 12px !important;
	color: #6b7280 !important;
	text-align: center !important;
	margin: 0 !important;
	padding: 0 !important;
}
.wpsc-chat__new-btn {
	padding: 9px 20px !important;
	background: var(--wpsc-accent) !important;
	color: #fff !important;
	border-radius: 8px !important;
	border: none !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	cursor: pointer !important;
	font-family: inherit !important;
	transition: background .15s !important;
}
.wpsc-chat__new-btn:hover { background: var(--wpsc-accent-dark) !important; }

.wpsc-chat__compose {
	display: none !important;
	align-items: center !important;
	gap: 6px !important;
	padding: 8px 10px !important;
	border-top: 1px solid #f3f4f6 !important;
}
.wpsc-chat.has-session .wpsc-chat__compose { display: flex !important; }
.wpsc-chat.is-closed   .wpsc-chat__compose { display: none !important; }
.wpsc-chat__compose-input {
	flex: 1 !important;
	padding: 8px 10px !important;
	border: 1.5px solid #e5e7eb !important;
	border-radius: 20px !important;
	font-size: 13px !important;
	font-family: inherit !important;
	color: #111 !important;
	outline: none !important;
	background: #fff !important;
	transition: border-color .15s !important;
	box-shadow: none !important;
	min-width: 0 !important;
}
.wpsc-chat__compose-input:focus { border-color: var(--wpsc-accent) !important; }
.wpsc-chat__send-btn {
	width: 36px !important;
	height: 36px !important;
	min-width: 36px !important;
	border-radius: 50% !important;
	background: var(--wpsc-accent) !important;
	border: none !important;
	cursor: pointer !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	flex-shrink: 0 !important;
	transition: background .15s !important;
	padding: 0 !important;
}
.wpsc-chat__send-btn:hover { background: var(--wpsc-accent-dark) !important; }

/* ── Form panel ── */
.wpsc-form-panel {
	display: none;
	width: 340px;
	background: #fff !important;
	border-radius: 16px !important;
	box-shadow: 0 8px 40px rgba(0,0,0,.18) !important;
	padding: 16px !important;
	flex-direction: column !important;
	gap: 12px !important;
	animation: wpscSlideUp .18s ease;
	margin: 0 !important;
}
.wpsc-form-panel.is-open { display: flex !important; }

.wpsc-form-panel__body {
	overflow-y: auto !important;
	max-height: 460px !important;
}

/* Override form plugin styles inside the panel */
.wpsc-form-panel input[type="text"],
.wpsc-form-panel input[type="email"],
.wpsc-form-panel input[type="tel"],
.wpsc-form-panel input[type="number"],
.wpsc-form-panel textarea,
.wpsc-form-panel select {
	width: 100% !important;
	box-sizing: border-box !important;
	font-family: inherit !important;
	font-size: 14px !important;
}

.wpsc-form-panel input[type="submit"],
.wpsc-form-panel button[type="submit"],
.wpsc-form-panel .wpsf-btn,
.wpsc-form-panel .wpsf-submit {
	background: var(--wpsc-accent) !important;
	color: #fff !important;
	border: none !important;
	border-radius: 8px !important;
	padding: 11px 20px !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	cursor: pointer !important;
	font-family: inherit !important;
	width: 100% !important;
	box-sizing: border-box !important;
	transition: background .15s !important;
}
.wpsc-form-panel input[type="submit"]:hover,
.wpsc-form-panel button[type="submit"]:hover,
.wpsc-form-panel .wpsf-btn:hover,
.wpsc-form-panel .wpsf-submit:hover { background: var(--wpsc-accent-dark) !important; }

/* ── Mobile ── */
@media (max-width: 500px) {
	.wpsc-widget        { bottom: 16px !important; right: 16px !important; }
	.wpsc-widget.is-left { right: auto !important; left: 16px !important; }
	.wpsc-popup,
	.wpsc-callback,
	.wpsc-form-panel,
	.wpsc-chat          { width: calc(100vw - 32px) !important; }
	.wpsc-chat          { max-height: 70vh !important; }
	.wpsc-modal-overlay { padding: 0 !important; align-items: flex-end !important; }
	.wpsc-modal         { border-radius: 20px 20px 0 0 !important; max-height: 88vh !important; max-width: 100% !important; }
}

/* ── FAQ chips (in popup) ── */
.wpsc-faq-chips {
	display: flex !important;
	flex-direction: column !important;
	gap: 8px !important;
	margin-top: 10px !important;
	padding-top: 12px !important;
	border-top: 1px solid #eef0f3 !important;
}
.wpsc-faq-chips__title {
	font-size: 11px !important;
	font-weight: 700 !important;
	letter-spacing: .07em !important;
	text-transform: uppercase !important;
	color: #9ca3af !important;
	margin: 0 0 2px 2px !important;
	padding: 0 !important;
}
.wpsc-faq-chip {
	display: flex !important;
	align-items: center !important;
	gap: 10px !important;
	width: 100% !important;
	text-align: left !important;
	background: #f7f9fc !important;
	color: #1f2937 !important;
	border: 1px solid #edf0f4 !important;
	border-radius: 12px !important;
	padding: 10px 10px 10px 14px !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	font-family: inherit !important;
	line-height: 1.35 !important;
	cursor: pointer !important;
	transition: background .15s, border-color .15s, box-shadow .15s !important;
	box-shadow: none !important;
	margin: 0 !important;
}
.wpsc-faq-chip__txt { flex: 1 1 auto !important; min-width: 0 !important; }
.wpsc-faq-chip__go {
	flex: none !important;
	width: 24px !important;
	height: 24px !important;
	border-radius: 50% !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	background: #fff !important;
	color: var(--wpsc-accent) !important;
	border: 1px solid #e5e7eb !important;
	transition: background .15s, color .15s, border-color .15s, transform .15s !important;
}
.wpsc-faq-chip:hover { background: #fff !important; border-color: var(--wpsc-accent) !important; box-shadow: 0 2px 10px rgba(0,0,0,.05) !important; }
.wpsc-faq-chip:hover .wpsc-faq-chip__go { background: var(--wpsc-accent) !important; color: #fff !important; border-color: var(--wpsc-accent) !important; transform: translateX(1px) !important; }

/* ── FAQ panel ── */
.wpsc-faq {
	display: none;
	width: 320px;
	background: #fff !important;
	border-radius: 16px !important;
	box-shadow: 0 8px 40px rgba(0,0,0,.18) !important;
	flex-direction: column !important;
	overflow: hidden !important;
	animation: wpscSlideUp .18s ease;
	margin: 0 !important;
	max-height: 540px !important;
}
.wpsc-faq.is-open { display: flex !important; }
.wpsc-faq__header {
	display: flex !important;
	align-items: center !important;
	gap: 8px !important;
	padding: 12px 14px !important;
	background: var(--wpsc-accent) !important;
}
.wpsc-faq__back {
	display: flex !important;
	align-items: center !important;
	gap: 4px !important;
	font-size: 12px !important;
	color: rgba(255,255,255,0.85) !important;
	cursor: pointer !important;
	background: none !important;
	border: none !important;
	padding: 0 !important;
	font-family: inherit !important;
	flex-shrink: 0 !important;
}
.wpsc-faq__back:hover { color: #fff !important; }
.wpsc-faq__title {
	flex: 1 !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	color: #fff !important;
	margin: 0 !important;
	padding: 0 !important;
}
.wpsc-faq__messages {
	flex: 1 !important;
	overflow-y: auto !important;
	padding: 14px 12px 6px !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 8px !important;
	min-height: 90px !important;
}
.wpsc-faq__row {
	display: flex !important;
	flex-direction: column !important;
	gap: 6px !important;
	max-width: 85% !important;
}
.wpsc-faq__row--visitor { align-self: flex-end !important;   align-items: flex-end !important; }
.wpsc-faq__row--bot     { align-self: flex-start !important; align-items: flex-start !important; }
.wpsc-faq__bubble {
	padding: 9px 13px !important;
	border-radius: 14px !important;
	font-size: 13px !important;
	line-height: 1.5 !important;
	word-break: break-word !important;
}
.wpsc-faq__row--visitor .wpsc-faq__bubble {
	background: var(--wpsc-accent) !important;
	color: #fff !important;
	border-bottom-right-radius: 4px !important;
}
.wpsc-faq__row--bot .wpsc-faq__bubble {
	background: #f1f5f9 !important;
	color: #1e293b !important;
	border-bottom-left-radius: 4px !important;
}
.wpsc-faq__row--bot .wpsc-faq__bubble a { color: var(--wpsc-accent) !important; text-decoration: underline !important; }
.wpsc-faq__row--bot .wpsc-faq__bubble p { margin: 0 0 6px !important; }
.wpsc-faq__row--bot .wpsc-faq__bubble p:last-child { margin: 0 !important; }
.wpsc-faq__cta {
	display: inline-flex !important;
	align-items: center !important;
	background: var(--wpsc-accent) !important;
	color: #fff !important;
	text-decoration: none !important;
	padding: 8px 16px !important;
	border-radius: 8px !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	transition: background .15s !important;
}
.wpsc-faq__cta:hover { background: var(--wpsc-accent-dark) !important; color: #fff !important; }
.wpsc-faq__typing { display: inline-flex !important; gap: 4px !important; align-items: center !important; }
.wpsc-faq__typing span {
	width: 6px !important; height: 6px !important; border-radius: 50% !important;
	background: #94a3b8 !important; display: inline-block !important;
	animation: wpscFaqBlink 1.2s infinite ease-in-out both !important;
}
.wpsc-faq__typing span:nth-child(2) { animation-delay: .2s !important; }
.wpsc-faq__typing span:nth-child(3) { animation-delay: .4s !important; }
@keyframes wpscFaqBlink { 0%, 80%, 100% { opacity: .3; } 40% { opacity: 1; } }
.wpsc-faq__chips {
	display: flex !important;
	flex-direction: column !important;
	gap: 8px !important;
	padding: 12px !important;
	border-top: 1px solid #eef0f3 !important;
	max-height: 190px !important;
	overflow-y: auto !important;
}

/* ── WhatsApp intake form panel ── */
.wpsc-waf {
	display: none;
	width: 300px;
	background: #fff !important;
	border-radius: 16px !important;
	box-shadow: 0 8px 40px rgba(0,0,0,.18) !important;
	padding: 16px !important;
	flex-direction: column !important;
	gap: 12px !important;
	animation: wpscSlideUp .18s ease;
	margin: 0 !important;
	max-height: 72vh !important;
	overflow-y: auto !important;
}
.wpsc-waf.is-open { display: flex !important; }
.wpsc-waf__fields { display: flex !important; flex-direction: column !important; gap: 14px !important; }
.wpsc-waf__field { display: flex !important; flex-direction: column !important; gap: 6px !important; }
.wpsc-waf__label { font-size: 13px !important; font-weight: 600 !important; color: #1f2937 !important; line-height: 1.35 !important; }
.wpsc-waf__input {
	width: 100% !important;
	box-sizing: border-box !important;
	padding: 10px 12px !important;
	border: 1.5px solid #e5e7eb !important;
	border-radius: 8px !important;
	font-size: 13px !important;
	font-family: inherit !important;
	color: #111 !important;
	outline: none !important;
	background: #fff !important;
	transition: border-color .15s !important;
	box-shadow: none !important;
}
.wpsc-waf__input:focus { border-color: #25d366 !important; }
.wpsc-waf__options { display: flex !important; flex-direction: column !important; gap: 6px !important; }
.wpsc-waf__check {
	display: flex !important;
	align-items: center !important;
	gap: 9px !important;
	padding: 8px 11px !important;
	border: 1px solid #edf0f4 !important;
	border-radius: 9px !important;
	background: #f7f9fc !important;
	cursor: pointer !important;
	font-size: 13px !important;
	color: #374151 !important;
	transition: background .15s, border-color .15s !important;
}
.wpsc-waf__check:hover { border-color: #25d366 !important; background: #fff !important; }
.wpsc-waf__check input {
	accent-color: #25d366 !important;
	width: 16px !important;
	height: 16px !important;
	margin: 0 !important;
	flex: none !important;
}
.wpsc-waf__send {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 8px !important;
	width: 100% !important;
	padding: 12px !important;
	background: #25d366 !important;
	color: #fff !important;
	border: none !important;
	border-radius: 10px !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	font-family: inherit !important;
	cursor: pointer !important;
	transition: background .15s !important;
	margin-top: 2px !important;
}
.wpsc-waf__send:hover { background: #1eb85a !important; }
