:root {
	--wfqc-bg: #f5f6fa;
	--wfqc-surface: #ffffff;
	--wfqc-surface-soft: #fafbff;
	--wfqc-surface-alt: #f8f9fc;
	--wfqc-border: #e6e9f2;
	--wfqc-border-strong: #d7ddea;
	--wfqc-text: #16181d;
	--wfqc-text-soft: #5f6777;
	--wfqc-text-muted: #8a91a1;
	--wfqc-primary: #00a650;
	--wfqc-primary-2: #08c261;
	--wfqc-primary-shadow: rgba(0, 166, 80, 0.22);
	--wfqc-blue: #3483fa;
	--wfqc-danger: #d92d20;
	--wfqc-radius-xs: 10px;
	--wfqc-radius-sm: 14px;
	--wfqc-radius-md: 18px;
	--wfqc-radius-lg: 24px;
	--wfqc-shadow-sm: 0 6px 18px rgba(16, 24, 40, 0.06);
	--wfqc-shadow-md: 0 16px 40px rgba(17, 24, 39, 0.10);
	--wfqc-shadow-lg: 0 28px 80px rgba(17, 24, 39, 0.18);
	--wfqc-transition: .22s ease;
}

.wfqc-single,
.wfqc-single * {
	box-sizing: border-box;
}

.wfqc-single {
	padding: 32px 20px 48px;
	background: var(--wfqc-bg);
}

.wfqc-container {
	max-width: 1280px;
	margin: 0 auto;
}

.wfqc-breadcrumb {
	margin: 0 0 20px;
	font-size: 14px;
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	color: var(--wfqc-text-soft);
}

.wfqc-breadcrumb a {
	text-decoration: none;
	color: var(--wfqc-blue);
}

.wfqc-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 400px;
	gap: 24px;
	align-items: start;
}

.wfqc-gallery {
	background: var(--wfqc-surface);
	border: 1px solid var(--wfqc-border);
	border-radius: var(--wfqc-radius-md);
	padding: 18px;
	box-shadow: var(--wfqc-shadow-sm);
}

.wfqc-main-image {
	border-radius: 16px;
	overflow: hidden;
	background: #fff;
}

.wfqc-main-image img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 16px;
	object-fit: contain;
	background: #fff;
}

.wfqc-thumbs {
	display: flex;
	gap: 10px;
	margin-top: 14px;
	flex-wrap: wrap;
}

.wfqc-thumb {
	border: 1px solid var(--wfqc-border);
	background: #fff;
	padding: 4px;
	cursor: pointer;
	width: 72px;
	height: 72px;
	border-radius: 12px;
	transition: border-color var(--wfqc-transition), box-shadow var(--wfqc-transition), transform var(--wfqc-transition);
}

.wfqc-thumb:hover {
	transform: translateY(-1px);
}

.wfqc-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 8px;
}

.wfqc-thumb.is-active {
	border-color: var(--wfqc-blue);
	box-shadow: 0 0 0 3px rgba(52, 131, 250, 0.12);
}

.wfqc-summary {
	position: sticky;
	top: 20px;
}

.wfqc-card {
	background: var(--wfqc-surface);
	border: 1px solid var(--wfqc-border);
	border-radius: var(--wfqc-radius-md);
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	box-shadow: var(--wfqc-shadow-sm);
}

.wfqc-header-line {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.wfqc-sold,
.wfqc-sold-count {
	font-size: 13px;
	color: var(--wfqc-text-soft);
}

.wfqc-title {
	margin: 0;
	font-size: 24px;
	line-height: 1.15;
	color: var(--wfqc-text);
	font-weight: 800;
}

.wfqc-price {
	font-size: 42px;
	font-weight: 800;
	line-height: 1.05;
	color: var(--wfqc-text);
}

.wfqc-price del {
	display: none !important;
}

.wfqc-price ins {
	text-decoration: none !important;
	border: none !important;
	color: var(--wfqc-text);
	font-weight: 800;
}

.wfqc-installments {
	font-size: 22px;
	color: var(--wfqc-primary);
	line-height: 1.3;
	font-weight: 600;
}

.wfqc-actions {
	margin-top: 4px;
}

.wfqc-button,
.wfqc-finish-button {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 56px;
	padding: 14px 24px;
	background: linear-gradient(180deg, var(--wfqc-primary-2) 0%, var(--wfqc-primary) 100%) !important;
	color: #fff !important;
	text-decoration: none !important;
	border: 0 !important;
	border-radius: 14px !important;
	font-size: 18px;
	font-weight: 800;
	letter-spacing: .1px;
	cursor: pointer;
	box-shadow: 0 14px 30px var(--wfqc-primary-shadow);
	transition: transform .15s ease, box-shadow .2s ease, filter .2s ease;
}

.wfqc-button:hover,
.wfqc-finish-button:hover {
	filter: brightness(.98);
	box-shadow: 0 18px 36px rgba(0, 166, 80, 0.28);
	transform: translateY(-1px);
}

.wfqc-button:active,
.wfqc-finish-button:active {
	transform: translateY(1px);
	box-shadow: 0 8px 18px rgba(0, 166, 80, 0.18);
}

.wfqc-button:focus-visible,
.wfqc-finish-button:focus-visible {
	outline: none;
	box-shadow: 0 0 0 4px rgba(0, 166, 80, 0.14), 0 14px 30px var(--wfqc-primary-shadow);
}

.wfqc-button::before,
.wfqc-finish-button::before {
	content: "🔒";
	margin-right: 8px;
	font-size: 15px;
	line-height: 1;
}

.wfqc-trust-list {
	list-style: none;
	margin: 4px 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.wfqc-trust-list li {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: var(--wfqc-text-soft);
}

.wfqc-description {
	margin-top: 24px;
	background: var(--wfqc-surface);
	border: 1px solid var(--wfqc-border);
	border-radius: var(--wfqc-radius-md);
	padding: 28px;
	box-shadow: var(--wfqc-shadow-sm);
}

.wfqc-description h2 {
	margin: 0 0 20px;
	font-size: 30px;
	color: var(--wfqc-text);
}

.wfqc-description-content {
	font-size: 16px;
	line-height: 1.8;
	color: #313644;
}

/* MODAL */
.wfqc-modal,
.wfqc-modal * {
	box-sizing: border-box;
}

.wfqc-modal {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: none;
}

.wfqc-modal.is-active {
	display: block;
}

.wfqc-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.58);
	backdrop-filter: blur(4px);
}

.wfqc-modal__dialog {
	position: relative;
	z-index: 2;
	width: calc(100% - 24px);
	max-width: 1180px;
	max-height: 92vh;
	margin: 3vh auto 0;
	background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
	border: 1px solid rgba(255,255,255,0.65);
	border-radius: 26px;
	box-shadow: var(--wfqc-shadow-lg);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.wfqc-modal__content {
	padding: 26px;
	overflow-y: auto;
	scrollbar-width: thin;
	background:
		radial-gradient(circle at top right, rgba(52,131,250,0.06), transparent 20%),
		radial-gradient(circle at top left, rgba(0,166,80,0.05), transparent 18%);
}

.wfqc-modal__content > h3 {
	margin: 0 0 6px;
	font-size: 24px;
	line-height: 1.2;
	font-weight: 800;
	color: var(--wfqc-text);
}

.wfqc-modal__subtitle {
	margin: 0 0 20px;
	color: var(--wfqc-text-soft);
	font-size: 14px;
}

.wfqc-modal__close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 42px;
	height: 42px;
	border: 1px solid var(--wfqc-border) !important;
	background: rgba(255,255,255,0.88) !important;
	backdrop-filter: blur(6px);
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	color: #4b5563;
	z-index: 4;
	border-radius: 999px;
	box-shadow: 0 6px 18px rgba(17,24,39,0.10);
	transition: transform var(--wfqc-transition), background var(--wfqc-transition), color var(--wfqc-transition);
}

.wfqc-modal__close:hover {
	transform: scale(1.04);
	background: #fff !important;
	color: #111827;
}

body.wfqc-modal-open {
	overflow: hidden;
}

.wfqc-checkout-root {
	min-height: 120px;
}

.wfqc-loading,
.wfqc-error {
	margin-top: 10px;
	padding: 18px 20px;
	border-radius: 14px;
	background: #f6f8fc;
	font-size: 14px;
	color: var(--wfqc-text-soft);
	border: 1px solid var(--wfqc-border);
}

.wfqc-checkout-root.is-loading {
	opacity: .65;
	pointer-events: none;
	transition: opacity .2s ease;
}

/* RESET BÁSICO */
.wfqc-modal .woocommerce,
.wfqc-modal .woocommerce form,
.wfqc-modal .woocommerce-checkout,
.wfqc-modal .woocommerce-checkout form,
.wfqc-modal .wfqc-quick-checkout,
.wfqc-modal .wfqc-quick-checkout form {
	margin: 0 !important;
	padding: 0 !important;
	width: 100% !important;
	max-width: none !important;
	float: none !important;
}

.wfqc-modal form.checkout.woocommerce-checkout::before,
.wfqc-modal form.checkout.woocommerce-checkout::after,
.wfqc-modal .wfqc-checkout-fields::before,
.wfqc-modal .wfqc-checkout-fields::after,
.wfqc-modal .woocommerce form .form-row::before,
.wfqc-modal .woocommerce form .form-row::after {
	content: "" !important;
	display: table !important;
	clear: both !important;
}

.wfqc-modal .woocommerce form .form-row,
.wfqc-modal .woocommerce-page form .form-row,
.wfqc-modal .woocommerce form .form-row-first,
.wfqc-modal .woocommerce form .form-row-last,
.wfqc-modal .woocommerce-page form .form-row-first,
.wfqc-modal .woocommerce-page form .form-row-last,
.wfqc-modal .woocommerce form .form-row-wide,
.wfqc-modal p.form-row,
.wfqc-modal p.form-row-first,
.wfqc-modal p.form-row-last,
.wfqc-modal p.form-row-wide {
	margin: 0 !important;
	padding: 0 !important;
	float: none !important;
	width: 100% !important;
	max-width: 100% !important;
	min-width: 0 !important;
	position: relative !important;
	left: auto !important;
	right: auto !important;
	clear: none !important;
}

.wfqc-modal .woocommerce form .form-row label,
.wfqc-modal .woocommerce-page form .form-row label,
.wfqc-modal p.form-row label {
	display: block !important;
	float: none !important;
	width: auto !important;
	margin: 0 0 8px !important;
	padding: 0 !important;
	line-height: 1.35 !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	color: #2a3140 !important;
}

.wfqc-modal .woocommerce-input-wrapper,
.wfqc-modal .select2-container,
.wfqc-modal .woocommerce form .form-row .input-text,
.wfqc-modal .woocommerce-page form .form-row .input-text,
.wfqc-modal .woocommerce form .form-row select,
.wfqc-modal .woocommerce form .form-row textarea {
	width: 100% !important;
	max-width: 100% !important;
}

/* SÓ CAMPOS DO CHECKOUT */
.wfqc-modal .wfqc-checkout-fields input.input-text,
.wfqc-modal .wfqc-checkout-fields textarea,
.wfqc-modal .wfqc-checkout-fields select,
.wfqc-modal .wfqc-checkout-fields input[type="text"],
.wfqc-modal .wfqc-checkout-fields input[type="tel"],
.wfqc-modal .wfqc-checkout-fields input[type="email"],
.wfqc-modal .wfqc-checkout-fields input[type="number"],
.wfqc-modal .wfqc-checkout-fields input[type="password"] {
	appearance: none !important;
	-webkit-appearance: none !important;
	width: 100% !important;
	min-width: 0 !important;
	height: 54px !important;
	padding: 0 16px !important;
	margin: 0 !important;
	border: 1px solid var(--wfqc-border-strong) !important;
	border-radius: 14px !important;
	background: #fff !important;
	color: var(--wfqc-text) !important;
	font-size: 15px !important;
	font-weight: 500 !important;
	letter-spacing: 0 !important;
	line-height: 1 !important;
	box-shadow: 0 1px 2px rgba(16,24,40,0.02) !important;
	transition: border-color var(--wfqc-transition), box-shadow var(--wfqc-transition), background var(--wfqc-transition) !important;
}

.wfqc-modal .wfqc-checkout-fields textarea {
	height: 110px !important;
	padding: 14px 16px !important;
	line-height: 1.45 !important;
	resize: vertical !important;
}

.wfqc-modal .wfqc-checkout-fields input:focus,
.wfqc-modal .wfqc-checkout-fields select:focus,
.wfqc-modal .wfqc-checkout-fields textarea:focus {
	outline: none !important;
	border-color: rgba(52,131,250,0.78) !important;
	box-shadow: 0 0 0 4px rgba(52,131,250,0.10) !important;
	background: #fff !important;
}

.wfqc-modal .wfqc-checkout-fields input::placeholder,
.wfqc-modal .wfqc-checkout-fields textarea::placeholder {
	color: #98a2b3 !important;
	opacity: 1 !important;
}

.wfqc-modal .woocommerce form .form-row .required {
	color: var(--wfqc-danger) !important;
	font-weight: 700 !important;
	border: 0 !important;
	text-decoration: none !important;
}

/* GRID DOS CAMPOS */
.wfqc-checkout-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.55fr) minmax(340px, 420px);
	gap: 28px;
	align-items: start;
}

.wfqc-checkout-fields {
	border-right: 1px solid var(--wfqc-border);
	padding-right: 24px;
}

.wfqc-checkout-fields h3,
.wfqc-order-review h3,
.wfqc-payment-section h3 {
	margin: 0 0 18px !important;
	font-size: 18px !important;
	line-height: 1.25 !important;
	font-weight: 800 !important;
	color: var(--wfqc-text) !important;
}

.wfqc-modal .wfqc-checkout-fields {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px 18px;
	align-items: start;
}

.wfqc-modal .wfqc-checkout-fields > h3 {
	grid-column: 1 / -1;
}

.wfqc-modal .wfqc-checkout-fields .form-row-wide,
.wfqc-modal .wfqc-checkout-fields .form-row.address-field,
.wfqc-modal .wfqc-checkout-fields .form-row.notes,
.wfqc-modal .wfqc-checkout-fields #billing_persontype_field,
.wfqc-modal .wfqc-checkout-fields #billing_country_field,
.wfqc-modal .wfqc-checkout-fields #billing_address_2_field,
.wfqc-modal .wfqc-checkout-fields #billing_email_field,
.wfqc-modal .wfqc-checkout-fields #billing_phone_field {
	grid-column: 1 / -1;
}

.wfqc-modal .wfqc-checkout-fields .form-row-first,
.wfqc-modal .wfqc-checkout-fields .form-row-last {
	width: 100% !important;
	float: none !important;
	margin: 0 !important;
}

.wfqc-modal .wfqc-checkout-fields .form-row {
	margin-bottom: 0 !important;
}

.wfqc-checkout-review {
	position: sticky;
	top: 0;
}

/* MINI CARRINHO */
.wfqc-cart-top {
	margin: 0 0 24px;
	padding: 20px;
	border: 1px solid var(--wfqc-border);
	border-radius: 20px;
	background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
	box-shadow: var(--wfqc-shadow-sm);
}

.wfqc-cart-top__title {
	margin: 0 0 16px;
	font-size: 18px;
	font-weight: 800;
	color: var(--wfqc-text);
}

.wfqc-cart-top__items {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.wfqc-cart-item {
	display: grid;
	grid-template-columns: 76px minmax(0, 1fr) auto;
	gap: 16px;
	align-items: center;
	padding: 16px;
	border: 1px solid var(--wfqc-border);
	border-radius: 18px;
	background: #fff;
	transition: box-shadow var(--wfqc-transition), transform var(--wfqc-transition);
}

.wfqc-cart-item:hover {
	box-shadow: 0 10px 24px rgba(16,24,40,0.06);
	transform: translateY(-1px);
}

.wfqc-cart-item__image {
	width: 76px;
	height: 76px;
	border-radius: 16px;
	overflow: hidden;
	background: #f7f8fb;
	border: 1px solid var(--wfqc-border);
}

.wfqc-cart-item__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.wfqc-cart-item__content {
	min-width: 0;
}

.wfqc-cart-item__name {
	font-size: 20px;
	font-weight: 800;
	color: var(--wfqc-text);
	line-height: 1.28;
	margin-bottom: 4px;
}

.wfqc-cart-item__unit-price {
	font-size: 14px;
	color: var(--wfqc-text-soft);
}

.wfqc-cart-item__actions {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 12px;
}

.wfqc-cart-item__subtotal {
	font-size: 18px;
	font-weight: 800;
	color: #111827;
	white-space: nowrap;
}

.wfqc-qty {
	display: inline-flex;
	align-items: center;
	border: 1px solid var(--wfqc-border);
	border-radius: 999px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 2px 10px rgba(16,24,40,0.04);
}

.wfqc-qty__btn {
	width: 42px;
	height: 42px;
	border: 0 !important;
	background: #fff !important;
	color: #111827 !important;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	transition: background var(--wfqc-transition), color var(--wfqc-transition);
}

.wfqc-qty__btn:hover {
	background: #f3f6fb !important;
	color: var(--wfqc-blue) !important;
}

.wfqc-qty__input {
	width: 54px !important;
	height: 42px !important;
	border: 0 !important;
	border-left: 1px solid var(--wfqc-border) !important;
	border-right: 1px solid var(--wfqc-border) !important;
	border-radius: 0 !important;
	text-align: center !important;
	padding: 0 4px !important;
	font-size: 15px !important;
	font-weight: 800 !important;
	box-shadow: none !important;
	background: #fff !important;
}

/* RESUMO */
.wfqc-order-review {
	padding: 22px;
	border: 1px solid var(--wfqc-border);
	border-radius: 20px;
	background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
	box-shadow: var(--wfqc-shadow-sm);
}

.wfqc-summary-box {
	border: 1px solid var(--wfqc-border);
	border-radius: 16px;
	overflow: hidden;
	background: #fff;
}

.wfqc-summary-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 16px;
	padding: 16px 18px;
	border-bottom: 1px solid var(--wfqc-border);
}

.wfqc-summary-row:last-child {
	border-bottom: 0;
}

.wfqc-summary-row--product .wfqc-summary-value,
.wfqc-summary-row--total .wfqc-summary-value {
	font-weight: 800;
}

.wfqc-summary-label {
	font-size: 14px;
	font-weight: 700;
	color: var(--wfqc-text);
}

.wfqc-summary-value {
	font-size: 14px;
	font-weight: 600;
	color: var(--wfqc-text);
	text-align: right;
}

.wfqc-summary-row--total {
	background: #f8fbff;
}

.wfqc-summary-row--total .wfqc-summary-label,
.wfqc-summary-row--total .wfqc-summary-value {
	font-size: 18px;
	font-weight: 800;
}

.wfqc-review-product {
	display: flex;
	flex-direction: column;
	gap: 3px;
	text-align: left;
}

.wfqc-review-product__name {
	font-weight: 700;
	color: var(--wfqc-text);
}

.wfqc-review-product__qty {
	font-size: 13px;
	color: var(--wfqc-text-muted);
}



/* Botão final da área */
.wfqc-payment-section #place_order,
.wfqc-payment-section .button.alt,
.wfqc-payment-section .button,
.wfqc-payment-section .button.checkout-button,
.wfqc-payment-section .wfqc-finish-button {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 56px;
	padding: 14px 24px;
	margin-top: 14px;
	background: linear-gradient(180deg, var(--wfqc-primary-2) 0%, var(--wfqc-primary) 100%) !important;
	color: #fff !important;
	text-decoration: none !important;
	border: 0 !important;
	border-radius: 14px !important;
	font-size: 18px !important;
	font-weight: 800 !important;
	cursor: pointer;
	box-shadow: 0 14px 30px var(--wfqc-primary-shadow);
}

.wfqc-payment-section #place_order::before,
.wfqc-payment-section .button.alt::before,
.wfqc-payment-section .button::before,
.wfqc-payment-section .button.checkout-button::before,
.wfqc-payment-section .wfqc-finish-button::before {
	content: "🔒";
	margin-right: 8px;
	font-size: 15px;
	line-height: 1;
}

/* SELECT2 só do checkout */
.wfqc-modal .wfqc-checkout-fields .select2-container .select2-selection--single {
	height: 54px !important;
	border: 1px solid var(--wfqc-border-strong) !important;
	border-radius: 14px !important;
	background: #fff !important;
	display: flex !important;
	align-items: center !important;
	box-shadow: 0 1px 2px rgba(16,24,40,0.02) !important;
}

.wfqc-modal .wfqc-checkout-fields .select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 52px !important;
	padding-left: 16px !important;
	padding-right: 40px !important;
	color: var(--wfqc-text) !important;
	font-size: 15px !important;
}

.wfqc-modal .wfqc-checkout-fields .select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 52px !important;
	right: 10px !important;
}

.wfqc-modal .wfqc-checkout-fields .select2-container {
	width: 100% !important;
}

/* FRETE TOPO */
.wfqc-top-shipping {
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid var(--wfqc-border);
}

.wfqc-top-shipping__header {
	margin-bottom: 10px;
	font-size: 14px;
	font-weight: 800;
	color: var(--wfqc-text);
}

.wfqc-top-shipping__form {
	display: flex;
	gap: 10px;
}

.wfqc-top-shipping__form input {
	flex: 1;
	min-width: 0;
	height: 48px;
	padding: 0 14px;
	border: 1px solid var(--wfqc-border-strong);
	border-radius: 14px;
	background: #fff;
	font-size: 14px;
}

.wfqc-top-shipping__form button {
	height: 48px;
	padding: 0 18px;
	border: 0;
	border-radius: 14px;
	background: #2968C8;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 8px 20px rgba(41, 104, 200, 0.18);
}

.wfqc-top-shipping__results {
	margin-top: 12px;
}

.wfqc-top-shipping__methods {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.wfqc-top-shipping__method {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 12px;
	border: 1px solid var(--wfqc-border);
	border-radius: 12px;
	background: #fff;
}

.wfqc-top-shipping__method-label {
	font-size: 13px;
	font-weight: 600;
	color: var(--wfqc-text);
}

.wfqc-top-shipping__method-cost {
	font-size: 13px;
	font-weight: 800;
	color: var(--wfqc-primary);
	white-space: nowrap;
}

.wfqc-top-shipping__loading,
.wfqc-top-shipping__error {
	padding: 12px 14px;
	border-radius: 12px;
	font-size: 13px;
}

.wfqc-top-shipping__loading {
	background: #f3f7ff;
	color: #2b5fad;
	border: 1px solid rgba(52,131,250,0.14);
}

.wfqc-top-shipping__error {
	background: rgba(217,45,32,0.05);
	color: #8f1d18;
	border: 1px solid rgba(217,45,32,0.15);
}

/* SMALL DETAILS */
.wfqc-modal .screen-reader-text,
.wfqc-modal .woocommerce-privacy-policy-text {
	font-size: 12px !important;
	color: var(--wfqc-text-muted) !important;
}

.wfqc-modal .woocommerce form .form-row .optional,
.wfqc-modal .optional {
	display: none !important;
}

.wfqc-modal .woocommerce-additional-fields,
.wfqc-modal #order_comments_field {
	display: none !important;
}

/* MOBILE */
@media (max-width: 1024px) {
	.wfqc-grid {
		grid-template-columns: 1fr;
	}

	.wfqc-summary {
		position: static;
	}

	.wfqc-checkout-layout {
		grid-template-columns: 1fr;
	}

	.wfqc-checkout-fields {
		border-right: 0;
		padding-right: 0;
	}

	.wfqc-checkout-review {
		position: static;
	}
}

@media (max-width: 767px) {
	.wfqc-single {
		padding: 20px 10px 32px;
	}

	.wfqc-title {
		font-size: 26px;
	}

	.wfqc-price {
		font-size: 28px;
	}

	.wfqc-installments {
		font-size: 18px;
	}

	.wfqc-description {
		padding: 20px;
	}

	.wfqc-modal__dialog {
		width: calc(100% - 10px);
		max-height: 95vh;
		margin-top: 1.5vh;
		border-radius: 18px;
	}

	.wfqc-modal__content {
		padding: 18px 14px 20px;
	}

	.wfqc-modal .wfqc-checkout-fields {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.wfqc-cart-item {
		grid-template-columns: 56px 1fr;
		padding: 14px;
		border-radius: 16px;
	}

	.wfqc-cart-item__image {
		width: 56px;
		height: 56px;
		border-radius: 12px;
	}

	.wfqc-cart-item__name {
		font-size: 16px;
	}

	.wfqc-cart-item__actions {
		grid-column: 1 / -1;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		margin-top: 2px;
	}

	.wfqc-order-review,
	.wfqc-payment-section,
	.wfqc-cart-top {
		border-radius: 18px;
		padding: 18px;
	}

	.wfqc-payment-section .wc_payment_method > input[type="radio"] {
		top: 25px !important;
		left: 12px !important;
	}

	.wfqc-payment-section .wc_payment_method > label {
		padding: 14px 12px 14px 38px !important;
		font-size: 14px !important;
		min-height: 56px !important;
	}

	.wfqc-payment-section .payment_box {
		padding: 0 12px 12px !important;
	}
}




/* Remove o fundo/borda padrão do WooCommerce da área #payment */
.wfqc-modal #payment,
.wfqc-modal .woocommerce-checkout #payment,
.wfqc-modal #add_payment_method #payment,
.wfqc-modal .woocommerce-cart #payment,
.wfqc-modal .woocommerce-checkout-payment #payment {
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

/* Remove também a caixa interna padrão do WooCommerce */
.wfqc-modal #payment .payment_methods,
.wfqc-modal .woocommerce-checkout #payment .payment_methods,
.wfqc-modal #payment ul.payment_methods,
.wfqc-modal #payment ul.wc_payment_methods {
	background: transparent !important;
	border: 0 !important;
	border-top: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

/* Remove pseudo-elementos/linhas extras de alguns temas */
.wfqc-modal #payment::before,
.wfqc-modal #payment::after,
.wfqc-modal #payment .payment_methods::before,
.wfqc-modal #payment .payment_methods::after,
.wfqc-modal #payment ul.payment_methods::before,
.wfqc-modal #payment ul.payment_methods::after {
	content: none !important;
	display: none !important;
}

.wfqc-secondary-button {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	min-height: 54px !important;
	padding: 14px 24px !important;
	margin-top: 12px !important;
	background: #ffffff !important;
	color: #16181d !important;
	text-decoration: none !important;
	border: 1px solid #d7ddea !important;
	border-radius: 14px !important;
	font-size: 17px !important;
	font-weight: 800 !important;
	line-height: 1.2 !important;
	box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06) !important;
	transition: .2s ease !important;
	cursor: pointer !important;
	white-space: nowrap !important;
	-webkit-appearance: none !important;
	appearance: none !important;
}

.wfqc-secondary-button:hover,
.wfqc-secondary-button:focus,
.wfqc-secondary-button:active {
	background: #f8f9fc !important;
	border-color: #c9d1e3 !important;
	color: #16181d !important;
	text-decoration: none !important;
	outline: none !important;
}

.wfqc-secondary-button:hover {
	transform: translateY(-1px);
}

.wfqc-secondary-button.is-loading {
	pointer-events: none !important;
	opacity: .9 !important;
}

.wfqc-secondary-button .wfqc-secondary-button__text {
	display: inline-block !important;
	color: #16181d !important;
	font-size: 17px !important;
	font-weight: 800 !important;
	line-height: 1.2 !important;
	white-space: nowrap !important;
	visibility: visible !important;
	opacity: 1 !important;
}

.wfqc-secondary-button::before,
.wfqc-secondary-button::after,
.wfqc-secondary-button.is-loading::before,
.wfqc-secondary-button.is-loading::after {
	content: none !important;
	display: none !important;
}

.wfqc-cart-top__footer {
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px solid var(--wfqc-border);
}

.wfqc-add-more-products {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 48px;
	padding: 12px 18px;
	background: #fff;
	border: 1px dashed #cfd7e8;
	border-radius: 14px;
	color: #2b3445;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	transition: .2s ease;
}

.wfqc-add-more-products:hover {
	background: #f8fbff;
	border-color: #b9c7e2;
	color: #111827;
}

.wfqc-cart-item__meta {
	margin-top: 6px;
	font-size: 13px;
	line-height: 1.4;
	color: #5f6b7a;
}

.wfqc-cart-item__meta dl {
	margin: 0;
}

.wfqc-cart-item__meta dt,
.wfqc-cart-item__meta dd {
	display: inline;
	margin: 0;
}

.wfqc-cart-item__meta dt {
	font-weight: 700;
	color: #2b3445;
}

.wfqc-cart-item__meta dd {
	margin-left: 4px;
	margin-right: 10px;
}


.wfqc-side-cart {
	position: fixed;
	top: 50%;
	right: 18px;
	transform: translateY(-50%);
	z-index: 9998;
}

.wfqc-side-cart__button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	padding: 0;
	border: 1px solid #dbe3f0;
	border-radius: 999px;
	background: #ffffff;
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
	cursor: pointer;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.wfqc-side-cart__button:hover {
	transform: translateY(-2px);
	border-color: #c8d4e8;
	box-shadow: 0 22px 50px rgba(15, 23, 42, 0.18);
}

.wfqc-side-cart__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	line-height: 1;
}

.wfqc-side-cart__label {
	display: none;
}

.wfqc-side-cart__count {
	position: absolute;
	top: -6px;
	right: -6px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 26px;
	height: 26px;
	padding: 0 6px;
	border: 3px solid #ffffff;
	border-radius: 999px;
	background: #10c257;
	color: #ffffff;
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
	box-shadow: 0 8px 18px rgba(16, 194, 87, 0.28);
}

@media (max-width: 767px) {
	.wfqc-side-cart {
		top: auto;
		right: 14px;
		bottom: 18px;
		transform: none;
	}

	.wfqc-side-cart__button {
		width: 60px;
		height: 60px;
		border-radius: 999px;
	}

	.wfqc-side-cart__count {
		top: -4px;
		right: -4px;
		min-width: 24px;
		height: 24px;
		font-size: 11px;
	}
}



.wfqc-step {
	display: none;
}

.wfqc-step.is-active {
	display: block;
}

.wfqc-steps-nav {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
	margin-bottom: 20px;
}

.wfqc-step-indicator {
	padding: 12px 14px;
	border: 1px solid #d9dfeb;
	border-radius: 14px;
	background: #fff;
	font-weight: 700;
	font-size: 14px;
	text-align: center;
	color: #6b7280;
	transition: .2s ease;
}

.wfqc-step-indicator.is-active {
	background: #12c45b;
	border-color: #12c45b;
	color: #fff;
}

.wfqc-step-indicator.is-done {
	background: #eefaf3;
	border-color: #9dd9b0;
	color: #159947;
}

.wfqc-step-actions {
	display: flex;
	gap: 12px;
	margin-top: 20px;
	flex-wrap: wrap;
}

.wfqc-checkout-fields--step1,
.wfqc-checkout-fields--step2,
.wfqc-checkout-layout--final {
	padding: 0;
	background: transparent;
	border: 0;
}

@media (max-width: 767px) {
	.wfqc-steps-nav {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ==========================================
   THANK YOU / PEDIDO RECEBIDO - PREMIUM
========================================== */

.wfqc-thankyou {
	padding: 12px 4px 8px;
	color: #1f2937;
}

/* HERO */
.wfqc-thankyou__hero {
	text-align: center;
	margin-bottom: 26px;
}

.wfqc-thankyou__icon {
	width: 84px;
	height: 84px;
	margin: 0 auto 16px;
	border-radius: 999px;
	background: linear-gradient(180deg, #eafaf0 0%, #dcfce7 100%);
	color: #16a34a;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 40px;
	font-weight: 800;
	box-shadow: 0 12px 30px rgba(22, 163, 74, 0.12);
}

.wfqc-thankyou__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 14px;
	border-radius: 999px;
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	color: #15803d;
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 14px;
}

.wfqc-thankyou__title {
	margin: 0 0 10px;
	font-size: 34px;
	line-height: 1.1;
	font-weight: 800;
	color: #111827;
}

.wfqc-thankyou__subtitle {
	margin: 0 auto;
	max-width: 720px;
	font-size: 15px;
	line-height: 1.7;
	color: #6b7280;
}

/* SUMMARY */
.wfqc-thankyou__summary {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin: 0 0 28px;
}

.wfqc-thankyou__summary-item {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 18px;
	padding: 16px 18px;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.wfqc-thankyou__summary-item--full {
	grid-column: 1 / -1;
}

.wfqc-thankyou__summary-label {
	display: block;
	font-size: 13px;
	line-height: 1.4;
	font-weight: 600;
	color: #6b7280;
	margin-bottom: 6px;
}

.wfqc-thankyou__summary-value {
	display: block;
	font-size: 17px;
	line-height: 1.5;
	font-weight: 800;
	color: #111827;
	word-break: break-word;
}

/* SECTIONS */
.wfqc-thankyou__section {
	margin-bottom: 28px;
}

.wfqc-thankyou__section-title {
	margin: 0 0 14px;
	font-size: 24px;
	line-height: 1.2;
	font-weight: 800;
	color: #111827;
}

/* PRODUCTS */
.wfqc-thankyou-products {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.wfqc-thankyou-product {
	display: flex;
	align-items: center;
	gap: 14px;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 18px;
	padding: 14px;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.wfqc-thankyou-product__image {
	width: 72px;
	min-width: 72px;
	height: 72px;
	border-radius: 14px;
	overflow: hidden;
	background: #f8fafc;
	border: 1px solid #e5e7eb;
}

.wfqc-thankyou-product__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.wfqc-thankyou-product__content {
	flex: 1;
	min-width: 0;
	text-align: left;
}

.wfqc-thankyou-product__name {
	font-size: 16px;
	line-height: 1.4;
	font-weight: 800;
	color: #111827;
	margin-bottom: 6px;
}

.wfqc-thankyou-product__name a {
	color: #111827;
	text-decoration: none;
}

.wfqc-thankyou-product__name a:hover {
	color: #16a34a;
}

.wfqc-thankyou-product__meta {
	font-size: 13px;
	line-height: 1.6;
	color: #6b7280;
	margin-bottom: 6px;
}

.wfqc-thankyou-product__meta p {
	margin: 0;
}

.wfqc-thankyou-product__qty {
	font-size: 13px;
	line-height: 1.5;
	color: #6b7280;
}

.wfqc-thankyou-product__total {
	font-size: 18px;
	line-height: 1.3;
	font-weight: 800;
	color: #111827;
	white-space: nowrap;
}

/* TOTALS */
.wfqc-thankyou-totals {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.wfqc-thankyou-totals__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 16px 18px;
	border-bottom: 1px solid #e5e7eb;
}

.wfqc-thankyou-totals__row:last-child {
	border-bottom: 0;
}

.wfqc-thankyou-totals__row.is-total {
	background: #f8fafc;
}

.wfqc-thankyou-totals__label {
	font-size: 15px;
	line-height: 1.4;
	font-weight: 600;
	color: #374151;
}

.wfqc-thankyou-totals__value {
	font-size: 16px;
	line-height: 1.4;
	font-weight: 800;
	color: #111827;
	text-align: right;
}

/* ADDRESSES */
.wfqc-thankyou__addresses {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin-bottom: 28px;
}

.wfqc-thankyou-address__title {
	margin: 0 0 12px;
	font-size: 22px;
	line-height: 1.2;
	font-weight: 800;
	color: #111827;
	text-align: left;
}

.wfqc-thankyou-address__card {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 18px;
	padding: 18px;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
	font-size: 15px;
	line-height: 1.8;
	color: #374151;
	text-align: left;
	word-break: break-word;
}

.wfqc-thankyou-address__card p {
	margin: 0 0 10px;
}

.wfqc-thankyou-address__card p:last-child {
	margin-bottom: 0;
}

/* ACTIONS */
.wfqc-thankyou__actions {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-top: 8px;
}

.wfqc-thankyou__actions .wfqc-button,
.wfqc-thankyou__actions .wfqc-secondary-button {
	width: 100%;
	justify-content: center;
	text-align: center;
	text-decoration: none;
}

/* ==========================================
   FALLBACK PARA CASO AINDA ENTRE CSS/HTML
   PADRÃO DO WOOCOMMERCE
========================================== */

.wfqc-thankyou .woocommerce-order-details,
.wfqc-thankyou .woocommerce-customer-details {
	margin: 0 0 24px;
}

.wfqc-thankyou .woocommerce-order-details__title,
.wfqc-thankyou .woocommerce-column__title,
.wfqc-thankyou__details h2,
.wfqc-thankyou__details h3 {
	margin: 0 0 14px;
	font-size: 22px;
	line-height: 1.2;
	font-weight: 800;
	color: #111827;
	text-align: left;
}

.wfqc-thankyou .shop_table,
.wfqc-thankyou table.woocommerce-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
	margin: 0;
}

.wfqc-thankyou .shop_table thead th,
.wfqc-thankyou table.woocommerce-table thead th {
	background: #f8fafc;
	color: #111827;
	font-size: 14px;
	font-weight: 700;
	padding: 16px 18px;
	border-bottom: 1px solid #e5e7eb;
	text-align: left;
}

.wfqc-thankyou .shop_table tbody td,
.wfqc-thankyou .shop_table tbody th,
.wfqc-thankyou .shop_table tfoot td,
.wfqc-thankyou .shop_table tfoot th,
.wfqc-thankyou table.woocommerce-table tbody td,
.wfqc-thankyou table.woocommerce-table tbody th,
.wfqc-thankyou table.woocommerce-table tfoot td,
.wfqc-thankyou table.woocommerce-table tfoot th {
	padding: 16px 18px;
	border-bottom: 1px solid #e5e7eb;
	font-size: 15px;
	line-height: 1.5;
	vertical-align: middle;
	background: #ffffff;
	color: #374151;
}

.wfqc-thankyou .shop_table tbody tr:last-child td,
.wfqc-thankyou .shop_table tbody tr:last-child th,
.wfqc-thankyou .shop_table tfoot tr:last-child td,
.wfqc-thankyou .shop_table tfoot tr:last-child th,
.wfqc-thankyou table.woocommerce-table tbody tr:last-child td,
.wfqc-thankyou table.woocommerce-table tbody tr:last-child th,
.wfqc-thankyou table.woocommerce-table tfoot tr:last-child td,
.wfqc-thankyou table.woocommerce-table tfoot tr:last-child th {
	border-bottom: 0;
}

.wfqc-thankyou .shop_table td.product-name,
.wfqc-thankyou .shop_table th.product-name {
	font-weight: 700;
	color: #111827;
}

.wfqc-thankyou .shop_table td.product-total,
.wfqc-thankyou .shop_table th.product-total,
.wfqc-thankyou .shop_table tfoot td,
.wfqc-thankyou .shop_table tfoot th {
	color: #111827;
	font-weight: 700;
}

.wfqc-thankyou .shop_table a {
	color: #111827;
	text-decoration: none;
	font-weight: 700;
}

.wfqc-thankyou .shop_table a:hover {
	color: #16a34a;
}

.wfqc-thankyou .product-quantity {
	font-weight: 700;
	color: #6b7280;
}

.wfqc-thankyou .shop_table tfoot tr:last-child th,
.wfqc-thankyou .shop_table tfoot tr:last-child td {
	font-size: 18px;
	font-weight: 800;
	color: #111827;
	background: #f9fafb;
}

.wfqc-thankyou .woocommerce-columns {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.wfqc-thankyou .woocommerce-column {
	margin: 0;
}

.wfqc-thankyou address {
	margin: 0;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 18px;
	padding: 18px;
	font-style: normal;
	font-size: 15px;
	line-height: 1.8;
	color: #374151;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
	word-break: break-word;
}

.wfqc-thankyou address p {
	margin: 0 0 10px;
}

.wfqc-thankyou address p:last-child {
	margin-bottom: 0;
}

.wfqc-thankyou .woocommerce-customer-details .woocommerce-customer-details--phone,
.wfqc-thankyou .woocommerce-customer-details .woocommerce-customer-details--email {
	display: block;
	margin-top: 8px;
	color: #374151;
	font-weight: 500;
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {
	.wfqc-thankyou {
		padding: 6px 0 4px;
	}

	.wfqc-thankyou__icon {
		width: 72px;
		height: 72px;
		font-size: 34px;
		margin-bottom: 14px;
	}

	.wfqc-thankyou__badge {
		font-size: 12px;
		padding: 7px 12px;
		margin-bottom: 12px;
	}

	.wfqc-thankyou__title {
		font-size: 27px;
	}

	.wfqc-thankyou__subtitle {
		font-size: 14px;
		line-height: 1.6;
	}

	.wfqc-thankyou__summary {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.wfqc-thankyou__summary-item {
		padding: 14px;
	}

	.wfqc-thankyou__summary-value {
		font-size: 15px;
	}

	.wfqc-thankyou__section-title,
	.wfqc-thankyou .woocommerce-order-details__title,
	.wfqc-thankyou .woocommerce-column__title,
	.wfqc-thankyou__details h2,
	.wfqc-thankyou__details h3 {
		font-size: 18px;
	}

	.wfqc-thankyou-product {
		align-items: flex-start;
		padding: 12px;
	}

	.wfqc-thankyou-product__image {
		width: 60px;
		min-width: 60px;
		height: 60px;
	}

	.wfqc-thankyou-product__name {
		font-size: 15px;
	}

	.wfqc-thankyou-product__meta,
	.wfqc-thankyou-product__qty {
		font-size: 12px;
	}

	.wfqc-thankyou-product__total {
		font-size: 15px;
	}

	.wfqc-thankyou-totals__row {
		padding: 14px;
	}

	.wfqc-thankyou-totals__label {
		font-size: 14px;
	}

	.wfqc-thankyou-totals__value {
		font-size: 14px;
	}

	.wfqc-thankyou__addresses,
	.wfqc-thankyou .woocommerce-columns {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.wfqc-thankyou-address__title {
		font-size: 18px;
	}

	.wfqc-thankyou-address__card,
	.wfqc-thankyou address {
		padding: 14px;
		font-size: 14px;
		line-height: 1.7;
	}

	.wfqc-thankyou .shop_table,
	.wfqc-thankyou table.woocommerce-table {
		display: block;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.wfqc-thankyou .shop_table thead th,
	.wfqc-thankyou table.woocommerce-table thead th,
	.wfqc-thankyou .shop_table tbody td,
	.wfqc-thankyou .shop_table tbody th,
	.wfqc-thankyou .shop_table tfoot td,
	.wfqc-thankyou .shop_table tfoot th {
		padding: 12px 14px;
		font-size: 14px;
	}
}


/* =========================================================
   SINGLE PRODUCT - BLOCOS EXTRAS DO RESUMO
   Adicionar no FINAL do CSS
   ========================================================= */

.wfqc-payment-note {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: -2px;
	font-size: 14px;
	line-height: 1.5;
	color: #2968C8;
	font-weight: 500;
}

.wfqc-payment-note__icon {
	flex: 0 0 auto;
	font-size: 14px;
	line-height: 1;
}

.wfqc-payment-note__text {
	display: inline-block;
}

/* box frete informativo */
.wfqc-shipping-box {
	margin-top: 2px;
	padding: 18px 18px 16px;
	background: #f8f9fc;
	border: 1px solid var(--wfqc-border);
	border-radius: 16px;
}

.wfqc-shipping-box__title {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 8px;
	font-size: 15px;
	line-height: 1.3;
	font-weight: 800;
	color: var(--wfqc-primary);
}

.wfqc-shipping-box__icon {
	flex: 0 0 auto;
	font-size: 15px;
	line-height: 1;
}

.wfqc-shipping-box__text {
	font-size: 14px;
	line-height: 1.6;
	color: var(--wfqc-text-soft);
}

/* mantém o mesmo estilo do bloco de frete já existente */
.wfqc-top-shipping--product {
	margin-top: 10px;
	padding-top: 10px;
	border-top: 0;
}

.wfqc-top-shipping--product .wfqc-top-shipping__header {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 10px;
	font-size: 14px;
	font-weight: 800;
	color: var(--wfqc-text);
}

.wfqc-top-shipping--product .wfqc-top-shipping__form {
	display: flex;
	gap: 10px;
	align-items: stretch;
}

.wfqc-top-shipping--product .wfqc-top-shipping__input {
	flex: 1;
	min-width: 0;
	height: 48px;
	padding: 0 14px;
	border: 1px solid var(--wfqc-border-strong);
	border-radius: 14px;
	background: #fff;
	font-size: 14px;
	color: var(--wfqc-text);
	box-shadow: 0 1px 2px rgba(16,24,40,0.02);
}

.wfqc-top-shipping--product .wfqc-top-shipping__input:focus {
	outline: none;
	border-color: rgba(52,131,250,0.78);
	box-shadow: 0 0 0 4px rgba(52,131,250,0.10);
}

.wfqc-top-shipping--product .wfqc-top-shipping__button {
	height: 48px;
	padding: 0 18px;
	border: 0;
	border-radius: 14px;
	background: #2968C8;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 8px 20px rgba(41, 104, 200, 0.18);
	transition: .2s ease;
}

.wfqc-top-shipping--product .wfqc-top-shipping__button:hover {
	filter: brightness(.98);
	transform: translateY(-1px);
}

.wfqc-top-shipping--product .wfqc-top-shipping__help {
	margin-top: 8px;
	font-size: 13px;
	line-height: 1.5;
	color: var(--wfqc-text-soft);
}

/* =========================================================
   BENEFÍCIOS ABAIXO DA GALERIA/DESCRIÇÃO
   ========================================================= */

.wfqc-benefits-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	margin-top: 24px;
}

.wfqc-benefit-card {
	background: var(--wfqc-surface);
	border: 1px solid var(--wfqc-border);
	border-radius: var(--wfqc-radius-md);
	padding: 24px;
	box-shadow: var(--wfqc-shadow-sm);
	min-width: 0;
}

.wfqc-benefit-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	margin-bottom: 12px;
	font-size: 18px;
	line-height: 1;
}

.wfqc-benefit-card__content {
	min-width: 0;
}

.wfqc-benefit-card__title {
	margin: 0 0 10px;
	font-size: 18px;
	line-height: 1.3;
	font-weight: 800;
	color: var(--wfqc-text);
}

.wfqc-benefit-card__text {
	margin: 0;
	font-size: 15px;
	line-height: 1.7;
	color: var(--wfqc-text-soft);
}

/* =========================================================
   AJUSTES RESPONSIVOS DOS NOVOS BLOCOS
   ========================================================= */

@media (max-width: 1100px) {
	.wfqc-benefits-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.wfqc-payment-note {
		font-size: 13px;
	}

	.wfqc-shipping-box {
		padding: 16px 14px 14px;
		border-radius: 14px;
	}

	.wfqc-shipping-box__title {
		font-size: 14px;
	}

	.wfqc-shipping-box__text,
	.wfqc-top-shipping--product .wfqc-top-shipping__help {
		font-size: 13px;
	}

	.wfqc-top-shipping--product .wfqc-top-shipping__form {
		flex-direction: row;
	}

	.wfqc-benefits-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.wfqc-benefit-card {
		padding: 18px;
		border-radius: 18px;
	}

	.wfqc-benefit-card__title {
		font-size: 17px;
	}

	.wfqc-benefit-card__text {
		font-size: 14px;
		line-height: 1.65;
	}
}

/* ==========================================
   BLOCO DE CONFIANÇA / GATEWAYS
   VISUAL MAIS LIMPO, SEM BORDAS PESADAS
========================================== */

.wfqc-security-proof {
	margin: 8px 0 14px;
	padding: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
}

.wfqc-security-proof__top {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 10px;
}

.wfqc-security-proof__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	min-width: 28px;
	border-radius: 999px;
	background: rgba(0, 166, 80, 0.10);
	color: var(--wfqc-primary);
	font-size: 14px;
	line-height: 1;
	margin-top: 2px;
}

.wfqc-security-proof__text {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.wfqc-security-proof__text strong {
	font-size: 14px;
	line-height: 1.25;
	font-weight: 700;
	color: var(--wfqc-text);
}

.wfqc-security-proof__text span {
	font-size: 13px;
	line-height: 1.45;
	color: var(--wfqc-text-soft);
}

/* linha das logos */
.wfqc-security-proof__brands {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 10px 0 8px;
	padding-left: 38px;
	flex-wrap: wrap;
}

.wfqc-security-proof__brand {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
	min-height: auto;
}

.wfqc-security-proof__logo {
	display: block;
	width: auto;
	height: auto;
	max-height: 22px;
	max-width: 120px;
	object-fit: contain;
}

/* separador suave entre marcas */
.wfqc-security-proof__connector {
	position: relative;
	width: 18px;
	height: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 18px;
}

.wfqc-security-proof__connector::before {
	content: "";
	width: 18px;
	height: 1px;
	background: #d8dde8;
	display: block;
}

.wfqc-security-proof__connector span {
	display: none;
}

/* rodapé leve */
.wfqc-security-proof__footer {
	padding-left: 38px;
	font-size: 12px;
	line-height: 1.5;
	color: var(--wfqc-text-muted);
}

/* variação ainda mais clean se quiser usar no topo */
.wfqc-payment-note {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 8px 0 14px;
	font-size: 14px;
	line-height: 1.4;
	color: #2f6fdf;
	font-weight: 600;
}

.wfqc-payment-note__icon {
	font-size: 14px;
	line-height: 1;
	opacity: .9;
}

.wfqc-payment-note__text {
	color: #2f6fdf;
}

/* mobile */
@media (max-width: 767px) {
	.wfqc-security-proof {
		margin: 8px 0 12px;
	}

	.wfqc-security-proof__top {
		align-items: flex-start;
	}

	.wfqc-security-proof__brands {
		padding-left: 38px;
		gap: 8px;
	}

	.wfqc-security-proof__logo {
		max-height: 20px;
		max-width: 104px;
	}

	.wfqc-security-proof__footer {
		padding-left: 38px;
		font-size: 11px;
	}

	.wfqc-payment-note {
		font-size: 13px;
	}
}

/* ==========================================
   VARIAÇÕES DO PRODUTO - VISUAL PREMIUM
========================================== */

.wfqc-variations-form {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 4px;
}

.wfqc-variation-field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.wfqc-variation-label {
	display: block;
	margin: 0;
	font-size: 14px;
	line-height: 1.35;
	font-weight: 700;
	color: #2b3445;
	letter-spacing: .1px;
}

.wfqc-variation-select {
	appearance: none !important;
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	display: block !important;
	width: 100% !important;
	min-width: 0 !important;
	height: 56px !important;
	padding: 0 50px 0 16px !important;
	margin: 0 !important;
	border: 1px solid #d7ddea !important;
	border-radius: 14px !important;
	background-color: #ffffff !important;
	background-image:
		linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(248,250,252,.65) 100%),
		url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'><path d='M5 7.5L10 12.5L15 7.5' stroke='%23667285' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>");
	background-repeat: no-repeat, no-repeat !important;
	background-position: center, right 16px center !important;
	background-size: auto, 18px !important;
	box-shadow: 0 1px 2px rgba(16,24,40,.03), 0 8px 18px rgba(16,24,40,.04) !important;
	color: #16181d !important;
	font-size: 15px !important;
	font-weight: 600 !important;
	line-height: 1 !important;
	cursor: pointer !important;
	outline: none !important;
	transition:
		border-color .2s ease,
		box-shadow .2s ease,
		transform .15s ease,
		background-color .2s ease !important;
}

.wfqc-variation-select:hover {
	border-color: #c7d2e3 !important;
	background-color: #ffffff !important;
	box-shadow: 0 3px 12px rgba(16,24,40,.06) !important;
}

.wfqc-variation-select:focus {
	border-color: rgba(52,131,250,.78) !important;
	box-shadow:
		0 0 0 4px rgba(52,131,250,.10),
		0 10px 22px rgba(52,131,250,.08) !important;
	background-color: #ffffff !important;
}

.wfqc-variation-select:active {
	transform: translateY(1px);
}

.wfqc-variation-select option {
	color: #16181d;
	background: #ffffff;
	font-weight: 500;
}

.wfqc-variation-select:invalid,
.wfqc-variation-select option[value=""] {
	color: #8a91a1;
}

/* opcional: deixa o campo vazio com visual mais elegante */
.wfqc-variation-select:not([multiple]):not([size]) {
	padding-right: 50px !important;
}

/* melhora espaçamento entre select e botões */
.wfqc-variations-form .wfqc-button,
.wfqc-variations-form .wfqc-secondary-button {
	margin-top: 2px !important;
}

/* mobile */
@media (max-width: 767px) {
	.wfqc-variation-label {
		font-size: 13px;
	}

	.wfqc-variation-select {
		height: 52px !important;
		padding: 0 46px 0 14px !important;
		font-size: 14px !important;
		border-radius: 13px !important;
		background-position: center, right 14px center !important;
	}
}

.wfqc-thankyou__section--gateway {
	margin-bottom: 28px;
}

.wfqc-thankyou-gateway {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 18px;
	padding: 20px;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
	overflow-x: auto;
}

.wfqc-thankyou-gateway * {
	max-width: 100%;
}

.wfqc-thankyou-gateway img {
	max-width: 100%;
	height: auto;
	display: block;
}

.wfqc-thankyou-gateway iframe {
	max-width: 100%;
}

.wfqc-thankyou-gateway a {
	word-break: break-word;
}


/* =========================================================
   CHECKOUT EM PÁGINA REAL
   ========================================================= */

.wfqc-checkout-page {
	position: relative;
	width: min(1280px, calc(100vw - 40px));
	margin-left: 50%;
	transform: translateX(-50%);
	padding: 0;
	background: transparent;
}

.wfqc-checkout-page .wfqc-container {
	max-width: none;
	width: 100%;
	margin: 0;
}

.wfqc-checkout-shell {
	background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
	border: 1px solid var(--wfqc-border);
	border-radius: 26px;
	box-shadow: var(--wfqc-shadow-lg);
	padding: 26px;
	overflow: hidden;
}

.wfqc-checkout-page .woocommerce,
.wfqc-checkout-page .woocommerce form,
.wfqc-checkout-page .woocommerce-checkout,
.wfqc-checkout-page .woocommerce-checkout form {
	margin: 0 !important;
	padding: 0 !important;
	width: 100% !important;
	max-width: none !important;
	float: none !important;
}

.wfqc-checkout-page .woocommerce form .form-row::before,
.wfqc-checkout-page .woocommerce form .form-row::after,
.wfqc-checkout-page form.checkout.woocommerce-checkout::before,
.wfqc-checkout-page form.checkout.woocommerce-checkout::after,
.wfqc-checkout-page .wfqc-checkout-fields::before,
.wfqc-checkout-page .wfqc-checkout-fields::after {
	content: "" !important;
	display: table !important;
	clear: both !important;
}

.wfqc-checkout-page .woocommerce form .form-row,
.wfqc-checkout-page .woocommerce-page form .form-row,
.wfqc-checkout-page .woocommerce form .form-row-first,
.wfqc-checkout-page .woocommerce form .form-row-last,
.wfqc-checkout-page .woocommerce-page form .form-row-first,
.wfqc-checkout-page .woocommerce-page form .form-row-last,
.wfqc-checkout-page .woocommerce form .form-row-wide,
.wfqc-checkout-page p.form-row,
.wfqc-checkout-page p.form-row-first,
.wfqc-checkout-page p.form-row-last,
.wfqc-checkout-page p.form-row-wide {
	margin: 0 !important;
	padding: 0 !important;
	float: none !important;
	width: 100% !important;
	max-width: 100% !important;
	min-width: 0 !important;
	position: relative !important;
	left: auto !important;
	right: auto !important;
	clear: none !important;
}

.wfqc-checkout-page .woocommerce form .form-row label,
.wfqc-checkout-page .woocommerce-page form .form-row label,
.wfqc-checkout-page p.form-row label {
	display: block !important;
	float: none !important;
	width: auto !important;
	margin: 0 0 8px !important;
	padding: 5px !important;
	line-height: 1.35 !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	color: #2a3140 !important;
}

.wfqc-checkout-page .woocommerce-input-wrapper,
.wfqc-checkout-page .select2-container,
.wfqc-checkout-page .woocommerce form .form-row .input-text,
.wfqc-checkout-page .woocommerce-page form .form-row .input-text,
.wfqc-checkout-page .woocommerce form .form-row select,
.wfqc-checkout-page .woocommerce form .form-row textarea {
	width: 100% !important;
	max-width: 100% !important;
}

.wfqc-checkout-page .woocommerce-error,
.wfqc-checkout-page .woocommerce-info,
.wfqc-checkout-page .woocommerce-message {
	margin: 0 0 18px !important;
	border-radius: 14px !important;
}

.wfqc-checkout-page .woocommerce form .form-row .required {
	color: var(--wfqc-danger) !important;
	font-weight: 700 !important;
	border: 0 !important;
	text-decoration: none !important;
}

.wfqc-checkout-page .woocommerce form .form-row .optional,
.wfqc-checkout-page .optional {
	display: none !important;
}

.wfqc-checkout-page .woocommerce-additional-fields,
.wfqc-checkout-page #order_comments_field {
	display: none !important;
}

/* steps */
.wfqc-checkout-page .wfqc-step {
	display: none;
}

.wfqc-checkout-page .wfqc-step.is-active {
	display: block;
}

.wfqc-checkout-page .wfqc-steps-nav {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin-bottom: 20px;
}

.wfqc-checkout-page .wfqc-step-indicator {
	padding: 14px 16px;
	border: 1px solid #d9dfeb;
	border-radius: 14px;
	background: #fff;
	font-weight: 700;
	font-size: 14px;
	text-align: center;
	color: #6b7280;
	transition: .2s ease;
	cursor: pointer;
	user-select: none;
}

.wfqc-checkout-page .wfqc-step-indicator.is-active {
	background: #12c45b;
	border-color: #12c45b;
	color: #fff;
}

.wfqc-checkout-page .wfqc-step-indicator.is-done {
	background: #eefaf3;
	border-color: #9dd9b0;
	color: #159947;
}

.wfqc-checkout-page .wfqc-step-actions {
	display: flex;
	gap: 12px;
	margin-top: 20px;
	flex-wrap: wrap;
}

/* campos */
.wfqc-checkout-page .wfqc-checkout-fields {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px 18px;
	align-items: start;
	border-right: 1px solid var(--wfqc-border);
	padding-right: 24px;
}

.wfqc-checkout-page .wfqc-checkout-fields > h3 {
	grid-column: 1 / -1;
	margin: 0 0 18px !important;
	font-size: 18px !important;
	line-height: 1.25 !important;
	font-weight: 800 !important;
	color: var(--wfqc-text) !important;
}

.wfqc-checkout-page .wfqc-checkout-fields .form-row-wide,
.wfqc-checkout-page .wfqc-checkout-fields .form-row.address-field,
.wfqc-checkout-page .wfqc-checkout-fields .form-row.notes,
.wfqc-checkout-page .wfqc-checkout-fields #billing_persontype_field,
.wfqc-checkout-page .wfqc-checkout-fields #billing_country_field,
.wfqc-checkout-page .wfqc-checkout-fields #billing_address_2_field,
.wfqc-checkout-page .wfqc-checkout-fields #billing_email_field,
.wfqc-checkout-page .wfqc-checkout-fields #billing_phone_field {
	grid-column: 1 / -1;
}

.wfqc-checkout-page .wfqc-checkout-fields input.input-text,
.wfqc-checkout-page .wfqc-checkout-fields textarea,
.wfqc-checkout-page .wfqc-checkout-fields select,
.wfqc-checkout-page .wfqc-checkout-fields input[type="text"],
.wfqc-checkout-page .wfqc-checkout-fields input[type="tel"],
.wfqc-checkout-page .wfqc-checkout-fields input[type="email"],
.wfqc-checkout-page .wfqc-checkout-fields input[type="number"],
.wfqc-checkout-page .wfqc-checkout-fields input[type="password"] {
	appearance: none !important;
	-webkit-appearance: none !important;
	width: 100% !important;
	min-width: 0 !important;
	height: 54px !important;
	padding: 0 16px !important;
	margin: 0 !important;
	border: 1px solid var(--wfqc-border-strong) !important;
	border-radius: 14px !important;
	background: #fff !important;
	color: var(--wfqc-text) !important;
	font-size: 15px !important;
	font-weight: 500 !important;
	line-height: 1 !important;
	box-shadow: 0 1px 2px rgba(16,24,40,0.02) !important;
	transition: border-color var(--wfqc-transition), box-shadow var(--wfqc-transition), background var(--wfqc-transition) !important;
}

.wfqc-checkout-page .wfqc-checkout-fields textarea {
	height: 110px !important;
	padding: 14px 16px !important;
	line-height: 1.45 !important;
	resize: vertical !important;
}

.wfqc-checkout-page .wfqc-checkout-fields input:focus,
.wfqc-checkout-page .wfqc-checkout-fields select:focus,
.wfqc-checkout-page .wfqc-checkout-fields textarea:focus {
	outline: none !important;
	border-color: rgba(52,131,250,0.78) !important;
	box-shadow: 0 0 0 4px rgba(52,131,250,0.10) !important;
	background: #fff !important;
}

.wfqc-checkout-page .wfqc-checkout-fields input::placeholder,
.wfqc-checkout-page .wfqc-checkout-fields textarea::placeholder {
	color: #98a2b3 !important;
	opacity: 1 !important;
}

/* selectWoo */
.wfqc-checkout-page .select2-container {
	width: 100% !important;
}

.wfqc-checkout-page .select2-container .select2-selection--single {
	height: 54px !important;
	border: 1px solid var(--wfqc-border-strong) !important;
	border-radius: 14px !important;
	background: #fff !important;
	display: flex !important;
	align-items: center !important;
	box-shadow: 0 1px 2px rgba(16,24,40,0.02) !important;
}

.wfqc-checkout-page .select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 52px !important;
	padding-left: 16px !important;
	padding-right: 40px !important;
	color: var(--wfqc-text) !important;
	font-size: 15px !important;
}

.wfqc-checkout-page .select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 52px !important;
	right: 10px !important;
}

/* layout final */
.wfqc-checkout-page .wfqc-checkout-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.55fr) minmax(360px, 430px);
	gap: 28px;
	align-items: start;
}

.wfqc-checkout-page .wfqc-checkout-fields--step1,
.wfqc-checkout-page .wfqc-checkout-fields--step2,
.wfqc-checkout-page .wfqc-checkout-layout--final {
	padding: 0;
	background: transparent;
	border: 0;
}

.wfqc-checkout-page .wfqc-checkout-fields--payment {
	border-right: 1px solid var(--wfqc-border);
	padding-right: 24px;
}

.wfqc-checkout-page .wfqc-checkout-review {
	position: sticky;
	top: 20px;
}

/* cards de review */
.wfqc-checkout-page .wfqc-order-review,
.wfqc-checkout-page .wfqc-payment-section {
	padding: 22px;
	border: 1px solid var(--wfqc-border);
	border-radius: 20px;
	background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
	box-shadow: var(--wfqc-shadow-sm);
}

.wfqc-checkout-page .wfqc-order-review h3,
.wfqc-checkout-page .wfqc-payment-section h3 {
	margin: 0 0 18px !important;
	font-size: 18px !important;
	line-height: 1.25 !important;
	font-weight: 800 !important;
	color: var(--wfqc-text) !important;
}

/* resumo */
.wfqc-checkout-page .wfqc-summary-box {
	border: 1px solid var(--wfqc-border);
	border-radius: 16px;
	overflow: hidden;
	background: #fff;
}

.wfqc-checkout-page .wfqc-summary-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 16px;
	padding: 16px 18px;
	border-bottom: 1px solid var(--wfqc-border);
}

.wfqc-checkout-page .wfqc-summary-row:last-child {
	border-bottom: 0;
}

.wfqc-checkout-page .wfqc-summary-label {
	font-size: 14px;
	font-weight: 700;
	color: var(--wfqc-text);
}

.wfqc-checkout-page .wfqc-summary-value {
	font-size: 14px;
	font-weight: 600;
	color: var(--wfqc-text);
	text-align: right;
}

/* payment */
.wfqc-checkout-page #payment,
.wfqc-checkout-page .woocommerce-checkout #payment,
.wfqc-checkout-page .woocommerce-checkout-payment #payment {
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

.wfqc-checkout-page #payment::before,
.wfqc-checkout-page #payment::after,
.wfqc-checkout-page #payment .payment_methods::before,
.wfqc-checkout-page #payment .payment_methods::after,
.wfqc-checkout-page #payment ul.payment_methods::before,
.wfqc-checkout-page #payment ul.payment_methods::after {
	content: none !important;
	display: none !important;
}

.wfqc-checkout-page #payment .payment_methods,
.wfqc-checkout-page #payment ul.payment_methods,
.wfqc-checkout-page #payment ul.wc_payment_methods {
	background: transparent !important;
	border: 0 !important;
	border-top: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	padding: 0 !important;
	margin: 0 !important;
	list-style: none !important;
}

.wfqc-checkout-page .wc_payment_method {
	display: block !important;
	margin: 0 0 14px !important;
	padding: 0 !important;
	list-style: none !important;
	border: 1px solid var(--wfqc-border) !important;
	border-radius: 16px !important;
	background: #f6f6fb !important;
	overflow: visible !important;
	position: relative !important;
	box-shadow: none !important;
}

.wfqc-checkout-page .wc_payment_method:last-child {
	margin-bottom: 0 !important;
}

.wfqc-checkout-page .wc_payment_method > input[type="radio"] {
	position: absolute !important;
	top: 24px !important;
	left: 14px !important;
	margin: 0 !important;
	float: none !important;
	z-index: 3 !important;
	accent-color: var(--wfqc-primary);
}

.wfqc-checkout-page .wc_payment_method > label {
	display: block !important;
	width: 100% !important;
	min-height: 64px !important;
	margin: 0 !important;
	padding: 18px 16px 18px 40px !important;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	font-size: 15px !important;
	font-weight: 700 !important;
	color: var(--wfqc-text) !important;
	cursor: pointer !important;
	line-height: 1.35 !important;
	position: relative !important;
}

.wfqc-checkout-page .wc_payment_method > label img {
	display: inline-block !important;
	vertical-align: middle !important;
	width: auto !important;
	height: auto !important;
	max-width: 42px !important;
	max-height: 28px !important;
	margin-left: 8px !important;
	margin-right: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	background: transparent !important;
	object-fit: contain !important;
	float: none !important;
	position: static !important;
}

.wfqc-checkout-page .wc_payment_method .payment_box {
	margin: 0 !important;
	padding: 0 16px 16px !important;
	border: 0 !important;
	background: transparent !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	overflow: visible !important;
	clear: both !important;
}

.wfqc-checkout-page .payment_box::before,
.wfqc-checkout-page .payment_box::after,
.wfqc-checkout-page .wc_payment_method::before,
.wfqc-checkout-page .wc_payment_method::after {
	display: none !important;
	content: none !important;
}

.wfqc-checkout-page .payment_box > *:first-child {
	margin-top: 0 !important;
}

.wfqc-checkout-page .payment_box > *:last-child {
	margin-bottom: 0 !important;
}

.wfqc-checkout-page .payment_box ul,
.wfqc-checkout-page .payment_box ol {
	margin: 0 0 12px 18px !important;
	padding: 0 !important;
}



.wfqc-checkout-page .payment_box input:focus,
.wfqc-checkout-page .payment_box select:focus,
.wfqc-checkout-page .payment_box textarea:focus {
	border-color: #8cb7ff !important;
	box-shadow: 0 0 0 3px rgba(52,131,250,.10) !important;
	outline: none !important;
}

.wfqc-checkout-page .payment_box input::placeholder,
.wfqc-checkout-page .payment_box textarea::placeholder {
	color: #9ba3b4 !important;
	opacity: 1 !important;
}

.wfqc-checkout-page .woocommerce-privacy-policy-text,
.wfqc-checkout-page .form-row.place-order > p,
.wfqc-checkout-page .place-order p {
	color: #7b8497 !important;
	font-size: 14px !important;
	line-height: 1.7 !important;
	margin-top: 6px !important;
}

.wfqc-checkout-page .form-row.place-order {
	margin-top: 10px !important;
	padding-top: 18px !important;
	border-top: 1px solid #d8deea !important;
}

/* botão final */
.wfqc-checkout-page #place_order,
.wfqc-checkout-page .button.alt,
.wfqc-checkout-page .button,
.wfqc-checkout-page .button.checkout-button {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 56px;
	padding: 14px 24px;
	margin-top: 14px;
	background: linear-gradient(180deg, var(--wfqc-primary-2) 0%, var(--wfqc-primary) 100%) !important;
	color: #fff !important;
	text-decoration: none !important;
	border: 0 !important;
	border-radius: 14px !important;
	font-size: 18px !important;
	font-weight: 800 !important;
	cursor: pointer;
	box-shadow: 0 14px 30px var(--wfqc-primary-shadow);
}

.wfqc-checkout-page #place_order::before,
.wfqc-checkout-page .button.alt::before,
.wfqc-checkout-page .button::before,
.wfqc-checkout-page .button.checkout-button::before {
	content: "🔒";
	margin-right: 8px;
	font-size: 15px;
	line-height: 1;
}

@media (max-width: 1024px) {
	.wfqc-checkout-page {
		width: calc(100vw - 24px);
	}

	.wfqc-checkout-page .wfqc-checkout-layout {
		grid-template-columns: 1fr;
	}

	.wfqc-checkout-page .wfqc-checkout-fields {
		border-right: 0;
		padding-right: 0;
	}

	.wfqc-checkout-page .wfqc-checkout-fields--payment {
		border-right: 0;
		padding-right: 0;
	}

	.wfqc-checkout-page .wfqc-checkout-review {
		position: static;
	}
}

@media (max-width: 767px) {
	.wfqc-checkout-page {
		width: calc(100vw - 10px);
	}

	.wfqc-checkout-shell {
		padding: 18px 14px 20px;
		border-radius: 18px;
	}

	.wfqc-checkout-page .wfqc-checkout-fields {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.wfqc-checkout-page .wfqc-steps-nav {
		grid-template-columns: 1fr;
	}

	.wfqc-checkout-page .wfqc-order-review,
	.wfqc-checkout-page .wfqc-payment-section {
		border-radius: 18px;
		padding: 18px;
	}

	.wfqc-checkout-page .wc_payment_method > input[type="radio"] {
		top: 22px !important;
		left: 12px !important;
	}

	.wfqc-checkout-page .wc_payment_method > label {
		padding: 14px 12px 14px 36px !important;
		font-size: 14px !important;
		min-height: 56px !important;
	}

	.wfqc-checkout-page .wc_payment_method .payment_box {
		padding: 0 12px 12px !important;
	}
}

/* ==========================================
   FIX BANDEIRA CARTÃO (PagBank / gateways)
========================================== */

.wfqc-checkout-page .payment_box input[name*="card-number"],
.wfqc-checkout-page .payment_box input.wc-credit-card-form-card-number {
	background-color: #fff !important;

	/* mantém a bandeira */
	background-repeat: no-repeat !important;
	background-position: right 14px center !important;
	background-size: 36px auto !important;

	/* espaço pra bandeira não sobrepor número */
	padding-right: 60px !important;
}

/* evita cortes */
.wfqc-checkout-page .payment_box {
	overflow: visible !important;
}


/* =========================================================
   PAGBANK / GATEWAYS - ESTILO SEGURO
   ========================================================= */

/* não mexe em hidden fields do gateway */
.wfqc-checkout-page .payment_box input[type="hidden"] {
	display: block !important;
	position: absolute !important;
	left: -99999px !important;
	width: 1px !important;
	height: 1px !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

/* estiliza somente campos visíveis comuns */
.wfqc-checkout-page .payment_box .input-text,
.wfqc-checkout-page .payment_box input.input-text,
.wfqc-checkout-page .payment_box select,
.wfqc-checkout-page .payment_box textarea {
	width: 100% !important;
	max-width: 100% !important;
	min-width: 0 !important;
	box-sizing: border-box !important;
	min-height: 50px !important;
	border: 1px solid #cfd5e2 !important;
	border-radius: 12px !important;
	box-shadow: none !important;
}

/* não sobrescreve background completo do campo de cartão */
.wfqc-checkout-page .payment_box .wc-credit-card-form-card-number,
.wfqc-checkout-page .payment_box input[name*="card-number"] {
	padding-right: 60px !important;
	background-repeat: no-repeat !important;
	background-position: right 14px center !important;
	background-size: 36px auto !important;
}

/* foco */
.wfqc-checkout-page .payment_box .input-text:focus,
.wfqc-checkout-page .payment_box input.input-text:focus,
.wfqc-checkout-page .payment_box select:focus,
.wfqc-checkout-page .payment_box textarea:focus {
	border-color: #8cb7ff !important;
	box-shadow: 0 0 0 3px rgba(52,131,250,.10) !important;
	outline: none !important;
}

/* wrapper do método */
.wfqc-checkout-page .wc_payment_method {
	display: block !important;
	margin: 0 0 14px !important;
	padding: 0 !important;
	list-style: none !important;
	border: 1px solid var(--wfqc-border) !important;
	border-radius: 16px !important;
	background: #f6f6fb !important;
	position: relative !important;
	box-shadow: none !important;
	overflow: hidden !important;
}

.wfqc-checkout-page .wc_payment_method .payment_box {
	margin: 0 !important;
	padding: 0 16px 16px !important;
	border: 0 !important;
	background: transparent !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	clear: both !important;
	overflow: visible !important;
}

/* remove resets perigosos em elementos internos do gateway */
.wfqc-checkout-page .payment_box iframe,
.wfqc-checkout-page .payment_box canvas,
.wfqc-checkout-page .payment_box svg {
	max-width: 100%;
}


/* =========================================================
   PAGBANK SAFE FIELDS
========================================================= */



.wfqc-checkout-page .payment_box .wc-credit-card-form-card-number,
.wfqc-checkout-page .payment_box input[name*="card-number"] {
	padding-right: 60px !important;
	background-repeat: no-repeat !important;
	background-position: right 14px center !important;
	background-size: 36px auto !important;
}

.wfqc-checkout-page .payment_box,
.wfqc-checkout-page .wc_payment_method {
	overflow: visible !important;
	position: relative !important;
}


/* =========================================================
   STEP 3 - REVISE SEUS DADOS + RESUMO DO PEDIDO
   ========================================================= */

.wfqc-checkout-page .wfqc-checkout-layout--final {
	align-items: start;
}

.wfqc-checkout-page .wfqc-summary-box--customer,
.wfqc-checkout-page .wfqc-summary-box--order {
	border: 1px solid var(--wfqc-border);
	border-radius: 18px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.wfqc-checkout-page .wfqc-summary-box--customer .wfqc-summary-row,
.wfqc-checkout-page .wfqc-summary-box--order .wfqc-summary-row {
	display: grid;
	grid-template-columns: 140px minmax(0, 1fr);
	align-items: center;
	gap: 18px;
	padding: 18px 18px;
	border-bottom: 1px solid var(--wfqc-border);
}

.wfqc-checkout-page .wfqc-summary-box--customer .wfqc-summary-row:last-child,
.wfqc-checkout-page .wfqc-summary-box--order .wfqc-summary-row:last-child {
	border-bottom: 0;
}

.wfqc-checkout-page .wfqc-summary-box--customer .wfqc-summary-label,
.wfqc-checkout-page .wfqc-summary-box--order .wfqc-summary-label {
	font-size: 15px;
	font-weight: 800;
	color: #111827;
	line-height: 1.4;
	text-align: left;
}

.wfqc-checkout-page .wfqc-summary-box--customer .wfqc-summary-value,
.wfqc-checkout-page .wfqc-summary-box--order .wfqc-summary-value {
	font-size: 15px;
	font-weight: 600;
	color: #1f2937;
	line-height: 1.6;
	text-align: right;
	word-break: break-word;
	overflow-wrap: anywhere;
}

.wfqc-checkout-page .wfqc-summary-row--customer-address {
	align-items: start;
}

.wfqc-checkout-page .wfqc-summary-row--customer-address .wfqc-summary-label {
	padding-top: 2px;
}

.wfqc-checkout-page .wfqc-summary-row--customer-address .wfqc-summary-value {
	white-space: normal;
}

.wfqc-checkout-page .wfqc-summary-box--order .wfqc-summary-row--product {
	grid-template-columns: minmax(0, 1fr) auto;
}

.wfqc-checkout-page .wfqc-summary-box--order .wfqc-summary-row--total {
	background: #f8fbff;
}

.wfqc-checkout-page .wfqc-summary-box--order .wfqc-summary-row--total .wfqc-summary-label,
.wfqc-checkout-page .wfqc-summary-box--order .wfqc-summary-row--total .wfqc-summary-value {
	font-size: 18px;
	font-weight: 800;
}

.wfqc-checkout-page .wfqc-review-product {
	display: flex;
	flex-direction: column;
	gap: 4px;
	text-align: left;
}

.wfqc-checkout-page .wfqc-review-product__name {
	font-size: 15px;
	font-weight: 800;
	line-height: 1.4;
	color: #111827;
}

.wfqc-checkout-page .wfqc-review-product__qty {
	font-size: 13px;
	font-weight: 600;
	color: #6b7280;
}

/* remove tabela visual do woocommerce que pode entrar em alguns casos */
.wfqc-checkout-page .wfqc-order-review table.shop_table,
.wfqc-checkout-page .wfqc-order-review .shop_table,
.wfqc-checkout-page .wfqc-payment-section table.shop_table,
.wfqc-checkout-page .wfqc-payment-section .shop_table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	background: transparent;
	box-shadow: none;
	border: 0;
	margin: 0;
}

.wfqc-checkout-page .wfqc-order-review table.shop_table th,
.wfqc-checkout-page .wfqc-order-review table.shop_table td,
.wfqc-checkout-page .wfqc-payment-section table.shop_table th,
.wfqc-checkout-page .wfqc-payment-section table.shop_table td {
	padding: 0;
	border: 0;
	background: transparent;
}

/* separação entre resumo e pagamento */
.wfqc-checkout-page .wfqc-order-review + .wfqc-payment-section {
	margin-top: 16px;
}

@media (max-width: 1024px) {
	.wfqc-checkout-page .wfqc-summary-box--customer .wfqc-summary-row,
	.wfqc-checkout-page .wfqc-summary-box--order .wfqc-summary-row {
		grid-template-columns: 120px minmax(0, 1fr);
	}
}

@media (max-width: 767px) {
	.wfqc-checkout-page .wfqc-summary-box--customer .wfqc-summary-row,
	.wfqc-checkout-page .wfqc-summary-box--order .wfqc-summary-row {
		grid-template-columns: 1fr;
		gap: 8px;
		padding: 14px;
	}

	.wfqc-checkout-page .wfqc-summary-box--customer .wfqc-summary-label,
	.wfqc-checkout-page .wfqc-summary-box--order .wfqc-summary-label,
	.wfqc-checkout-page .wfqc-summary-box--customer .wfqc-summary-value,
	.wfqc-checkout-page .wfqc-summary-box--order .wfqc-summary-value {
		text-align: left;
	}

	.wfqc-checkout-page .wfqc-summary-box--order .wfqc-summary-row--total .wfqc-summary-label,
	.wfqc-checkout-page .wfqc-summary-box--order .wfqc-summary-row--total .wfqc-summary-value {
		font-size: 16px;
	}
}

/* Step 3 full width (sem revise dados) */
.wfqc-checkout-page .wfqc-checkout-layout--final {
	grid-template-columns: 1fr !important;
}

.wfqc-checkout-page .wfqc-checkout-review {
	grid-column: 1 / -1;
	max-width: 720px;
	margin: 0 auto;
}

/* melhora espaçamento entre resumo e pagamento */
.wfqc-checkout-page .wfqc-order-review + .wfqc-payment-section {
	margin-top: 20px;
}




/* =========================================================
   RESUMO DO PEDIDO - VISUAL LIMPO E RESPONSIVO
   ========================================================= */

.wfqc-checkout-page .wfqc-order-review {
	padding: 20px;
	border: 1px solid #e3e8f2;
	border-radius: 22px;
	background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
	margin-bottom: 22px !important;
}

.wfqc-checkout-page #order_review {
	margin: 0 0 22px !important;
}

.wfqc-checkout-page #order_review_heading,
.wfqc-checkout-page .wfqc-order-review > h3 {
	margin: 0 0 16px !important;
	font-size: 24px !important;
	line-height: 1.2 !important;
	font-weight: 800 !important;
	color: #111827 !important;
}

/* tabela base */
.wfqc-checkout-page .woocommerce-checkout-review-order-table {
	width: 100% !important;
	margin: 0 !important;
	border-collapse: separate !important;
	border-spacing: 0 !important;
	table-layout: fixed !important;
	background: #ffffff !important;
	border: 1px solid #dfe5ef !important;
	border-radius: 18px !important;
	overflow: hidden !important;
	box-shadow: none !important;
}

/* cabeçalho */
.wfqc-checkout-page .woocommerce-checkout-review-order-table thead th {
	padding: 16px 18px !important;
	background: #f4f7fb !important;
	color: #0f172a !important;
	font-size: 15px !important;
	font-weight: 800 !important;
	border-bottom: 1px solid #e5ebf3 !important;
}

.wfqc-checkout-page .woocommerce-checkout-review-order-table thead th:first-child {
	text-align: left !important;
	width: 58% !important;
}

.wfqc-checkout-page .woocommerce-checkout-review-order-table thead th:last-child {
	text-align: right !important;
	width: 42% !important;
}

/* células */
.wfqc-checkout-page .woocommerce-checkout-review-order-table tbody td,
.wfqc-checkout-page .woocommerce-checkout-review-order-table tbody th,
.wfqc-checkout-page .woocommerce-checkout-review-order-table tfoot td,
.wfqc-checkout-page .woocommerce-checkout-review-order-table tfoot th {
	padding: 18px !important;
	font-size: 15px !important;
	line-height: 1.5 !important;
	vertical-align: middle !important;
	border-bottom: 1px solid #e9eef5 !important;
	background: #ffffff !important;
	color: #1f2937 !important;
}

/* remove a borda final */
.wfqc-checkout-page .woocommerce-checkout-review-order-table tbody tr:last-child td,
.wfqc-checkout-page .woocommerce-checkout-review-order-table tbody tr:last-child th,
.wfqc-checkout-page .woocommerce-checkout-review-order-table tfoot tr:last-child td,
.wfqc-checkout-page .woocommerce-checkout-review-order-table tfoot tr:last-child th {
	border-bottom: 0 !important;
}

/* sem divisória vertical pesada */
.wfqc-checkout-page .woocommerce-checkout-review-order-table th + th,
.wfqc-checkout-page .woocommerce-checkout-review-order-table td + td {
	border-left: 0 !important;
}

/* produto */
.wfqc-checkout-page .woocommerce-checkout-review-order-table .product-name {
	font-size: 15px !important;
	font-weight: 700 !important;
	color: #111827 !important;
	text-align: left !important;
	word-break: break-word;
}

.wfqc-checkout-page .woocommerce-checkout-review-order-table .product-quantity {
	display: inline-block !important;
	margin-left: 6px !important;
	color: #6b7280 !important;
	font-weight: 700 !important;
	font-size: 14px !important;
}

/* subtotal/valores */
.wfqc-checkout-page .woocommerce-checkout-review-order-table .product-total,
.wfqc-checkout-page .woocommerce-checkout-review-order-table td:last-child,
.wfqc-checkout-page .woocommerce-checkout-review-order-table th:last-child {
	text-align: right !important;
}

.wfqc-checkout-page .woocommerce-checkout-review-order-table .amount {
	font-weight: 800 !important;
	color: #0b2545 !important;
	white-space: nowrap;
}

/* linhas intermediárias do footer */
.wfqc-checkout-page .woocommerce-checkout-review-order-table tfoot tr:not(.order-total) th,
.wfqc-checkout-page .woocommerce-checkout-review-order-table tfoot tr:not(.order-total) td {
	font-size: 15px !important;
	font-weight: 700 !important;
	color: #111827 !important;
}

/* linha total */
.wfqc-checkout-page .woocommerce-checkout-review-order-table tfoot tr.order-total th,
.wfqc-checkout-page .woocommerce-checkout-review-order-table tfoot tr.order-total td {
	background: #f3f8ff !important;
	font-size: 20px !important;
	font-weight: 800 !important;
	color: #0f172a !important;
	padding-top: 20px !important;
	padding-bottom: 20px !important;
}

/* frete */
.wfqc-checkout-page ul#shipping_method {
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

.wfqc-checkout-page ul#shipping_method li {
	margin: 0 !important;
	padding: 0 !important;
	font-weight: 700 !important;
	color: #111827 !important;
}

.wfqc-checkout-page ul#shipping_method .amount {
	color: var(--wfqc-primary) !important;
	font-weight: 800 !important;
}

/* desconto */
.wfqc-checkout-page .cart-discount th,
.wfqc-checkout-page .cart-discount td {
	color: #0f766e !important;
	font-weight: 800 !important;
}

/* separação do pagamento */
.wfqc-checkout-page .wfqc-payment-section {
	margin-top: 18px !important;
	padding-top: 0 !important;
	border-top: 0 !important;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {
	.wfqc-checkout-page .wfqc-order-review {
		padding: 16px;
		border-radius: 18px;
		margin-bottom: 18px !important;
	}

	.wfqc-checkout-page #order_review_heading,
	.wfqc-checkout-page .wfqc-order-review > h3 {
		font-size: 21px !important;
		margin-bottom: 14px !important;
	}

	.wfqc-checkout-page .woocommerce-checkout-review-order-table {
		border-radius: 16px !important;
		table-layout: auto !important;
	}

	.wfqc-checkout-page .woocommerce-checkout-review-order-table thead th {
		padding: 14px !important;
		font-size: 14px !important;
	}

	.wfqc-checkout-page .woocommerce-checkout-review-order-table tbody td,
	.wfqc-checkout-page .woocommerce-checkout-review-order-table tbody th,
	.wfqc-checkout-page .woocommerce-checkout-review-order-table tfoot td,
	.wfqc-checkout-page .woocommerce-checkout-review-order-table tfoot th {
		padding: 14px !important;
		font-size: 14px !important;
	}

	.wfqc-checkout-page .woocommerce-checkout-review-order-table .product-name {
		font-size: 14px !important;
		line-height: 1.45 !important;
	}

	.wfqc-checkout-page .woocommerce-checkout-review-order-table .product-quantity {
		display: inline !important;
		margin-left: 4px !important;
		font-size: 13px !important;
	}

	.wfqc-checkout-page .woocommerce-checkout-review-order-table tfoot tr.order-total th,
	.wfqc-checkout-page .woocommerce-checkout-review-order-table tfoot tr.order-total td {
		font-size: 17px !important;
		padding-top: 16px !important;
		padding-bottom: 16px !important;
	}

	.wfqc-checkout-page .wfqc-payment-section {
		margin-top: 16px !important;
	}
}


/* =========================================================
   FIX FINAL - ESPAÇAMENTO RESUMO DO PEDIDO
   COLE NO FINAL DO CSS
   ========================================================= */

.wfqc-checkout-page .wfqc-order-review {
	padding: 20px 20px 26px !important;
	margin: 0 0 26px !important;
	border: 1px solid #e3e8f2 !important;
	border-radius: 22px !important;
	background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%) !important;
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05) !important;
	overflow: visible !important;
}

.wfqc-checkout-page .wfqc-order-review > h3,
.wfqc-checkout-page #order_review_heading {
	margin: 0 0 16px !important;
	font-size: 24px !important;
	line-height: 1.2 !important;
	font-weight: 800 !important;
	color: #111827 !important;
}

.wfqc-checkout-page #order_review {
	margin: 0 !important;
	padding: 0 !important;
}

.wfqc-checkout-page .woocommerce-checkout-review-order-table,
.wfqc-checkout-page table.shop_table.woocommerce-checkout-review-order-table {
	width: 100% !important;
	margin: 0 !important;
	border-collapse: separate !important;
	border-spacing: 0 !important;
	table-layout: fixed !important;
	background: #ffffff !important;
	border: 1px solid #dfe5ef !important;
	border-radius: 18px !important;
	overflow: hidden !important;
	box-shadow: none !important;
	display: table !important;
}

.wfqc-checkout-page .woocommerce-checkout-review-order-table thead th {
	padding: 16px 18px !important;
	background: #f4f7fb !important;
	color: #0f172a !important;
	font-size: 15px !important;
	font-weight: 800 !important;
	border-bottom: 1px solid #e5ebf3 !important;
}

.wfqc-checkout-page .woocommerce-checkout-review-order-table thead th:first-child {
	text-align: left !important;
	width: 58% !important;
}

.wfqc-checkout-page .woocommerce-checkout-review-order-table thead th:last-child {
	text-align: right !important;
	width: 42% !important;
}

.wfqc-checkout-page .woocommerce-checkout-review-order-table tbody td,
.wfqc-checkout-page .woocommerce-checkout-review-order-table tbody th,
.wfqc-checkout-page .woocommerce-checkout-review-order-table tfoot td,
.wfqc-checkout-page .woocommerce-checkout-review-order-table tfoot th {
	padding: 18px !important;
	font-size: 15px !important;
	line-height: 1.5 !important;
	vertical-align: middle !important;
	border-bottom: 1px solid #e9eef5 !important;
	background: #ffffff !important;
	color: #1f2937 !important;
}

.wfqc-checkout-page .woocommerce-checkout-review-order-table tr:last-child td,
.wfqc-checkout-page .woocommerce-checkout-review-order-table tr:last-child th {
	border-bottom: 0 !important;
}

.wfqc-checkout-page .woocommerce-checkout-review-order-table th + th,
.wfqc-checkout-page .woocommerce-checkout-review-order-table td + td {
	border-left: 0 !important;
}

.wfqc-checkout-page .woocommerce-checkout-review-order-table .product-name {
	font-size: 15px !important;
	font-weight: 700 !important;
	color: #111827 !important;
	text-align: left !important;
	word-break: break-word !important;
}

.wfqc-checkout-page .woocommerce-checkout-review-order-table .product-quantity {
	display: inline-block !important;
	margin-left: 6px !important;
	color: #6b7280 !important;
	font-weight: 700 !important;
	font-size: 14px !important;
}

.wfqc-checkout-page .woocommerce-checkout-review-order-table .product-total,
.wfqc-checkout-page .woocommerce-checkout-review-order-table td:last-child,
.wfqc-checkout-page .woocommerce-checkout-review-order-table th:last-child {
	text-align: right !important;
}

.wfqc-checkout-page .woocommerce-checkout-review-order-table .amount {
	font-weight: 800 !important;
	color: #0b2545 !important;
	white-space: nowrap !important;
}

.wfqc-checkout-page .woocommerce-checkout-review-order-table tfoot tr:not(.order-total) th,
.wfqc-checkout-page .woocommerce-checkout-review-order-table tfoot tr:not(.order-total) td {
	font-size: 15px !important;
	font-weight: 700 !important;
	color: #111827 !important;
}

.wfqc-checkout-page .woocommerce-checkout-review-order-table tfoot tr.order-total th,
.wfqc-checkout-page .woocommerce-checkout-review-order-table tfoot tr.order-total td {
	background: #f3f8ff !important;
	font-size: 20px !important;
	font-weight: 800 !important;
	color: #0f172a !important;
	padding-top: 20px !important;
	padding-bottom: 20px !important;
}

.wfqc-checkout-page ul#shipping_method {
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

.wfqc-checkout-page ul#shipping_method li {
	margin: 0 !important;
	padding: 0 !important;
	font-weight: 700 !important;
	color: #111827 !important;
}

.wfqc-checkout-page ul#shipping_method .amount {
	color: var(--wfqc-primary) !important;
	font-weight: 800 !important;
}

/* espaçamento real entre resumo e pagamento */
.wfqc-checkout-page .wfqc-order-review + .wfqc-payment-section {
	margin-top: 26px !important;
}

.wfqc-checkout-page .wfqc-payment-section {
	margin-top: 0 !important;
	padding-top: 22px !important;
	border-top: 1px solid #e8edf5 !important;
}

/* mobile */
@media (max-width: 767px) {
	.wfqc-checkout-page .wfqc-order-review {
		padding: 16px 16px 22px !important;
		margin: 0 0 22px !important;
		border-radius: 18px !important;
	}

	.wfqc-checkout-page .wfqc-order-review > h3,
	.wfqc-checkout-page #order_review_heading {
		font-size: 21px !important;
		margin-bottom: 14px !important;
	}

	.wfqc-checkout-page .woocommerce-checkout-review-order-table {
		table-layout: auto !important;
		border-radius: 16px !important;
	}

	.wfqc-checkout-page .woocommerce-checkout-review-order-table thead th,
	.wfqc-checkout-page .woocommerce-checkout-review-order-table tbody td,
	.wfqc-checkout-page .woocommerce-checkout-review-order-table tbody th,
	.wfqc-checkout-page .woocommerce-checkout-review-order-table tfoot td,
	.wfqc-checkout-page .woocommerce-checkout-review-order-table tfoot th {
		padding: 14px !important;
		font-size: 14px !important;
	}

	.wfqc-checkout-page .woocommerce-checkout-review-order-table tfoot tr.order-total th,
	.wfqc-checkout-page .woocommerce-checkout-review-order-table tfoot tr.order-total td {
		font-size: 17px !important;
		padding-top: 16px !important;
		padding-bottom: 16px !important;
	}

	.wfqc-checkout-page .wfqc-order-review + .wfqc-payment-section {
		margin-top: 22px !important;
	}

	.wfqc-checkout-page .wfqc-payment-section {
		padding-top: 18px !important;
	}
}



/* =========================================================
   TÍTULO DA PÁGINA DE CHECKOUT
   ========================================================= */

body.page-id-9 .page-header,
body.woocommerce-checkout .page-header {
	margin: 0 0 18px !important;
	padding: 0 !important;
}

body.page-id-9 .page-header .entry-title,
body.woocommerce-checkout .page-header .entry-title {
	display: block !important;
	margin: 0 0 22px !important;
	padding: 0 !important;
	font-size: 40px !important;
	line-height: 1.1 !important;
	font-weight: 800 !important;
	letter-spacing: -0.6px !important;
	color: #111827 !important;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
	border: 0 !important;
	text-transform: none !important;
}

body.page-id-9 .page-header .entry-title::after,
body.woocommerce-checkout .page-header .entry-title::after {
	content: "";
	display: block;
	width: 72px;
	height: 4px;
	margin-top: 12px;
	border-radius: 999px;
	background: linear-gradient(90deg, #00a650 0%, #08c261 100%);
}

@media (max-width: 767px) {
	body.page-id-9 .page-header .entry-title,
	body.woocommerce-checkout .page-header .entry-title {
		font-size: 26px !important;
		line-height: 1.15 !important;
		margin-bottom: 18px !important;
	}

	body.page-id-9 .page-header .entry-title::after,
	body.woocommerce-checkout .page-header .entry-title::after {
		width: 56px;
		margin-top: 10px;
	}
}


/* Espaçamento das linhas da tabela */
.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
	padding: 14px 16px !important;
}

/* Espaçamento específico da linha de frete */
.woocommerce-checkout-review-order-table .shipping th,
.woocommerce-checkout-review-order-table .shipping td {
	padding-top: 18px !important;
	padding-bottom: 18px !important;
}

/* Melhorar alinhamento do texto */
.woocommerce-checkout-review-order-table th {
	font-weight: 600;
	color: #374151;
}

.woocommerce-checkout-review-order-table td {
	font-weight: 500;
}

/* Espaçamento entre resumo e métodos de pagamento */
.wfqc-checkout-page #payment ul.payment_methods li,
.woocommerce-checkout #payment ul.payment_methods li,
.woocommerce-page #payment ul.payment_methods li {
	top: 10px !important;
	position: relative !important;
}

/* =========================================================
   CARRINHO CUSTOM
   ========================================================= */

.wfqc-cart-page {
	position: relative;
	width: min(1280px, calc(100vw - 40px));
	margin-left: 50%;
	transform: translateX(-50%);
	padding: 0;
	background: transparent;
}

.wfqc-cart-page .wfqc-container {
	max-width: none;
	width: 100%;
	margin: 0;
}

.wfqc-cart-shell {
	background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
	border: 1px solid var(--wfqc-border);
	border-radius: 26px;
	box-shadow: var(--wfqc-shadow-lg);
	padding: 26px;
	overflow: hidden;
}

.wfqc-cart-page .entry-title {
	margin: 0 0 24px !important;
	font-size: 46px !important;
	line-height: 1.08 !important;
	font-weight: 800 !important;
	letter-spacing: -.03em !important;
	color: #16181d !important;
}

.wfqc-cart-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(320px, 430px);
	gap: 26px;
	align-items: start;
}

.wfqc-cart-card,
.wfqc-cart-summary {
	background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
	border: 1px solid var(--wfqc-border);
	border-radius: 22px;
	box-shadow: var(--wfqc-shadow-sm);
	padding: 20px;
}

.wfqc-cart-card__title,
.wfqc-cart-summary__title {
	margin: 0 0 18px;
	font-size: 18px;
	line-height: 1.25;
	font-weight: 800;
	color: #16181d;
}

.wfqc-cart-items {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.wfqc-cart-item {
	display: grid;
	grid-template-columns: 76px minmax(0, 1fr) auto;
	gap: 16px;
	align-items: center;
	padding: 18px;
	border: 1px solid var(--wfqc-border);
	border-radius: 18px;
	background: #fff;
}

.wfqc-cart-item__image {
	width: 76px;
	height: 76px;
	border-radius: 14px;
	overflow: hidden;
	background: #f8fafc;
	border: 1px solid var(--wfqc-border);
}

.wfqc-cart-item__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.wfqc-cart-item__content {
	min-width: 0;
}

.wfqc-cart-item__name {
	margin: 0 0 6px;
	font-size: 16px;
	line-height: 1.35;
	font-weight: 800;
	color: #1f2937;
}

.wfqc-cart-item__name a {
	color: #1f2937;
	text-decoration: none;
}

.wfqc-cart-item__name a:hover {
	color: var(--wfqc-primary);
}

.wfqc-cart-item__unit-price {
	font-size: 14px;
	line-height: 1.5;
	color: #5f6777;
}

.wfqc-cart-item__remove {
	display: inline-block;
	margin-top: 6px;
	font-size: 14px;
	font-weight: 600;
	color: #e11d48;
	text-decoration: underline;
}

.wfqc-cart-item__actions {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 14px;
}

.wfqc-cart-item__subtotal {
	font-size: 18px;
	font-weight: 800;
	color: #0f172a;
	white-space: nowrap;
}

.wfqc-qty {
	display: inline-flex;
	align-items: center;
	border: 1px solid var(--wfqc-border);
	border-radius: 999px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 2px 10px rgba(16,24,40,0.04);
}

.wfqc-qty__btn {
	width: 48px;
	height: 44px;
	border: 0 !important;
	background: #fff !important;
	color: #111827 !important;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	transition: background var(--wfqc-transition), color var(--wfqc-transition);
}

.wfqc-qty__btn:hover {
	background: #f3f6fb !important;
	color: var(--wfqc-blue) !important;
}

.wfqc-qty__input {
	width: 52px !important;
	height: 44px !important;
	border: 0 !important;
	border-left: 1px solid var(--wfqc-border) !important;
	border-right: 1px solid var(--wfqc-border) !important;
	border-radius: 0 !important;
	text-align: center !important;
	padding: 0 4px !important;
	font-size: 16px !important;
	font-weight: 800 !important;
	box-shadow: none !important;
	background: #fff !important;
}

.wfqc-cart-card__footer {
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid var(--wfqc-border);
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.wfqc-add-more-products {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 48px;
	padding: 12px 18px;
	background: #fff;
	border: 1px dashed #cfd7e8;
	border-radius: 14px;
	color: #2b3445;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	transition: .2s ease;
	text-decoration: none;
}

.wfqc-add-more-products:hover {
	background: #f8fbff;
	border-color: #b9c7e2;
	color: #111827;
}

.wfqc-cart-update {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 52px;
	padding: 14px 20px;
	background: #fff;
	border: 1px solid #d7ddea;
	border-radius: 14px;
	color: #16181d;
	font-size: 16px;
	font-weight: 800;
	cursor: pointer;
	text-decoration: none;
	box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06);
	transition: .2s ease;
}

.wfqc-cart-update:hover {
	background: #f8f9fc;
	border-color: #c9d1e3;
}

.wfqc-cart-totals {
	border: 1px solid var(--wfqc-border);
	border-radius: 18px;
	overflow: hidden;
	background: #fff;
	margin-bottom: 18px;
}

.wfqc-cart-total-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 16px;
	padding: 16px 18px;
	border-bottom: 1px solid var(--wfqc-border);
	align-items: center;
}

.wfqc-cart-total-row:last-child {
	border-bottom: 0;
}

.wfqc-cart-total-row--total {
	background: #f8fbff;
}

.wfqc-cart-total-label {
	font-size: 15px;
	font-weight: 700;
	color: #16181d;
}

.wfqc-cart-total-value {
	font-size: 15px;
	font-weight: 800;
	color: #111827;
	text-align: right;
}

.wfqc-cart-total-row--total .wfqc-cart-total-label,
.wfqc-cart-total-row--total .wfqc-cart-total-value {
	font-size: 18px;
	font-weight: 800;
}

.wfqc-cart-summary .wfqc-shipping-box {
	margin-top: 20px;
	margin-bottom: 12px;
}

.wfqc-cart-summary .wfqc-top-shipping {
	margin-bottom: 18px;
}

.wfqc-cart-summary .wfqc-button {
	margin-top: 0 !important;
}

@media (max-width: 1024px) {
	.wfqc-cart-layout {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.wfqc-cart-page {
		width: calc(100vw - 10px);
	}

	.wfqc-cart-shell {
		padding: 18px 14px 20px;
		border-radius: 18px;
	}

	.wfqc-cart-page .entry-title {
		font-size: 34px !important;
		margin-bottom: 18px !important;
	}

	.wfqc-cart-card,
	.wfqc-cart-summary {
		padding: 16px;
		border-radius: 18px;
	}

	.wfqc-cart-item {
		grid-template-columns: 64px minmax(0, 1fr);
		gap: 14px;
		padding: 14px;
	}

	.wfqc-cart-item__image {
		width: 64px;
		height: 64px;
		border-radius: 12px;
	}

	.wfqc-cart-item__actions {
		grid-column: 1 / -1;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		margin-top: 4px;
	}

	.wfqc-cart-item__subtotal {
		font-size: 16px;
	}

	.wfqc-cart-total-row {
		padding: 14px;
	}

	.wfqc-cart-total-row--total .wfqc-cart-total-label,
	.wfqc-cart-total-row--total .wfqc-cart-total-value {
		font-size: 16px;
	}
}

/* =========================================================
   THANK YOU PAGE / PEDIDO RECEBIDO
   ========================================================= */

.wfqc-thankyou-page .wfqc-checkout-shell {
	padding: 22px;
}

.wfqc-thankyou {
	max-width: 860px;
	margin: 0 auto;
}

.wfqc-thankyou__icon {
	width: 74px;
	height: 74px;
	margin: 0 auto 18px;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(180deg, #eafaf0 0%, #dcfce7 100%);
	color: #16a34a;
	font-size: 34px;
	font-weight: 800;
	box-shadow: 0 12px 30px rgba(22, 163, 74, 0.12);
}

.wfqc-thankyou__title {
	margin: 0 0 12px;
	font-size: 34px;
	line-height: 1.1;
	font-weight: 800;
	color: #111827;
	text-align: center;
}

.wfqc-thankyou__text {
	margin: 0 0 12px;
	font-size: 16px;
	line-height: 1.7;
	color: #4b5563;
	text-align: center;
}

.wfqc-thankyou__text strong {
	color: #111827;
	font-weight: 800;
}

.wfqc-thankyou__summary {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin: 26px 0 30px;
}

.wfqc-thankyou__summary-item {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 18px;
	padding: 18px;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.wfqc-thankyou__label {
	display: block;
	margin-bottom: 6px;
	font-size: 13px;
	line-height: 1.4;
	font-weight: 600;
	color: #6b7280;
}

.wfqc-thankyou__summary-item strong {
	display: block;
	font-size: 17px;
	line-height: 1.5;
	font-weight: 800;
	color: #111827;
	word-break: break-word;
}

.wfqc-thankyou__order-details {
	margin-top: 6px;
}

.wfqc-thankyou__order-details h2,
.wfqc-thankyou__order-details .woocommerce-order-details__title {
	margin: 0 0 14px;
	font-size: 28px;
	line-height: 1.15;
	font-weight: 800;
	color: #111827;
}

.wfqc-thankyou__order-details table.shop_table,
.wfqc-thankyou__order-details .shop_table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
	margin: 0;
}

.wfqc-thankyou__order-details table.shop_table thead th,
.wfqc-thankyou__order-details .shop_table thead th {
	background: #f8fafc;
	color: #111827;
	font-size: 14px;
	font-weight: 700;
	padding: 16px 18px;
	border-bottom: 1px solid #e5e7eb;
	text-align: left;
}

.wfqc-thankyou__order-details table.shop_table tbody td,
.wfqc-thankyou__order-details table.shop_table tbody th,
.wfqc-thankyou__order-details table.shop_table tfoot td,
.wfqc-thankyou__order-details table.shop_table tfoot th,
.wfqc-thankyou__order-details .shop_table tbody td,
.wfqc-thankyou__order-details .shop_table tbody th,
.wfqc-thankyou__order-details .shop_table tfoot td,
.wfqc-thankyou__order-details .shop_table tfoot th {
	padding: 16px 18px;
	border-bottom: 1px solid #e5e7eb;
	font-size: 15px;
	line-height: 1.5;
	vertical-align: middle;
	background: #ffffff;
	color: #374151;
}

.wfqc-thankyou__order-details table.shop_table tbody tr:last-child td,
.wfqc-thankyou__order-details table.shop_table tbody tr:last-child th,
.wfqc-thankyou__order-details table.shop_table tfoot tr:last-child td,
.wfqc-thankyou__order-details table.shop_table tfoot tr:last-child th,
.wfqc-thankyou__order-details .shop_table tbody tr:last-child td,
.wfqc-thankyou__order-details .shop_table tbody tr:last-child th,
.wfqc-thankyou__order-details .shop_table tfoot tr:last-child td,
.wfqc-thankyou__order-details .shop_table tfoot tr:last-child th {
	border-bottom: 0;
}

.wfqc-thankyou__order-details .product-name,
.wfqc-thankyou__order-details .product-total,
.wfqc-thankyou__order-details tfoot th,
.wfqc-thankyou__order-details tfoot td {
	font-weight: 700;
	color: #111827;
}

.wfqc-thankyou__order-details a {
	color: #e11d48;
	text-decoration: none;
	font-weight: 700;
}

.wfqc-thankyou__order-details a:hover {
	color: #be123c;
}

.wfqc-thankyou__actions {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-top: 24px;
}

.wfqc-thankyou__actions .wfqc-button,
.wfqc-thankyou__actions .wfqc-secondary-button {
	width: 100%;
	justify-content: center;
	text-align: center;
	text-decoration: none;
}

@media (max-width: 767px) {
	.wfqc-thankyou-page .wfqc-checkout-shell {
		padding: 18px 14px 20px;
	}

	.wfqc-thankyou__icon {
		width: 64px;
		height: 64px;
		font-size: 30px;
		margin-bottom: 16px;
	}

	.wfqc-thankyou__title {
		font-size: 26px;
	}

	.wfqc-thankyou__text {
		font-size: 15px;
		line-height: 1.65;
	}

	.wfqc-thankyou__summary {
		grid-template-columns: 1fr;
		gap: 12px;
		margin: 22px 0 24px;
	}

	.wfqc-thankyou__summary-item {
		padding: 14px;
		border-radius: 16px;
	}

	.wfqc-thankyou__summary-item strong {
		font-size: 15px;
	}

	.wfqc-thankyou__order-details h2,
	.wfqc-thankyou__order-details .woocommerce-order-details__title {
		font-size: 22px;
	}

	.wfqc-thankyou__order-details table.shop_table,
	.wfqc-thankyou__order-details .shop_table {
		display: block;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.wfqc-thankyou__order-details table.shop_table thead th,
	.wfqc-thankyou__order-details .shop_table thead th,
	.wfqc-thankyou__order-details table.shop_table tbody td,
	.wfqc-thankyou__order-details table.shop_table tbody th,
	.wfqc-thankyou__order-details table.shop_table tfoot td,
	.wfqc-thankyou__order-details table.shop_table tfoot th,
	.wfqc-thankyou__order-details .shop_table tbody td,
	.wfqc-thankyou__order-details .shop_table tbody th,
	.wfqc-thankyou__order-details .shop_table tfoot td,
	.wfqc-thankyou__order-details .shop_table tfoot th {
		padding: 12px 14px;
		font-size: 14px;
	}
}