.wcqcm-open {
	margin-top: 12px;
	width: 100%;
}

.wcqcm-bulk-order {
	font-family: var(--wcqcm-font), inherit;
	color: var(--wcqcm-text);
}


.wcqcm-bulk-order__grid {
	display: grid;
	grid-template-columns: repeat(var(--wcqcm-bulk-columns, 3), minmax(0, 1fr));
	gap: 16px;
}

.wcqcm-bulk-order__actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: 18px;
}

.wcqcm-bulk-order__message {
	min-height: 20px;
	font-size: 14px;
	color: var(--wcqcm-primary);
}

.wcqcm-bulk-order__message.is-error {
	background: #fff5f5;
    border: 1px solid #ffb3b3;
    color: #d93025;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 17px;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.08);
	margin: 20px 0;
	font-weight: 500;
	font-family: var(--cc-font-fredoka);
}
.wcqcm-bulk-item__select {
	display: none;
}
/* —— Checkout modal —— */
.wcqcm-modal {
	display: none;
	font-family: var(--wcqcm-font), inherit;
	color: var(--wcqcm-text);
	-webkit-font-smoothing: antialiased;
}

.wcqcm-modal.is-open {
	display: block;
}

.wcqcm-modal__overlay {
	position: fixed;
	inset: 0;
	z-index: 99998;
	background: rgba(26, 34, 56, 0.72);
	backdrop-filter: blur(4px);
	opacity: 0;
	transition: opacity 0.35s ease;
}

.wcqcm-modal.is-open .wcqcm-modal__overlay {
	opacity: 1;
}

.wcqcm-modal.is-open .wcqcm-modal__dialog {
	opacity: 1;
	transform: translate3d(0, 0, 0);
	transition:
		opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
		transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.wcqcm-modal__dialog {
	position: fixed;
	inset: max(0.75rem, env(safe-area-inset-top, 0)) max(0.75rem, env(safe-area-inset-right, 0)) max(0.75rem, env(safe-area-inset-bottom, 0)) max(0.75rem, env(safe-area-inset-left, 0));
	z-index: 99999;
	display: flex;
	flex-direction: column;
	width: min(calc(100% - 1.5rem), 85rem);
	height: auto;
	max-height: min(calc(100vh - 1.5rem), calc(100dvh - 1.5rem));
	margin: auto;
	overflow: visible;
	background: var(--wcqcm-bg);
	border: 2px solid var(--wcqcm-border);
	border-radius: calc(var(--wcqcm-radius) * 1.5);
	box-shadow: 0 28px 80px rgba(26, 34, 56, 0.35);
	opacity: 0;
	transform: translate3d(0, 1rem, 0);
}

.wcqcm-modal__dialog--canvasclub {
	border-color: rgba(67, 36, 141, 0.14);
}

/* WooCommerce / jQuery blockUI during payment tokenization and checkout submit */
.wcqcm-modal .blockUI.blockOverlay,
.wcqcm-modal .blockUI.blockMsg {
	z-index: 100001 !important;
}

.wcqcm-modal__close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	z-index: 2;
	font-size: 20px !important;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	padding: 0;
	border: 2px solid var(--wcqcm-border);
	border-radius: 50%;
	background: #fff;
	color: var(--wcqcm-accent);
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.wcqcm-modal__close:hover,
.wcqcm-modal__close:focus-visible {
	background: var(--wcqcm-surface);
	border-color: var(--wcqcm-purple);
	transform: scale(1.05);
	outline: none;
}

.wcqcm-modal__header {
	flex-shrink: 0;
	padding: 1rem 3.25rem 0.85rem 1.25rem;
	background: var(--wcqcm-surface);
	border-bottom: 2px solid var(--wcqcm-border);
}

.wcqcm-modal__brand {
	margin: 0 0 0.35rem;
	color: var(--wcqcm-purple);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.wcqcm-modal__title {
	margin: 0;
	font-family: var(--wcqcm-font), inherit;
	font-size: clamp(1.25rem, 2.5vw, 1.5rem);
	font-weight: 700;
	line-height: 1.2;
	color: var(--wcqcm-accent);
}

.wcqcm-modal__subtitle {
	margin: 0.25rem 0 0;
	max-width: 36rem;
	font-size: 0.8125rem;
	line-height: 1.4;
	color: rgba(26, 34, 56, 0.65);
}

.wcqcm-modal__notice {
	flex-shrink: 0;
	min-height: 0;
	padding: 0 1.75rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--wcqcm-purple);
}

.wcqcm-modal__notice.is-error {
	padding: 0.85rem 1rem;
	color: #9f1239;
	background: #fff5f7;
	border-top: 1px solid #fecdd3;
	border-bottom: 1px solid #fecdd3;
}

.wcqcm-modal .woocommerce-NoticeGroup {
	clear: both;
}

.wcqcm-modal__body {
	flex: 1 1 auto;
	min-height: 0;
	padding: 0.85rem 1rem 1.25rem;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior: contain;
	background: var(--wcqcm-surface);
	scrollbar-gutter: stable;
}

.wcqcm-modal__body::-webkit-scrollbar {
	width: 10px;
}

.wcqcm-modal__body::-webkit-scrollbar-thumb {
	border: 2px solid var(--wcqcm-surface);
	border-radius: 999px;
	background: rgba(95, 63, 159, 0.35);
}

.wcqcm-checkout-shell,
.wcqcm-checkout-form {
	margin: 0;
	padding: 0;
}

.wcqcm-checkout-form {
	display: block;
}

.wcqcm-checkout {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(400px, 360px);
	gap: 0;
	align-items: start;
	overflow: visible;
	background: #fff;
	border: 2px solid var(--wcqcm-border);
	border-radius: var(--wcqcm-radius);
}

.wcqcm-layout-one_column .wcqcm-checkout {
	grid-template-columns: 1fr;
}

.wcqcm-checkout__panel {
	min-width: 0;
	padding: 1rem 1.15rem 1.25rem;
	overflow: visible;
}

.wcqcm-checkout__panel--billing {
	background: #fff;
	border-right: 2px solid var(--wcqcm-border);
}

.wcqcm-checkout__panel--summary {
	display: flex;
	flex-direction: column;
	gap: 0;
	padding-bottom: 1.5rem;
	background: var(--wcqcm-surface);
}

.wcqcm-checkout__order-review {
	flex: 0 0 auto;
}

.wcqcm-checkout__panel--summary #payment {
	flex: 0 0 auto;
	margin-top: 0.5rem;
	padding-top: 0.85rem;
	border-top: 2px solid var(--wcqcm-border);
}

.wcqcm-checkout__heading {
	margin: 0 0 0.85rem;
	padding: 0;
	border: 0;
	font-family: var(--wcqcm-font), inherit;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--wcqcm-purple);
	display: none !important;
}

.wcqcm-checkout__subheading {
	margin: 0 0 0.75rem;
	padding: 0;
	border: 0;
	font-family: var(--wcqcm-font), inherit;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(26, 34, 56, 0.85);
	display: none;
}

/* Coupon */
.wcqcm-coupon {
	margin: 0 0 1rem;
	padding: 0.85rem;
	background: #fff;
	border: 2px solid var(--wcqcm-border);
	border-radius: var(--wcqcm-radius);
}

.wcqcm-coupon__label {
	display: block;
	margin: 0 0 0.4rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(26, 34, 56, 0.75);
}

.wcqcm-coupon__row {
	display: flex;
	gap: 0.5rem;
	align-items: stretch;
}

.wcqcm-coupon__input {
	flex: 1;
	min-width: 0;
	min-height: 2.35rem !important;
	margin: 0 !important;
}

.wcqcm-coupon__apply {
	flex-shrink: 0;
	min-height: 2.35rem !important;
	margin: 0 !important;
	padding: 0 1rem !important;
	border: 2px solid var(--wcqcm-purple) !important;
	border-radius: var(--wcqcm-radius) !important;
	background: #fff !important;
	color: var(--wcqcm-purple) !important;
	font-family: var(--wcqcm-font), inherit !important;
	font-size: 0.75rem !important;
	font-weight: 700 !important;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}

.wcqcm-coupon__apply:hover,
.wcqcm-coupon__apply:focus-visible {
	background: var(--wcqcm-purple) !important;
	color: #fff !important;
	outline: none;
}

.wcqcm-modal .woocommerce-billing-fields > h3,
.wcqcm-modal .woocommerce-shipping-fields > h3,
.wcqcm-modal .woocommerce-additional-fields > h3 {
	display: none;
}

.wcqcm-modal .woocommerce form .form-row::after,
.wcqcm-modal .woocommerce form .form-row::before {
	display: none;
}

.wcqcm-modal #customer_details::before,
.wcqcm-modal #customer_details::after,
.wcqcm-modal .woocommerce-checkout::before,
.wcqcm-modal .woocommerce-checkout::after {
	display: none;
}

.wcqcm-modal #customer_details .col-1,
.wcqcm-modal #customer_details .col-2,
.wcqcm-modal .woocommerce .col2-set .col-1,
.wcqcm-modal .woocommerce .col2-set .col-2 {
	float: none;
	width: 100%;
	max-width: none;
	padding: 0;
}

/*
 * Billing/shipping fields: one CSS grid on WooCommerce's __field-wrapper.
 * Do NOT combine with form-row-first/last 48% widths (that shrinks inputs inside grid cells).
 */
.wcqcm-modal .woocommerce-billing-fields__field-wrapper,
.wcqcm-modal .woocommerce-shipping-fields__field-wrapper {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.15rem 0.75rem;
	width: 100%;
}

/* Stable field order in modal (country → state → postcode) even after address-i18n re-sorts DOM nodes. */
.wcqcm-modal #billing_first_name_field,
.wcqcm-modal #shipping_first_name_field {
	order: 10;
}
.wcqcm-modal #billing_last_name_field,
.wcqcm-modal #shipping_last_name_field {
	order: 20;
}
.wcqcm-modal #wcqcm_camper_name_field {
	order: 25;
}
.wcqcm-modal #billing_email_field {
	order: 30;
}
.wcqcm-modal #billing_email_confirm_field {
	order: 40;
}
.wcqcm-modal #billing_phone_field,
.wcqcm-modal #shipping_phone_field {
	order: 50;
}
.wcqcm-modal #billing_address_1_field,
.wcqcm-modal #shipping_address_1_field {
	order: 70;
}
.wcqcm-modal #billing_address_2_field,
.wcqcm-modal #shipping_address_2_field {
	order: 80;
}
.wcqcm-modal #billing_city_field,
.wcqcm-modal #shipping_city_field {
	order: 90;
}
.wcqcm-modal #billing_state_field,
.wcqcm-modal #shipping_state_field {
	order: 100;
}
.wcqcm-modal #billing_country_field,
.wcqcm-modal #shipping_country_field {
	order: 110;
}
.wcqcm-modal #billing_postcode_field,
.wcqcm-modal #shipping_postcode_field {
	order: 120;
}

.wcqcm-modal .woocommerce-billing-fields__field-wrapper > .form-row,
.wcqcm-modal .woocommerce-shipping-fields__field-wrapper > .form-row {
	float: none !important;
	clear: none !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

/* Pairs: default half-width in the 2-column grid */
.wcqcm-modal #billing_first_name_field,
.wcqcm-modal #billing_last_name_field,
.wcqcm-modal #shipping_first_name_field,
.wcqcm-modal #shipping_last_name_field,
.wcqcm-modal #billing_email_field,
.wcqcm-modal #billing_email_confirm_field,
.wcqcm-modal #billing_city_field,
.wcqcm-modal #billing_state_field,
.wcqcm-modal #shipping_city_field,
.wcqcm-modal #shipping_state_field,
.wcqcm-modal #billing_country_field,
.wcqcm-modal #shipping_country_field,
.wcqcm-modal #billing_postcode_field,
.wcqcm-modal #shipping_postcode_field,
.wcqcm-modal #billing_company_field,
.wcqcm-modal #shipping_company_field {
	grid-column: auto;
}

/* Full-width rows */
.wcqcm-modal #wcqcm_camper_name_field,
.wcqcm-modal #billing_phone_field,
.wcqcm-modal #shipping_phone_field,
.wcqcm-modal #billing_address_1_field,
.wcqcm-modal #shipping_address_1_field,
.wcqcm-modal #billing_address_2_field,
.wcqcm-modal #shipping_address_2_field {
	grid-column: 1 / -1;
}

.wcqcm-modal .woocommerce-checkout .form-row,
.wcqcm-modal .woocommerce-checkout .form-row-first,
.wcqcm-modal .woocommerce-checkout .form-row-last,
.wcqcm-modal .woocommerce-checkout .form-row-wide {
	float: none !important;
	display: block !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 0 0.65rem !important;
	margin-left: 0 !important;
	padding: 0 !important;
	clear: none !important;
}

.wcqcm-modal .woocommerce-billing-fields__field-wrapper .form-row .woocommerce-input-wrapper,
.wcqcm-modal .woocommerce-shipping-fields__field-wrapper .form-row .woocommerce-input-wrapper {
	display: block;
	width: 100%;
}

/* Native selects only in modal — hide any Select2/SelectWoo UI that WooCommerce attaches. */
.wcqcm-modal .select2-container,
.wcqcm-modal .select2-dropdown,
.wcqcm-modal .select2-search {
	display: none !important;
	visibility: hidden !important;
	pointer-events: none !important;
}

.wcqcm-modal select.country_select,
.wcqcm-modal select.state_select,
.wcqcm-modal #billing_country,
.wcqcm-modal #billing_state,
.wcqcm-modal #shipping_country,
.wcqcm-modal #shipping_state {
	display: block !important;
	position: static !important;
	clip: auto !important;
	clip-path: none !important;
	width: 100% !important;
	max-width: 100%;
	height: auto !important;
	min-height: 2.35rem;
	opacity: 1 !important;
	visibility: visible !important;
	pointer-events: auto !important;
	appearance: auto;
	-webkit-appearance: menulist;
}

.wcqcm-modal .woocommerce-checkout .form-row label,
.wcqcm-modal .wcqcm-field-label {
	display: block;
	margin-bottom: 0.3rem;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: rgba(26, 34, 56, 0.85);
}

.wcqcm-modal .woocommerce-checkout .form-row .required {
	color: var(--wcqcm-pink);
	text-decoration: none;
}

.wcqcm-modal .form-row input.input-text,
.wcqcm-modal .form-row textarea,
.wcqcm-modal .form-row select,
.wcqcm-modal .wcqcm-field-input {
	width: stretch !important;
	min-height: 2.35rem;
	padding: 0.45rem 0.7rem;
	border: 2px solid var(--wcqcm-border);
	border-radius: var(--wcqcm-radius);
	background: #fff;
	color: var(--wcqcm-text);
	font-family: inherit;
	font-size: 0.9375rem;
	line-height: 1.4;
	box-shadow: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.wcqcm-modal .form-row textarea {
	min-height: 5rem;
}

.wcqcm-modal .form-row input:focus,
.wcqcm-modal .form-row textarea:focus,
.wcqcm-modal .form-row select:focus {
	border-color: var(--wcqcm-purple);
	outline: none;
	box-shadow: 0 0 0 3px rgba(67, 36, 141, 0.14);
}

.wcqcm-modal .woocommerce-checkout-review-order-table {
	width: 100%;
	margin: 0 0 0.75rem;
	border-collapse: collapse;
	font-size: 0.875rem;
}

.wcqcm-modal .woocommerce-checkout-review-order-table th,
.wcqcm-modal .woocommerce-checkout-review-order-table td {
	padding: 0.5rem 0;
	border-bottom: 1px solid var(--wcqcm-border);
	vertical-align: top;
}

.wcqcm-modal .woocommerce-checkout-review-order-table .product-name {
	font-size: 0.8125rem;
	line-height: 1.35;
	position: relative;
	padding-right: 2rem;
}

.wcqcm-modal .woocommerce-checkout-review-order-table .product-name .wcqcm-line-item__name {
	display: block;
	padding-right: 0.25rem;
}

.wcqcm-modal .woocommerce-checkout-review-order-table .product-name .wcqcm-cart-addon {
	display: block;
	margin: 0.35rem 0 0.5rem;
	padding: 0;
	border: 0;
	background: transparent;
}

.wcqcm-modal .wcqcm-cart-addon--inactive .wcqcm-cart-addon__label {
	opacity: 0.55;
}

.wcqcm-modal .wcqcm-cart-addon__label {
	display: flex;
	align-items: flex-start;
	gap: 0.35rem;
	margin: 0;
	font-size: 16px;
	line-height: 1.3;
	font-weight: 400;
	letter-spacing: 0.01em;
	text-transform: none;
	color: var(--cc-navy,#1a2238);
	cursor: pointer;
}

.wcqcm-modal .wcqcm-cart-addon:not(.wcqcm-cart-addon--inactive) .wcqcm-cart-addon__label {
	opacity: 1;
	color: rgba(26, 34, 56, 0.9);
	font-weight: 500;
	font-size: 16px;
	font-family: var(--cc-font-fredoka, var(--wcqcm-font));
}

.wcqcm-modal .wcqcm-cart-addon__input {
	margin: 0.25rem 0 0;
	flex-shrink: 0;
	width: 0.875rem;
	height: 0.875rem;
	accent-color: var(--wcqcm-primary, #1f6feb);
}

.wcqcm-modal .wcqcm-cart-addon__price {
	font-weight: 500;
}

.wcqcm-order-item-addon {
	margin-top: 0.25rem;
	color: rgba(26, 34, 56, 0.7);
}

.wcqcm-modal .wcqcm-remove-line-item {
	position: absolute;
	top: 0;
	right: 0;
	width: 1.5rem;
	height: 1.5rem;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(26, 34, 56, 0.08);
	color: rgba(26, 34, 56, 0.75);
	font-size: 1.125rem;
	line-height: 1.35rem;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}

.wcqcm-modal .wcqcm-remove-line-item:hover,
.wcqcm-modal .wcqcm-remove-line-item:focus {
	background: var(--wcqcm-pink, #e85d75);
	color: #fff;
	outline: none;
}

.wcqcm-modal .woocommerce-checkout-review-order-table .product-quantity {
	display: block;
	margin-top: 0.1rem;
	font-size: 0.75rem;
	font-weight: 600;
	color: rgba(26, 34, 56, 0.55);
}

.wcqcm-modal .woocommerce-checkout-review-order-table thead {
	display: none;
}

.wcqcm-modal .woocommerce-checkout-review-order-table tbody {
	display: table-row-group;
}

.wcqcm-modal .woocommerce-checkout-review-order-table tbody .cart_item td {
	position: relative;
}

.wcqcm-modal .woocommerce-checkout-review-order-table .product-name {
	font-weight: 600;
	color: var(--wcqcm-accent);
}

.wcqcm-modal .woocommerce-checkout-review-order-table .product-total,
.wcqcm-modal .woocommerce-checkout-review-order-table tfoot td {
	font-weight: 700;
	text-align: right;
	white-space: nowrap;
}

.wcqcm-modal .woocommerce-checkout-review-order-table .order-total th,
.wcqcm-modal .woocommerce-checkout-review-order-table .order-total td {
	padding-top: 0.85rem;
	border-bottom: 0;
	font-size: 1.0625rem;
	color: var(--wcqcm-purple);
}

.wcqcm-modal #payment {
	margin: 0;
	padding: 0;
	background: transparent;
	border-radius: 0;
}

.wcqcm-modal #payment ul.payment_methods {
	margin: 0 0 1rem;
	padding: 0;
	border: 0;
	list-style: none;
}

.wcqcm-modal #payment ul.payment_methods li {
	margin: 0;
	padding: 0.65rem 0.85rem;
	border: 2px solid var(--wcqcm-border);
	border-radius: var(--wcqcm-radius);
	background: #fff;
}

.wcqcm-modal #payment ul.payment_methods li label {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--wcqcm-accent);
}

.wcqcm-modal #payment ul.payment_methods li input {
	margin-right: 0.5rem;
	accent-color: var(--wcqcm-purple);
}

.wcqcm-modal #payment div.payment_box {
	margin: 0.5rem 0 0;
	padding: 0.65rem 0.85rem;
	border: 1px dashed var(--wcqcm-border);
	border-radius: calc(var(--wcqcm-radius) * 0.75);
	background: var(--wcqcm-surface);
	color: rgba(26, 34, 56, 0.8);
	font-size: var(--font-size-large, 16px) !important;
	line-height: 1.45;
}

.wcqcm-modal #payment div.payment_box::before {
	display: none;
}

.wcqcm-modal #payment .place-order {
	position: sticky;
	bottom: 0;
	z-index: 2;
	margin: 0;
	padding: 0.85rem 0 0.25rem;
	background: linear-gradient(180deg, rgba(248, 246, 252, 0) 0%, var(--wcqcm-surface) 28%);
}

.wcqcm-modal .wcqcm-place-order,
.wcqcm-modal #place_order.button {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 3rem;
	margin: 0;
	padding: 0.75rem 1.5rem;
	border: 0 !important;
	border-radius: var(--wcqcm-radius);
	background: var(--wcqcm-pink) !important;
	color: #fff !important;
	font-family: var(--wcqcm-font), inherit;
	font-size: 1rem !important;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	transition: transform 0.2s ease, filter 0.2s ease;
}

.wcqcm-modal .wcqcm-place-order:hover,
.wcqcm-modal #place_order.button:hover {
	filter: brightness(1.05);
	transform: translateY(-2px);
}

.wcqcm-modal .btn.pink-brush.wcqcm-place-order {
	width: 100%;
	min-width: 0;
	background: transparent !important;
}

.wcqcm-modal .btn.pink-brush.wcqcm-place-order .btn-label {
	color: #fff;
}

.wcqcm-modal .woocommerce-terms-and-conditions-wrapper {
	margin: 0 0 1rem;
	font-size: 0.8125rem;
	line-height: 1.45;
}
.wcqcm-modal .wcqcm-custom-consents {
	margin: 0 0 0.75rem;
}

.wcqcm-modal .wcqcm-custom-consent {
	margin: 0 0 0.35rem !important;
	font-size: 0.8125rem;
	line-height: 1.45;
	display: flex;
    align-items: flex-start;
    gap: 10px;
}

.wcqcm-modal .wcqcm-custom-consent label {
	display: inline-flex;
	gap: 0.45rem;
	align-items: flex-start;
	font-weight: 500;
	color: rgba(26, 34, 56, 0.86);
}

.wcqcm-modal .wcqcm-custom-consent input[type="checkbox"] {
	margin-top: 4px !important;
	accent-color: var(--wcqcm-purple);
}

.wcqcm-modal .woocommerce-privacy-policy-text {
	margin-bottom: 0.75rem;
	font-size: 0.8125rem;
	color: rgba(26, 34, 56, 0.7);
}

.wcqcm-empty-cart {
	margin: 0;
	padding: 2rem;
	text-align: center;
	font-size: 1rem;
	color: rgba(26, 34, 56, 0.7);
}

.wcqcm-modal-open {
	overflow: hidden;
	height: 100%;
}

/* Ensure flex children can shrink so .wcqcm-modal__body scrolls */
.wcqcm-modal.is-open .wcqcm-modal__dialog {
	display: flex;
	flex-direction: column;
	max-height: min(calc(100vh - 1.5rem), calc(100dvh - 1.5rem));
}

@media (max-width: 768px) {
	.wcqcm-bulk-order--pricing.wcqcm-bulk-order--scroll .wcqcm-pricing-plans__viewport:not(.wcqcm-pricing-plans__viewport--custom-width) {
		--wcqcm-scroll-visible: 1;
	}
}

@media (max-width: 782px) {
	.wcqcm-bulk-order__grid {
		grid-template-columns: 1fr;
	}

	.wcqcm-bulk-order__actions {
		display: block;
	}

	.wcqcm-modal__dialog {
		inset: 0;
		width: 100%;
		max-height: 100dvh;
		border-radius: 0;
		border-width: 0;
	}

	.wcqcm-modal__header {
		padding: 0.85rem 3rem 0.75rem 1rem;
	}

	.wcqcm-modal__body {
		padding: 0.65rem 10px;
	}

	.wcqcm-checkout {
		grid-template-columns: 1fr;
	}

	.wcqcm-checkout__panel--billing {
		border-right: 0;
		border-bottom: 2px solid var(--wcqcm-border);
	}

	.wcqcm-modal #payment .place-order {
		position: static;
		background: transparent;
	}

	.wcqcm-modal .woocommerce-billing-fields__field-wrapper,
	.wcqcm-modal .woocommerce-shipping-fields__field-wrapper {
		grid-template-columns: 1fr;
	}

	.wcqcm-modal #billing_first_name_field,
	.wcqcm-modal #wcqcm_camper_name_field,
	.wcqcm-modal #billing_last_name_field,
	.wcqcm-modal #billing_email_field,
	.wcqcm-modal #billing_email_confirm_field,
	.wcqcm-modal #billing_phone_field,
	.wcqcm-modal #billing_city_field,
	.wcqcm-modal #billing_state_field,
	.wcqcm-modal #billing_country_field,
	.wcqcm-modal #billing_postcode_field,
	.wcqcm-modal #billing_address_1_field,
	.wcqcm-modal #billing_address_2_field,
	.wcqcm-modal #shipping_first_name_field,
	.wcqcm-modal #shipping_last_name_field,
	.wcqcm-modal #shipping_phone_field,
	.wcqcm-modal #shipping_city_field,
	.wcqcm-modal #shipping_state_field,
	.wcqcm-modal #shipping_country_field,
	.wcqcm-modal #shipping_postcode_field,
	.wcqcm-modal #shipping_address_1_field,
	.wcqcm-modal #shipping_address_2_field {
		grid-column: 1 / -1;
	}

	.wcqcm-coupon__row {
		flex-direction: column;
	}

	.wcqcm-coupon__apply {
		width: 100%;
	}
}

/* Thank-you view (in popup after successful checkout) */
.wcqcm-modal.is-thankyou .wcqcm-modal__header--thankyou .wcqcm-modal__brand {
	display: none;
}

.wcqcm-thankyou__layout {
	display: grid;
	gap: 1.5rem 2rem;
	align-items: start;
}

.wcqcm-thankyou__confirm {
	text-align: center;
	padding: 1rem 0.5rem;
}

.wcqcm-thankyou__confirm p {
	font-size: 20px;
}

.wcqcm-thankyou__confirm p.bold-text {
	font-weight: 500;
}

.wcqcm-thankyou__icon {
	color: var(--wcqcm-primary, #2a9d8f);
	margin: 0 auto 1rem;
	width: 4.5rem;
	height: 4.5rem;
}

.wcqcm-thankyou__title {
	margin: 0 0 0.75rem;
	font-family: var(--wcqcm-font), inherit;
	font-size: 1.35rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--wcqcm-accent, #1a2238);
}

.wcqcm-thankyou__email-notice {
	margin: 0 0 1.25rem;
	font-size: 0.9375rem;
	line-height: 1.5;
	color: rgba(26, 34, 56, 0.8);
}

.wcqcm-thankyou__home-btn {
	display: inline-block;
	min-width: 12rem;
	padding: 0.85rem 2rem;
	border-radius: 999px;
	background: var(--wcqcm-primary, #2a9d8f);
	color: #fff !important;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.wcqcm-thankyou__home-btn:hover,
.wcqcm-thankyou__home-btn:focus {
	opacity: 0.9;
	color: #fff;
}

.wcqcm-thankyou__summary {
	padding: 1.1rem 1.25rem;
	background: #fff;
	border: 2px solid var(--wcqcm-border);
	border-radius: var(--wcqcm-radius);
	box-shadow: 0 8px 24px rgba(26, 34, 56, 0.06);
}

.wcqcm-thankyou-summary__details {
	margin: 0 0 1rem;
}

.wcqcm-thankyou-summary__row {
	display: grid;
	grid-template-columns: 5.5rem minmax(0, 1fr);
	gap: 0.35rem 0.75rem;
	margin-bottom: 0.5rem;
	font-size: var(--font-size-x-large, 18px);
}

.wcqcm-thankyou-summary__row dt {
	margin: 0;
	font-weight: 600;
	color: rgba(26, 34, 56, 0.55);
}

.wcqcm-thankyou-summary__row dd {
	margin: 0;
	font-weight: 600;
	color: var(--wcqcm-accent);
}

.wcqcm-thankyou-summary__products {
	margin: 0 0 1rem;
	padding: 0.75rem 0 0;
	border-top: 1px solid var(--wcqcm-border, #e5e7eb);
}

.wcqcm-thankyou-summary__product {
	display: block;
	margin-bottom: 0.65rem;
}

.wcqcm-thankyou-summary__product-name {
	display: block;
	font-size: 18px;
	line-height: 1.35;
	font-weight: 600;
	color: rgba(26, 34, 56, 0.9);
}

.wcqcm-thankyou-summary__product-qty {
	font-weight: 500;
	color: rgba(26, 34, 56, 0.55);
}

.wcqcm-thankyou-summary__product-addon {
	display: block;
	margin-top: 0.2rem;
	line-height: 1.2;
}

.wcqcm-thankyou-summary__product-addon small {
	font-size: 16px;
	line-height: 1.35;
	color: rgba(26, 34, 56, 0.65);
}

.wcqcm-thankyou-summary__policy {
	margin: 0 0 1rem;
	font-size: 14px;
	font-style: italic;
	line-height: 1.45;
	color: rgba(26, 34, 56, 0.65);
}

.wcqcm-thankyou-summary__totals {
	width: 100%;
	border-collapse: collapse;
	font-size: var(--font-size-x-large, 18px);
}

.wcqcm-thankyou-summary__totals th,
.wcqcm-thankyou-summary__totals td {
	padding: 0.35rem 0;
	border: 0;
}

.wcqcm-thankyou-summary__totals th {
	font-weight: 600;
	text-align: left;
	color: rgba(26, 34, 56, 0.7);
}

.wcqcm-thankyou-summary__totals td {
	text-align: right;
	font-weight: 600;
}

.wcqcm-thankyou-summary__totals .wcqcm-thankyou-summary__total th,
.wcqcm-thankyou-summary__totals .wcqcm-thankyou-summary__total td {
	padding-top: 0.65rem;
	font-size: 1.0625rem;
	color: var(--wcqcm-purple);
}

@media (max-width: 768px) {
	.wcqcm-thankyou__layout {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	.wcqcm-modal__overlay,
	.wcqcm-modal.is-open .wcqcm-modal__dialog {
		transition: none;
	}

	.wcqcm-modal__dialog {
		opacity: 1;
		transform: none;
	}
}

.wc-block-components-notice-banner__content strong {
	font-weight: 500 !important;
	font-family: var(--cc-font-baloo-bold) !important;
}