/* ==========================================================================
   Baby Name Finder ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â screenshot clone
   Navy #0A1B44 Ãƒâ€šÃ‚Â· Magenta #E91E63 Ãƒâ€šÃ‚Â· Soft blush sidebar
   ========================================================================== */

.bng-wrap {
	--bn-navy: #0a1b44;
	--bn-pink: #e91e63;
	--bn-pink-deep: #d81b60;
	--bn-boy: #3b82f6;
	--bn-neutral: #22a06b;
	--bn-green: #16a34a;
	--bn-blush: #fff5f7;
	--bn-bg: #fffafb;
	--bn-line: #ebe4e8;
	--bn-muted: #8a8494;
	--bn-sans: "Poppins", "Helvetica Neue", Arial, sans-serif;
	/* Override Woodmart form radius (~0) inside Name Finder */
	--wd-form-brd-radius: 5px;
	--btn-brd-radius: 5px;
	--wd-form-placeholder-color: #c4c0c8;

	box-sizing: border-box;
	width: 100vw;
	max-width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	padding: 36px 24px 72px;
	font-family: var(--bn-sans);
	color: var(--bn-navy);
	background: var(--bn-bg);
}

.bng-wrap *,
.bng-wrap *::before,
.bng-wrap *::after {
	box-sizing: border-box;
}

.bng-page-head {
	max-width: 1120px;
	margin: 0 auto 28px;
	text-align: center;
}

.bng-page-title {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin: 0 0 10px;
	font-size: clamp(1.55rem, 2.6vw, 2rem);
	font-weight: 700;
	color: var(--bn-navy);
	line-height: 1.25;
}

.bng-page-title__line {
	display: block;
	width: 48px;
	height: 2px;
	background: var(--bn-pink);
	flex: 0 0 auto;
}

.bng-page-sub {
	margin: 0;
	font-size: 14px;
	color: var(--bn-muted);
}

.bng-gate {
	max-width: 520px;
	margin: 0 auto 24px;
	padding: 20px;
	text-align: center;
	background: #fff;
	border: 1px solid var(--bn-line);
	border-radius: 16px;
}

.bng-gate p {
	margin: 0 0 12px;
	color: var(--bn-muted);
	font-size: 14px;
}

.bng-layout {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.75fr);
	gap: 10px;
	align-items: start;
}

.bng-layout.is-locked {
	opacity: 0.45;
	pointer-events: none;
}

/* Form */
.bng-form {
	background: #fff;
	border: 1px solid var(--bn-line);
	border-radius: 18px;
	padding: 8px 0 20px;
	box-shadow: 0 10px 28px rgba(10, 27, 68, 0.04);
}

.bng-step {
	padding: 22px 24px 10px;
	border-bottom: 1px solid #f3eaee;
}

.bng-step:last-child {
	border-bottom: none;
}

.bng-step__head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
}

.bng-step__num {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	background: var(--bn-pink);
	flex: 0 0 auto;
}

.bng-step__title {
	margin: 0;
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--bn-navy);
}

.bng-opt {
	font-weight: 500;
	font-size: 0.85em;
	color: var(--bn-muted);
}

.bng-section {
	margin-bottom: 14px;
}

.bng-section__label {
	display: block;
	margin: 0 0 5px;
	font-size: 13px;
	font-weight: 700;
	color: var(--bn-navy);
}

.bng-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-bottom: 4px;
}

.bng-row--thirds {
	grid-template-columns: 1fr 1fr 1fr;
}

.bng-grid-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5px;
	align-items: start;
}

.bng-grid-3 {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px 14px;
	margin-bottom: 4px;
}

.bng-grid-vibe {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 12px 14px;
	margin-top: 4px;
}

.bng-field--gender {
	margin-bottom: 0;
}

.bng-advanced {
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	gap: 20px 28px;
	align-items: start;
}

.bng-advanced__col {
	min-width: 0;
}

.bng-advanced__col+.bng-advanced__col {
	padding-left: 14px;
	border-left: 1px solid #e8e2e6;
}

.bng-accept {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin: 0 0 14px;
	font-size: 13px;
	font-weight: 600;
	color: var(--bn-navy);
}

.bng-accept .bng-cards {
	margin: 0;
}

.bng-field {
	display: flex;
	flex-direction: column;
	gap: 0px;
	margin-bottom: 12px !important;
}

.bng-grid-2>.bng-field,
.bng-grid-3>.bng-field,
.bng-grid-vibe>.bng-field {
	margin-bottom: 0;
}

.bng-field label {
	font-size: 13px;
	font-weight: 700;
	color: var(--bn-navy);
}

/* Woodmart uses input[type=text] { border-radius: var(--wd-form-brd-radius) } (~0) â€” beat it */
.bng-wrap input.bng-input,
.bng-wrap select.bng-select,
.bng-wrap textarea.bng-input,
.bng-input,
.bng-select {
	width: 100%;
	height: 44px;
	padding: 0 12px;
	border: 1px solid #d9d5dc;
	border-radius: 5px !important;
	font-family: inherit;
	font-size: 14px;
	color: var(--bn-navy);
	background-color: #fff;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.bng-wrap select.bng-select,
.bng-select {
	background-color: #fff !important;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230a1b44' d='M1.4 0L6 4.6 10.6 0 12 1.4 6 7.4 0 1.4z'/%3E%3C/svg%3E") !important;
	background-repeat: no-repeat !important;
	background-position: right 12px center !important;
	background-size: 12px 8px !important;
	padding-right: 36px !important;
	cursor: pointer;
}

.bng-input:focus,
.bng-select:focus {
	outline: none;
	border-color: var(--bn-pink);
	box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.12);
}

.bng-wrap input.bng-input::placeholder,
.bng-wrap select.bng-select::placeholder,
.bng-input::placeholder,
.bng-select::placeholder {
	color: #c8c4cc !important;
	opacity: 1;
}

.bng-wrap input.bng-input::-webkit-input-placeholder,
.bng-input::-webkit-input-placeholder {
	color: #c8c4cc !important;
	opacity: 1;
}

.bng-wrap input.bng-input::-moz-placeholder,
.bng-input::-moz-placeholder {
	color: #c8c4cc !important;
	opacity: 1;
}

.bng-input-icon {
	position: relative;
}

.bng-input-icon .bng-input {
	padding-right: 40px;
}

.bng-input-icon__svg {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--bn-muted);
	pointer-events: none;
	line-height: 0;
}

/* Gender */
.bng-gender {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
}

.bng-wrap .bng-gender__btn,
.bng-gender__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-height: 44px;
	padding: 8px 6px;
	border-radius: 5px !important;
	border: 1.5px solid #d9d5dc;
	background: #fff;
	font-family: inherit;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.bng-gender__icon {
	display: inline-flex;
	line-height: 0;
}

.bng-gender__btn--boy {
	color: var(--bn-boy);
	border-color: #93c5fd;
	background: #f0f7ff;
}

.bng-gender__btn--girl {
	color: var(--bn-pink);
	border-color: #f9a8d4;
	background: #fff5f9;
}

.bng-gender__btn--neutral {
	color: var(--bn-neutral);
	border-color: #86efac;
	background: #f3fdf7;
}

.bng-gender__btn--boy.is-active {
	background: var(--bn-boy);
	border-color: var(--bn-boy);
	color: #fff;
	box-shadow: 0 6px 16px rgba(59, 130, 246, 0.28);
}

.bng-gender__btn--girl.is-active {
	background: var(--bn-pink);
	border-color: var(--bn-pink);
	color: #fff;
	box-shadow: 0 6px 16px rgba(233, 30, 99, 0.28);
}

.bng-gender__btn--neutral.is-active {
	background: var(--bn-neutral);
	border-color: var(--bn-neutral);
	color: #fff;
	box-shadow: 0 6px 16px rgba(34, 160, 107, 0.28);
}

/* Checks */
.bng-checks {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 4px 0 12px;
}

.bng-checks--2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5px 10px;
}

.bng-check {
	display: flex;
	align-items: flex-start;
	gap: 5px;
	font-size: 12px;
	font-weight: 500;
	color: var(--bn-navy);
	cursor: pointer;
}

.bng-check input {
	margin-top: 2px;
	accent-color: var(--bn-pink);
}

.bng-check--terms a {
	color: var(--bn-pink);
	text-decoration: underline;
}

/* Payment */
.bng-step__head>div {
	min-width: 0;
}

.bng-pay-secure {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 6px 0 0;
	font-size: 13px;
	color: var(--bn-green);
	font-weight: 500;
}

.bng-pay-secure__icon {
	display: inline-flex;
	color: var(--bn-green);
	flex: 0 0 auto;
	margin-top: 1px;
}

.bng-pay-free {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 14px;
	margin-bottom: 14px;
	border-radius: 10px;
	background: var(--bn-blush);
	border: 1px solid #f3c9d8;
}

.bng-pay-free__badge {
	padding: 5px 10px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: #fff;
	background: var(--bn-navy);
}

.bng-pay-free p {
	margin: 0;
	font-size: 13px;
	color: var(--bn-navy);
}

.bng-cards {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 14px;
}

.bng-card-logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 52px;
	height: 28px;
	padding: 0 8px;
	border-radius: 4px;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.04em;
	border: 1px solid #e5e1e8;
	background: #fff;
	color: var(--bn-navy);
}

.bng-card-logo--visa {
	color: #1a1f71;
}

.bng-card-logo--mc {
	color: #eb001b;
}

.bng-card-logo--amex {
	color: #2e77bc;
}

.bng-card-logo--disc {
	color: #ff6000;
}

.bng-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	min-height: 54px;
	margin-top: 10px;
	padding: 14px 20px;
	border: none;
	border-radius: 999px;
	font-family: inherit;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #fff;
	cursor: pointer;
	background: var(--bn-pink);
	box-shadow: 0 10px 24px rgba(233, 30, 99, 0.3);
	transition: background 0.15s ease, transform 0.15s ease;
}

.bng-submit:hover {
	background: var(--bn-pink-deep);
	transform: translateY(-1px);
	color: #fff;
}

.bng-submit:disabled {
	opacity: 0.7;
	cursor: wait;
	transform: none;
}

.bng-submit__icon {
	display: inline-flex;
	line-height: 0;
}

.bng-submit-note {
	margin: 10px 0 0;
	text-align: center;
	font-size: 12px;
	color: var(--bn-muted);
}

.bng-form-msg {
	margin: 10px 0 0;
	padding: 10px 12px;
	border-radius: 8px;
	font-size: 13px;
}

.bng-form-msg.is-error {
	background: #fff0f3;
	color: #b42318;
	border: 1px solid #f3c4c4;
}

.bng-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 20px;
	border: none;
	border-radius: 999px;
	font-family: inherit;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
}

.bng-btn--primary {
	color: #fff;
	background: var(--bn-pink);
}

.bng-btn--secondary {
	color: var(--bn-navy);
	background: #fff;
	border: 1.5px solid #ddd6dc;
}

.bng-btn--ghost {
	color: var(--bn-pink-deep);
	background: var(--bn-blush);
	border: 1px solid #f3c9d8;
}

/* Sidebar */
.bng-summary__card {
	background: var(--bn-blush);
	border: 1px solid #f0dde4;
	border-radius: 18px;
	padding: 22px 20px;
	position: sticky;
	top: 20px;
	box-shadow: 0 10px 28px rgba(10, 27, 68, 0.04);
}

.bng-summary__title {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 16px;
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--bn-navy);
}

.bng-summary__title-icon {
	display: inline-flex;
	color: var(--bn-pink);
	line-height: 0;
}

.bng-summary__product {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 10px;
	font-size: 14px;
	color: var(--bn-navy);
}

.bng-summary__list {
	margin: 0 0 16px;
	padding: 0;
	list-style: none;
}

.bng-summary__list li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	padding: 5px 0;
	font-size: 13px;
	color: var(--bn-navy);
}

.bng-summary__check {
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 700;
	color: #fff;
	background: var(--bn-pink);
	line-height: 1;
	margin-top: 1px;
}

.bng-summary__check--green {
	background: var(--bn-green);
}

.bng-summary__total {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	margin-bottom: 14px;
	padding: 12px 0;
	border-top: 1px dashed #ecc9d4;
	border-bottom: 1px dashed #ecc9d4;
	font-size: 15px;
	font-weight: 700;
	color: var(--bn-navy);
}

.bng-summary__total strong {
	font-size: 1.7rem;
	font-weight: 800;
	color: var(--bn-pink);
}

.bng-summary__guarantee {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin: 0 0 16px;
	font-size: 12px;
	line-height: 1.45;
	color: var(--bn-green);
	font-weight: 500;
}

.bng-summary__shield {
	display: inline-flex;
	color: var(--bn-green);
	flex: 0 0 auto;
	margin-top: 1px;
}

.bng-summary__coupon label {
	display: block;
	margin-bottom: 8px;
	font-size: 13px;
	font-weight: 700;
	color: var(--bn-navy);
}

.bng-coupon-row {
	display: flex;
	gap: 8px;
}

.bng-coupon-row .bng-input {
	flex: 1;
	min-width: 0;
	background: #fff;
}

.bng-wrap .bng-coupon-row input.bng-input,
.bng-wrap .bng-coupon-apply,
.bng-coupon-row .bng-input,
.bng-coupon-apply {
	border-radius: 5px !important;
}

.bng-wrap .bng-coupon-apply,
.bng-coupon-apply {
	flex: 0 0 auto;
	height: 44px;
	padding: 0 16px;
	border: none;
	font-family: inherit;
	font-size: 13px;
	font-weight: 700;
	color: #fff;
	background: var(--bn-pink);
	cursor: pointer;
	transition: background 0.15s ease;
}

.bng-coupon-apply:hover {
	background: var(--bn-pink-deep);
}

.bng-coupon-msg {
	margin: 8px 0 0;
	font-size: 12px;
	font-weight: 500;
}

.bng-coupon-msg.is-ok {
	color: var(--bn-green);
}

.bng-coupon-msg.is-error {
	color: #b42318;
}

.bng-summary__thanks {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 16px 0;
	padding: 12px 14px;
	border-radius: 12px;
	background: #ffe9f0;
	font-size: 13px;
	line-height: 1.45;
	font-weight: 500;
	color: var(--bn-navy);
}

.bng-summary__heart {
	display: inline-flex;
	color: var(--bn-pink);
	flex: 0 0 auto;
	margin-top: 1px;
}

.bng-summary__privacy {
	display: flex;
	align-items: flex-start;
	gap: 7px;
	margin: 0;
	font-size: 11px;
	line-height: 1.45;
	color: var(--bn-muted);
}

.bng-summary__lock {
	display: inline-flex;
	color: var(--bn-green);
	flex: 0 0 auto;
	margin-top: 1px;
}

/* Results â€” only after Generate (Woodmart often breaks [hidden]) */
.bng-wrap[data-view="form"] .bng-results-view,
.bng-wrap:not([data-view="results"]) .bng-results-view {
	display: none !important;
}

.bng-wrap[data-view="results"] .bng-finder {
	display: none !important;
}

.bng-wrap[data-view="results"] .bng-results-view {
	display: block !important;
}

.bng-results-view {
	max-width: 1120px;
	margin: 0 auto;
}


.bng-wrap[data-view="results"][data-state="loading"] .bng-success-banner,
.bng-wrap[data-view="results"][data-state="loading"] .bng-results-head,
.bng-wrap[data-view="results"][data-state="loading"] .bng-prefs,
.bng-wrap[data-view="results"][data-state="loading"] .bng-names-box,
.bng-wrap[data-view="results"][data-state="loading"] .bng-results-actions,
.bng-wrap[data-view="results"][data-state="loading"] .bng-upsell {
	display: none !important;
}

.bng-success-banner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 16px 20px;
	margin-bottom: 32px;
	background: #fff8f0;
	border: 1px solid #f0e4d6;
	border-radius: 12px;
}

.bng-success-banner__left {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
}

.bng-success-banner__check {
	flex: 0 0 auto;
	line-height: 0;
}

.bng-success-banner strong {
	display: block;
	font-size: 15px;
	font-weight: 700;
	color: var(--bn-navy);
	margin-bottom: 2px;
}

.bng-success-banner__left > div > span {
	font-size: 13px;
	color: var(--bn-muted);
	font-weight: 400;
}

.bng-btn--save {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	border-radius: 8px !important;
	border: 1.5px solid var(--bn-pink);
	background: #fff;
	color: var(--bn-pink);
	font-size: 13px;
	font-weight: 700;
	text-transform: none;
	letter-spacing: 0;
}

.bng-btn--save:hover {
	background: var(--bn-blush);
	color: var(--bn-pink-deep);
}

.bng-results-head {
	text-align: center;
	margin-bottom: 22px;
}

.bng-results-title {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin: 0 0 10px;
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(1.55rem, 2.6vw, 2.1rem);
	font-weight: 700;
	color: var(--bn-navy);
	line-height: 1.25;
}

.bng-results-title__line {
	display: block;
	width: 40px;
	height: 2px;
	background: var(--bn-pink);
	flex: 0 0 auto;
}

.bng-results-sub {
	margin: 0;
	font-size: 14px;
	color: var(--bn-muted);
}

.bng-results-meta {
	display: none !important;
}

.bng-prefs {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 8px;
	padding: 18px 14px;
	margin-bottom: 22px;
	background: #fff;
	border: 1px solid var(--bn-line);
	border-radius: 12px;
}

.bng-prefs__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 4px;
	padding: 4px 6px;
	min-width: 0;
}

.bng-prefs__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	margin-bottom: 2px;
}

.bng-prefs__icon--boy { color: #3b82f6; background: #eff6ff; }
.bng-prefs__icon--origin { color: #e91e63; background: #fce4ec; }
.bng-prefs__icon--vibe { color: #22a06b; background: #ecfdf5; }
.bng-prefs__icon--style { color: #7c3aed; background: #f3e8ff; }
.bng-prefs__icon--date { color: #ea580c; background: #fff7ed; }

.bng-prefs__label {
	font-size: 11px;
	font-weight: 700;
	color: var(--bn-navy);
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.bng-prefs__value {
	font-size: 12px;
	font-weight: 500;
	color: var(--bn-navy);
	line-height: 1.35;
	word-break: break-word;
}

.bng-names-box {
	background: #fff;
	border: 1px solid var(--bn-line);
	border-radius: 12px;
	padding: 22px 20px;
	margin-bottom: 22px;
}

.bng-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 10px 16px;
	margin: 0;
}

.bng-card {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 4px 0;
	background: transparent;
	border: none;
	border-radius: 0;
	text-align: left;
	box-shadow: none;
}

.bng-card__index {
	position: static;
	flex: 0 0 auto;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 700;
	color: var(--bn-pink-deep);
	background: #fce4ec;
}

.bng-card__name {
	margin: 0;
	font-size: 14px;
	font-weight: 600;
	color: var(--bn-navy);
	line-height: 1.3;
}

.bng-card__meta,
.bng-card__actions {
	display: none !important;
}

.bng-results-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-bottom: 36px;
}

.bng-btn--outline {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 20px;
	border-radius: 8px !important;
	border: 1.5px solid var(--bn-navy);
	background: #fff;
	color: var(--bn-navy);
	font-size: 13px;
	font-weight: 700;
	text-transform: none;
	letter-spacing: 0;
}

.bng-btn--outline:hover {
	background: #f8fafc;
	color: var(--bn-navy);
}

.bng-loading {
	text-align: center;
	padding: 48px 20px;
}

.bng-spinner {
	width: 40px;
	height: 40px;
	margin: 0 auto 14px;
	border: 3px solid #fce4ec;
	border-top-color: var(--bn-pink);
	border-radius: 50%;
	animation: bng-spin 0.8s linear infinite;
}

@keyframes bng-spin {
	to { transform: rotate(360deg); }
}

.bng-upsell {
	margin-top: 8px;
}

.bng-upsell__card {
	display: grid;
	grid-template-columns: 1.4fr 0.85fr;
	align-items: center;
	padding: 28px 26px;
	background: #fff8fa;
	border: 1px solid #f0dde4;
	border-radius: 16px;
}

.bng-upsell__copy {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding-right: 24px;
	border-right: 1px solid #e8dfe4;
}

.bng-upsell__wand {
	flex: 0 0 auto;
	line-height: 0;
}

.bng-upsell__title {
	margin: 0 0 6px;
	font-family: "Playfair Display", Georgia, serif;
	font-size: 1.45rem;
	font-weight: 700;
	color: var(--bn-navy);
}

.bng-upsell__sub {
	margin: 0 0 14px;
	font-size: 13px;
	line-height: 1.5;
	color: var(--bn-navy);
}

.bng-upsell__features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.bng-upsell__features li {
	position: relative;
	padding-left: 22px;
	font-size: 12px;
	font-weight: 500;
	color: var(--bn-navy);
	line-height: 1.4;
}

.bng-upsell__features li::before {
	content: "\2713";
	position: absolute;
	left: 0;
	top: 0;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--bn-pink);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	line-height: 16px;
	text-align: center;
}

.bng-upsell__cta {
	text-align: center;
	padding-left: 20px;
}

.bng-upsell__label {
	display: block;
	font-size: 12px;
	font-weight: 600;
	color: var(--bn-navy);
	margin-bottom: 4px;
}

.bng-upsell__price {
	margin: 0 0 14px;
	font-size: 2rem;
	font-weight: 800;
	color: var(--bn-pink);
	line-height: 1.1;
}

.bng-upsell__btn {
	width: 100%;
	max-width: 260px;
	border-radius: 8px !important;
	text-transform: none;
	letter-spacing: 0;
	font-size: 13px;
}

.bng-upsell__secure {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin: 10px 0 0;
	font-size: 12px;
	color: var(--bn-muted);
}

.bng-guarantee {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 14px;
	padding: 14px 18px;
	background: #eef8f1;
	border-radius: 12px;
}

.bng-guarantee__icon {
	flex: 0 0 auto;
	color: #22a06b;
	line-height: 0;
}

.bng-guarantee p {
	margin: 0;
	font-size: 13px;
	color: var(--bn-navy);
	line-height: 1.45;
}

.bng-guarantee strong {
	margin-right: 4px;
}

.bng-error {
	padding: 16px;
	border-radius: 12px;
	background: #fff0f3;
	color: #b42318;
	text-align: center;
}

@media (max-width: 980px) {
	.bng-layout {
		grid-template-columns: 1fr;
	}

	.bng-summary__card {
		position: static;
	}

	.bng-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.bng-prefs {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.bng-upsell__card {
		grid-template-columns: 1fr;
	}

	.bng-upsell__copy {
		padding-right: 0;
		border-right: none;
		padding-bottom: 18px;
		border-bottom: 1px solid #e8dfe4;
	}

	.bng-upsell__cta {
		padding-left: 0;
	}
}

@media (max-width: 640px) {
	.bng-wrap {
		padding: 24px 14px 56px;
	}

	.bng-page-title__line,
	.bng-results-title__line {
		display: none;
	}

	.bng-row,
	.bng-row--thirds,
	.bng-grid-2,
	.bng-grid-3,
	.bng-grid-vibe,
	.bng-advanced,
	.bng-checks--2 {
		grid-template-columns: 1fr;
	}

	.bng-advanced__col + .bng-advanced__col {
		padding-left: 0;
		border-left: none;
		padding-top: 16px;
		border-top: 1px solid #e8e2e6;
	}

	.bng-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bng-prefs {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bng-upsell__features {
		grid-template-columns: 1fr;
	}

	.bng-success-banner {
		flex-direction: column;
		text-align: center;
	}

	.bng-success-banner__left {
		flex-direction: column;
	}
}