/* Awwal Woo Funnel Booster — all selectors are prefixed to avoid WooHoo/Elementor conflicts. */
body.awf-drawer-open {
	overflow: hidden !important;
}

.awf-overlay {
	position: fixed;
	inset: 0;
	z-index: 999998;
	background: rgba(0, 0, 0, 0.42);
	opacity: 0;
	visibility: hidden;
	transition: opacity .25s ease, visibility .25s ease;
}

.awf-overlay.is-open {
	opacity: 1;
	visibility: visible;
}

.awf-drawer {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 999999;
	width: min(var(--awf-drawer-width, 520px), 100%);
	height: 100vh;
	height: 100dvh;
	background: #fff;
	color: #171717;
	box-shadow: -16px 0 42px rgba(0, 0, 0, .16);
	transform: translateX(105%);
	transition: transform .3s ease;
	font-family: inherit;
	text-align: left;
}

.awf-drawer *,
.awf-bundle-box * {
	box-sizing: border-box;
}

.awf-drawer.is-open {
	transform: translateX(0);
}

.awf-drawer-inner {
	height: 100%;
	display: flex;
	flex-direction: column;
}

.awf-drawer-loading {
	position: absolute;
	inset: 0;
	z-index: 3;
	display: none;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 10px;
	background: rgba(255, 255, 255, .82);
	backdrop-filter: blur(2px);
	font-size: 14px;
}

.awf-drawer.is-loading .awf-drawer-loading {
	display: flex;
}

.awf-spinner {
	width: 28px;
	height: 28px;
	border: 3px solid #ddd;
	border-top-color: var(--awf-accent, #67c9a5);
	border-radius: 50%;
	animation: awf-spin .7s linear infinite;
}

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

.awf-drawer-header {
	min-height: 112px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	padding: 32px 40px 20px;
	border-bottom: 1px solid #eee;
}

.awf-drawer-header h2 {
	margin: 0 0 8px;
	font: inherit;
	font-size: 23px;
	line-height: 1.2;
	font-weight: 700;
	color: #141414;
}

.awf-drawer-header p {
	margin: 0;
	font-size: 14px;
	color: #666;
}

.awf-close {
	width: 38px;
	height: 38px;
	display: grid;
	place-items: center;
	padding: 0;
	border: 0;
	background: transparent;
	color: #111;
	font-size: 36px;
	line-height: 1;
	cursor: pointer;
}

.awf-drawer-scroll {
	flex: 1;
	min-height: 0;
	overflow-y: auto;
	padding: 18px 40px 28px;
	scrollbar-width: thin;
}

.awf-shipping-progress {
	margin-bottom: 18px;
}

.awf-progress-track {
	position: relative;
	height: 13px;
	background: #edf0ef;
	border-radius: 999px;
	overflow: visible;
}

.awf-progress-bar {
	position: relative;
	height: 100%;
	min-width: 0;
	background: var(--awf-accent, #67c9a5);
	border-radius: inherit;
	transition: width .3s ease;
}

.awf-progress-bar span {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 11px;
	font-weight: 700;
	color: #fff;
}

.awf-truck {
	position: absolute;
	right: -2px;
	top: 50%;
	transform: translateY(-55%);
	width: 31px;
	font-size: 20px;
	line-height: 1;
}

.awf-shipping-progress p {
	margin: 12px 0 0;
	font-size: 13px;
	color: #5d5d5d;
}

.awf-delivery {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 22px;
	padding: 13px 14px;
	background: #f7f8f8;
	border: 1px solid #eceeee;
	border-radius: 4px;
}

.awf-delivery-icon {
	font-size: 21px;
}

.awf-delivery div {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.awf-delivery strong {
	font-size: 13px;
	color: #181818;
}

.awf-delivery span:not(.awf-delivery-icon) {
	font-size: 12px;
	color: #666;
}

.awf-recommendations {
	margin: 0 0 24px;
	padding-bottom: 22px;
	border-bottom: 1px solid #eee;
}

.awf-section-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 14px;
}

.awf-section-heading h3 {
	margin: 0;
	font: inherit;
	font-size: 18px;
	font-weight: 700;
	color: #171717;
}

.awf-slider-buttons {
	display: flex;
	gap: 8px;
}

.awf-slider-buttons button {
	width: 36px;
	height: 36px;
	padding: 0;
	display: grid;
	place-items: center;
	border: 1px solid #ddd;
	border-radius: 50%;
	background: #fff;
	color: #333;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
}

.awf-rec-track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(265px, 88%);
	gap: 12px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.awf-rec-track::-webkit-scrollbar {
	display: none;
}

.awf-rec-card {
	scroll-snap-align: start;
	display: grid;
	grid-template-columns: 82px minmax(0, 1fr);
	gap: 14px;
	min-height: 112px;
	padding: 12px;
	border: 1px solid #ededed;
	background: #fff;
}

.awf-rec-image {
	display: block;
	background: #f5f5f5;
}

.awf-rec-image img {
	width: 100%;
	height: 100%;
	min-height: 88px;
	object-fit: contain;
	display: block;
}

.awf-rec-content {
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 5px;
}

.awf-rec-title {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	color: #1b1b1b;
	text-decoration: none;
	font-size: 13px;
	line-height: 1.45;
}

.awf-rec-price {
	font-size: 13px;
	color: #333;
}

.awf-rec-price del {
	opacity: .55;
}

.awf-rec-price ins {
	text-decoration: none;
	color: #e34537;
	font-weight: 700;
}

.awf-add-rec {
	margin-top: auto;
	padding: 5px 11px;
	border: 1px solid #222;
	background: #fff;
	color: #222;
	font: inherit;
	font-size: 11px;
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
	cursor: pointer;
}

.awf-cart-items {
	display: flex;
	flex-direction: column;
}

.awf-cart-item {
	display: grid;
	grid-template-columns: 94px minmax(0, 1fr);
	gap: 16px;
	padding: 18px 0;
	border-bottom: 1px solid #eee;
}

.awf-cart-item-image {
	background: #f7f7f7;
}

.awf-cart-item-image img {
	width: 100%;
	height: 122px;
	object-fit: contain;
	display: block;
}

.awf-cart-item-info {
	min-width: 0;
	display: flex;
	flex-direction: column;
}

.awf-cart-item-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 10px;
}

.awf-cart-item h3 {
	margin: 0 0 8px;
	font: inherit;
	font-size: 14px;
	line-height: 1.45;
	font-weight: 600;
}

.awf-cart-item h3 a {
	color: #1b1b1b;
	text-decoration: none;
}

.awf-remove-item {
	flex: 0 0 auto;
	width: 26px;
	height: 26px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #777;
	font-size: 23px;
	line-height: 1;
	cursor: pointer;
}

.awf-cart-item .variation,
.awf-cart-item .wc-item-meta {
	margin: 0 0 10px;
	font-size: 11px;
	color: #777;
}

.awf-cart-item-bottom {
	margin-top: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
}

.awf-cart-item-bottom strong {
	font-size: 14px;
	white-space: nowrap;
}

.awf-qty {
	display: grid;
	grid-template-columns: 30px 36px 30px;
	height: 34px;
	border: 1px solid #ddd;
}

.awf-qty button,
.awf-qty input {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	background: #fff;
	color: #222;
	text-align: center;
	font: inherit;
	font-size: 14px;
}

.awf-qty button {
	cursor: pointer;
}

.awf-qty input {
	appearance: textfield;
	border-left: 1px solid #eee;
	border-right: 1px solid #eee;
}

.awf-qty input::-webkit-outer-spin-button,
.awf-qty input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.awf-drawer-footer {
	flex: 0 0 auto;
	padding: 20px 40px 30px;
	border-top: 1px solid #e9e9e9;
	background: #fff;
	box-shadow: 0 -10px 26px rgba(0, 0, 0, .04);
}

.awf-total-line {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 12px;
	font-size: 13px;
}

.awf-total-line strong {
	font-size: 15px;
}

.awf-grand-total {
	margin-bottom: 18px;
	font-size: 15px;
	font-weight: 700;
}

.awf-grand-total strong {
	font-size: 20px;
}

.awf-primary-button,
.awf-secondary-button {
	width: 100%;
	min-height: 54px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px 20px;
	border: 1px solid #222;
	border-radius: 0;
	font: inherit;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .03em;
	text-align: center;
	text-decoration: none !important;
	text-transform: uppercase;
	transition: opacity .2s ease;
}

.awf-primary-button {
	background: #222;
	color: #fff !important;
}

.awf-secondary-button {
	margin-top: 11px;
	background: #fff;
	color: #222 !important;
}

.awf-primary-button:hover,
.awf-secondary-button:hover {
	opacity: .82;
}

.awf-empty {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 50px 38px;
	text-align: center;
}

.awf-empty-icon {
	font-size: 48px;
}

.awf-empty h3 {
	margin: 15px 0 8px;
	font: inherit;
	font-size: 22px;
	font-weight: 700;
}

.awf-empty p {
	margin: 0 0 22px;
	color: #666;
}

/* Product-page breadcrumbs, live viewers, and delivery estimate */
.awf-product-breadcrumb {
	width: 100%;
	margin: 0 0 22px;
	padding: 0;
	color: #8a8a8a;
	font-family: inherit;
	font-size: 12px;
	line-height: 1.6;
	text-align: left;
}

.awf-product-breadcrumb a {
	color: #777;
	text-decoration: none;
	transition: color .2s ease;
}

.awf-product-breadcrumb a:hover {
	color: #171717;
}

.awf-breadcrumb-separator {
	display: inline-block;
	margin: 0 8px;
	color: #b4b4b4;
}

.awf-breadcrumb-current {
	color: #555;
}

.awf-product-purchase-info {
	clear: both;
	display: flex;
	flex-direction: column;
	gap: 0;
	margin: 18px 0 8px;
	padding: 0;
	border-top: 1px solid #ececec;
	border-bottom: 1px solid #ececec;
	color: #242424;
	font-family: inherit;
	text-align: left;
}

.awf-live-viewers,
.awf-product-delivery-estimate {
	display: flex;
	align-items: center;
	gap: 11px;
	min-height: 48px;
	padding: 10px 2px;
	font-size: 12px;
	line-height: 1.45;
}

.awf-live-viewers + .awf-product-delivery-estimate {
	border-top: 1px solid #f0f0f0;
}

.awf-eye-icon,
.awf-delivery-truck-icon {
	position: relative;
	flex: 0 0 19px;
	width: 19px;
	height: 19px;
	display: grid;
	place-items: center;
	color: #383838;
}

.awf-eye-icon::after {
	content: '';
	position: absolute;
	right: -2px;
	top: -1px;
	width: 6px;
	height: 6px;
	border: 2px solid #fff;
	border-radius: 50%;
	background: var(--awf-accent, #67c9a5);
	box-shadow: 0 0 0 0 rgba(103, 201, 165, .45);
	animation: awf-viewer-pulse 1.8s ease-out infinite;
}

.awf-eye-icon svg,
.awf-delivery-truck-icon svg {
	width: 19px;
	height: 19px;
	display: block;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.65;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.awf-viewer-message {
	display: inline;
}

.awf-viewer-count {
	font-weight: 700;
}

.awf-live-viewers:not(.is-updated) .awf-viewer-message {
	opacity: .78;
}

.awf-product-delivery-estimate > div {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 4px 7px;
}

.awf-product-delivery-estimate strong {
	font-size: 12px;
	font-weight: 700;
}

.awf-product-delivery-estimate strong::after {
	content: ':';
}

.awf-product-delivery-estimate span:not(.awf-delivery-truck-icon) {
	color: #555;
}

@keyframes awf-viewer-pulse {
	0% { box-shadow: 0 0 0 0 rgba(103, 201, 165, .45); }
	70% { box-shadow: 0 0 0 7px rgba(103, 201, 165, 0); }
	100% { box-shadow: 0 0 0 0 rgba(103, 201, 165, 0); }
}

/* Use WooCommerce/WooHoo's existing main product button as the only Buy Now button. */
body.awf-funnel-enabled.single-product form.cart .single_add_to_cart_button {
	min-width: 190px;
	min-height: 58px;
	padding: 14px 24px !important;
	border-radius: 0 !important;
	background: #111 !important;
	color: #fff !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	letter-spacing: .04em;
	text-transform: uppercase;
}

body.awf-funnel-enabled.single-product form.cart .single_add_to_cart_button.is-loading,
body.awf-funnel-enabled.single-product form.cart .single_add_to_cart_button.awf-is-processing {
	opacity: .65;
	cursor: wait !important;
	pointer-events: none;
}

/* Bundle box */
.awf-bundle-box {
	clear: both;
	margin: 28px 0;
	padding: 22px;
	border: 1px solid #dedede;
	border-radius: 4px;
	background: #fff;
	color: #171717;
	font-family: inherit;
	text-align: left;
}

.awf-bundle-heading,
.awf-bundle-action {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.awf-bundle-kicker {
	display: block;
	margin-bottom: 3px;
	color: var(--awf-accent, #67c9a5);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.awf-bundle-heading h3 {
	margin: 0;
	font: inherit;
	font-size: 21px;
	font-weight: 700;
}

.awf-bundle-badge {
	flex: 0 0 auto;
	padding: 7px 10px;
	background: var(--awf-accent, #67c9a5);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
}

.awf-bundle-products {
	margin: 18px 0;
	border-top: 1px solid #eee;
}

.awf-bundle-product {
	position: relative;
	display: grid;
	grid-template-columns: 24px 68px minmax(0, 1fr);
	align-items: center;
	gap: 13px;
	min-height: 88px;
	margin: 0;
	padding: 10px 0;
	border-bottom: 1px solid #eee;
	cursor: default;
}

.awf-bundle-product input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.awf-bundle-check {
	width: 20px;
	height: 20px;
	display: grid;
	place-items: center;
	border: 1px solid #aaa;
	background: #fff;
	color: transparent;
	font-size: 13px;
}

.awf-bundle-checkbox:checked + .awf-bundle-check,
.awf-fixed-check {
	border-color: var(--awf-accent, #67c9a5);
	background: var(--awf-accent, #67c9a5);
	color: #fff;
}

.awf-bundle-thumb {
	display: block;
	background: #f6f6f6;
}

.awf-bundle-thumb img {
	width: 68px;
	height: 68px;
	display: block;
	object-fit: contain;
}

.awf-bundle-info {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.awf-bundle-info strong {
	font-size: 13px;
	line-height: 1.4;
}

.awf-bundle-info span {
	font-size: 12px;
	color: #666;
}

.awf-bundle-check {
	cursor: pointer;
}

.awf-bundle-product.is-unselected {
	opacity: .58;
}

.awf-bundle-variation-select {
	width: 100%;
	max-width: 260px;
	min-height: 36px;
	margin-top: 5px;
	padding: 6px 34px 6px 10px;
	border: 1px solid #d8d8d8;
	border-radius: 0;
	background-color: #fff;
	color: #222;
	font: inherit;
	font-size: 12px;
	line-height: 1.35;
	cursor: pointer;
}

.awf-bundle-variation-select:focus {
	border-color: #222;
	outline: 1px solid #222;
	outline-offset: 0;
}

.awf-bundle-item-price {
	display: block;
}

.awf-bundle-action > div {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.awf-bundle-action > div span {
	font-size: 12px;
	color: #666;
}

.awf-bundle-total {
	font-size: 21px;
}

.awf-add-bundle {
	min-height: 48px !important;
	margin: 0 !important;
	padding: 10px 20px !important;
	border-radius: 0 !important;
	background: #222 !important;
	color: #fff !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	text-transform: uppercase;
}

.awf-add-bundle.is-loading,
.awf-add-rec.is-loading {
	opacity: .65;
	cursor: wait;
}

@media (max-width: 767px) {
	.awf-drawer {
		width: 100%;
	}

	.awf-drawer-header {
		min-height: 92px;
		padding: 24px 20px 16px;
	}

	.awf-drawer-scroll {
		padding: 16px 20px 24px;
	}

	.awf-drawer-footer {
		padding: 17px 20px 22px;
	}

	.awf-cart-item {
		grid-template-columns: 78px minmax(0, 1fr);
		gap: 12px;
	}

	.awf-cart-item-image img {
		height: 104px;
	}

	body.awf-funnel-enabled.single-product form.cart .single_add_to_cart_button {
		width: 100%;
		min-width: 0;
		margin-top: 10px !important;
	}

	.awf-bundle-box {
		padding: 18px;
	}

	.awf-bundle-heading,
	.awf-bundle-action {
		align-items: stretch;
		flex-direction: column;
	}

	.awf-bundle-badge {
		align-self: flex-start;
	}

	.awf-bundle-variation-select {
		max-width: 100%;
	}

	.awf-add-bundle {
		width: 100%;
	}

	.awf-rec-track {
		grid-auto-columns: 94%;
	}

	.awf-product-breadcrumb {
		margin-bottom: 16px;
		font-size: 11px;
	}

	.awf-product-purchase-info {
		margin-top: 15px;
	}

	.awf-live-viewers,
	.awf-product-delivery-estimate {
		min-height: 45px;
		font-size: 11px;
	}
}

/* =========================================================
   v1.3.0 — Shopify-inspired WooCommerce cart and checkout
   Scoped behind body.awf-shopify-pages to avoid theme-wide changes.
========================================================= */
body.awf-shopify-pages.woocommerce-cart,
body.awf-shopify-pages.woocommerce-checkout {
	background: #f6f6f4;
}

body.awf-shopify-pages.woocommerce-cart .site-content,
body.awf-shopify-pages.woocommerce-checkout .site-content,
body.awf-shopify-pages.woocommerce-cart main,
body.awf-shopify-pages.woocommerce-checkout main {
	background: transparent;
}

body.awf-shopify-pages.woocommerce-cart .woocommerce,
body.awf-shopify-pages.woocommerce-checkout .woocommerce {
	font-family: inherit;
	color: #1f1f1f;
}

/* Preserve important checkout errors, remove the old success/login/step clutter. */
body.awf-shopify-pages.woocommerce-checkout .woocommerce-message,
body.awf-shopify-pages.woocommerce-checkout .woocommerce-form-login-toggle,
body.awf-shopify-pages.woocommerce-checkout form.woocommerce-form-login,
body.awf-shopify-pages.woocommerce-checkout .checkout_steps,
body.awf-shopify-pages.woocommerce-checkout .checkout-steps,
body.awf-shopify-pages.woocommerce-checkout .woocommerce-checkout-steps,
body.awf-shopify-pages.woocommerce-checkout .woocommerce_checkout_steps,
body.awf-shopify-pages.woocommerce-checkout .trx_addons_woocommerce_checkout_steps,
body.awf-shopify-pages.woocommerce-checkout .sc_layouts_checkout_steps,
body.awf-shopify-pages.woocommerce-checkout .woocommerce-progress,
body.awf-shopify-pages.woocommerce-checkout .checkout-progress {
	display: none !important;
}

/* Coupon stays visible and clickable. */
body.awf-shopify-pages.woocommerce-checkout .woocommerce-form-coupon-toggle {
	display: block !important;
	max-width: 1240px;
	margin: 0 auto 18px;
	padding: 0;
	background: transparent;
	border: 0;
}

body.awf-shopify-pages.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info {
	margin: 0 !important;
	padding: 15px 18px !important;
	border: 1px solid #dededb !important;
	border-radius: 10px;
	background: #fff !important;
	color: #555 !important;
	font-size: 14px;
	line-height: 1.5;
}

body.awf-shopify-pages.woocommerce-checkout .woocommerce-form-coupon-toggle .showcoupon {
	color: #111 !important;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
}

body.awf-shopify-pages.woocommerce-checkout form.checkout_coupon {
	max-width: 1240px;
	margin: 0 auto 22px !important;
	padding: 18px !important;
	border: 1px solid #dededb !important;
	border-radius: 10px;
	background: #fff;
}

body.awf-shopify-pages.woocommerce-checkout form.checkout_coupon .form-row {
	margin: 0 !important;
}

body.awf-shopify-pages.woocommerce-checkout form.checkout_coupon .form-row-first {
	width: calc(100% - 170px) !important;
}

body.awf-shopify-pages.woocommerce-checkout form.checkout_coupon .form-row-last {
	width: 158px !important;
}

/* Checkout two-column Shopify-style layout. */
body.awf-shopify-pages.woocommerce-checkout form.checkout.woocommerce-checkout {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
	grid-template-rows: auto auto;
	align-items: start;
	gap: 14px 42px;
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
}

body.awf-shopify-pages.woocommerce-checkout #customer_details {
	grid-column: 1;
	grid-row: 1 / span 2;
	width: 100%;
	margin: 0;
	padding: 30px;
	border: 1px solid #dededb;
	border-radius: 12px;
	background: #fff;
}

body.awf-shopify-pages.woocommerce-checkout #customer_details .col-1,
body.awf-shopify-pages.woocommerce-checkout #customer_details .col-2 {
	float: none !important;
	width: 100% !important;
}

body.awf-shopify-pages.woocommerce-checkout #customer_details .col-2 {
	margin-top: 26px;
}

body.awf-shopify-pages.woocommerce-checkout #customer_details h3,
body.awf-shopify-pages.woocommerce-checkout #order_review_heading {
	margin: 0 0 20px !important;
	padding: 0 !important;
	border: 0 !important;
	font-family: inherit;
	font-size: 22px;
	line-height: 1.3;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: none;
	color: #1a1a1a;
}

body.awf-shopify-pages.woocommerce-checkout #order_review_heading {
	grid-column: 2;
	grid-row: 1;
	margin-bottom: 0 !important;
	padding: 0 3px !important;
}

body.awf-shopify-pages.woocommerce-checkout #order_review {
	grid-column: 2;
	grid-row: 2;
	position: sticky;
	top: 24px;
	width: 100%;
	margin: 0;
	padding: 24px;
	border: 1px solid #dededb;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 8px 28px rgba(0, 0, 0, .045);
}

/* Shopify-like fields. */
body.awf-shopify-pages.woocommerce-checkout .form-row {
	margin: 0 0 15px !important;
}

body.awf-shopify-pages.woocommerce-checkout .form-row label {
	margin-bottom: 7px;
	font-size: 13px;
	line-height: 1.4;
	font-weight: 600;
	color: #343434;
}

body.awf-shopify-pages.woocommerce-checkout input.input-text,
body.awf-shopify-pages.woocommerce-checkout textarea,
body.awf-shopify-pages.woocommerce-checkout select,
body.awf-shopify-pages.woocommerce-checkout .select2-container .select2-selection--single,
body.awf-shopify-pages.woocommerce-cart .coupon input.input-text {
	min-height: 50px;
	margin: 0 !important;
	padding: 12px 14px !important;
	border: 1px solid #cfcfca !important;
	border-radius: 8px !important;
	background: #fff !important;
	box-shadow: none !important;
	font-family: inherit;
	font-size: 14px !important;
	color: #1c1c1c !important;
	transition: border-color .18s ease, box-shadow .18s ease;
}

body.awf-shopify-pages.woocommerce-checkout textarea {
	min-height: 110px;
	resize: vertical;
}

body.awf-shopify-pages.woocommerce-checkout input.input-text:focus,
body.awf-shopify-pages.woocommerce-checkout textarea:focus,
body.awf-shopify-pages.woocommerce-checkout select:focus,
body.awf-shopify-pages.woocommerce-cart .coupon input.input-text:focus {
	outline: none;
	border-color: #111 !important;
	box-shadow: 0 0 0 1px #111 !important;
}

body.awf-shopify-pages.woocommerce-checkout .select2-container .select2-selection--single .select2-selection__rendered {
	line-height: 48px;
	padding-left: 0;
}

body.awf-shopify-pages.woocommerce-checkout .select2-container .select2-selection--single .select2-selection__arrow {
	height: 48px;
}

/* Order summary and payment. */
body.awf-shopify-pages.woocommerce-checkout #order_review table.shop_table {
	margin: 0 0 18px !important;
	border: 0 !important;
	border-collapse: collapse;
	background: transparent;
}

body.awf-shopify-pages.woocommerce-checkout #order_review table.shop_table th,
body.awf-shopify-pages.woocommerce-checkout #order_review table.shop_table td {
	padding: 13px 0 !important;
	border: 0 !important;
	border-bottom: 1px solid #ececea !important;
	font-size: 14px;
	line-height: 1.45;
	vertical-align: top;
}

body.awf-shopify-pages.woocommerce-checkout #order_review table.shop_table th:last-child,
body.awf-shopify-pages.woocommerce-checkout #order_review table.shop_table td:last-child {
	text-align: right;
}

body.awf-shopify-pages.woocommerce-checkout #order_review .order-total th,
body.awf-shopify-pages.woocommerce-checkout #order_review .order-total td {
	padding-top: 17px !important;
	border-bottom: 0 !important;
	font-size: 18px;
	font-weight: 700;
}

body.awf-shopify-pages.woocommerce-checkout #payment {
	margin: 0 !important;
	padding: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
}

body.awf-shopify-pages.woocommerce-checkout #payment ul.payment_methods {
	margin: 0 0 18px !important;
	padding: 0 !important;
	border: 1px solid #e0e0dd !important;
	border-radius: 9px;
	overflow: hidden;
	background: #fff;
}

body.awf-shopify-pages.woocommerce-checkout #payment ul.payment_methods li {
	margin: 0 !important;
	padding: 14px 15px !important;
	border-bottom: 1px solid #ececea;
}

body.awf-shopify-pages.woocommerce-checkout #payment ul.payment_methods li:last-child {
	border-bottom: 0;
}

body.awf-shopify-pages.woocommerce-checkout #payment div.payment_box {
	margin: 12px 0 0 !important;
	padding: 13px !important;
	border-radius: 7px;
	background: #f5f5f3 !important;
	font-size: 13px;
}

body.awf-shopify-pages.woocommerce-checkout #payment div.payment_box::before {
	border-bottom-color: #f5f5f3 !important;
}

body.awf-shopify-pages.woocommerce-checkout #payment .place-order {
	margin: 0 !important;
	padding: 0 !important;
}

body.awf-shopify-pages.woocommerce-checkout #place_order,
body.awf-shopify-pages.woocommerce-checkout button.button,
body.awf-shopify-pages.woocommerce-cart button.button,
body.awf-shopify-pages.woocommerce-cart a.checkout-button {
	min-height: 52px;
	padding: 13px 22px !important;
	border: 1px solid #151515 !important;
	border-radius: 8px !important;
	background: #151515 !important;
	color: #fff !important;
	font-family: inherit;
	font-size: 14px !important;
	font-weight: 700 !important;
	letter-spacing: .01em;
	text-transform: none !important;
	box-shadow: none !important;
	transition: transform .15s ease, opacity .15s ease;
}

body.awf-shopify-pages.woocommerce-checkout #place_order {
	width: 100%;
	font-size: 16px !important;
}

body.awf-shopify-pages.woocommerce-checkout #place_order:hover,
body.awf-shopify-pages.woocommerce-cart button.button:hover,
body.awf-shopify-pages.woocommerce-cart a.checkout-button:hover {
	opacity: .88;
	transform: translateY(-1px);
}

/* Cart page layout. */
body.awf-shopify-pages.woocommerce-cart .woocommerce {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(330px, 390px);
	align-items: start;
	gap: 32px;
	max-width: 1240px;
	margin: 0 auto;
}

body.awf-shopify-pages.woocommerce-cart .woocommerce > .woocommerce-notices-wrapper,
body.awf-shopify-pages.woocommerce-cart .woocommerce > .woocommerce-message,
body.awf-shopify-pages.woocommerce-cart .woocommerce > .woocommerce-error,
body.awf-shopify-pages.woocommerce-cart .woocommerce > .cart-empty,
body.awf-shopify-pages.woocommerce-cart .woocommerce > .return-to-shop,
body.awf-shopify-pages.woocommerce-cart .woocommerce > .cross-sells {
	grid-column: 1 / -1;
}

body.awf-shopify-pages.woocommerce-cart .woocommerce-cart-form {
	grid-column: 1;
	margin: 0;
}

body.awf-shopify-pages.woocommerce-cart .cart-collaterals {
	grid-column: 2;
	position: sticky;
	top: 24px;
	width: 100% !important;
	margin: 0 !important;
}

body.awf-shopify-pages.woocommerce-cart .cart-collaterals .cart_totals {
	float: none !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 24px;
	border: 1px solid #dededb;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 8px 28px rgba(0, 0, 0, .045);
}

body.awf-shopify-pages.woocommerce-cart .cart-collaterals .cart_totals h2 {
	margin: 0 0 18px;
	font-family: inherit;
	font-size: 22px;
	font-weight: 700;
	text-transform: none;
}

body.awf-shopify-pages.woocommerce-cart table.shop_table.cart {
	margin: 0 !important;
	border: 1px solid #dededb !important;
	border-radius: 12px;
	border-collapse: separate;
	border-spacing: 0;
	overflow: hidden;
	background: #fff;
}

body.awf-shopify-pages.woocommerce-cart table.shop_table.cart th {
	padding: 15px 18px !important;
	border: 0 !important;
	border-bottom: 1px solid #ececea !important;
	background: #fafaf8;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: #555;
}

body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td {
	padding: 18px !important;
	border: 0 !important;
	border-bottom: 1px solid #eeeeeb !important;
	vertical-align: middle;
	font-size: 14px;
}

body.awf-shopify-pages.woocommerce-cart table.shop_table.cart tr:last-child td {
	border-bottom: 0 !important;
}

body.awf-shopify-pages.woocommerce-cart table.shop_table.cart img {
	width: 92px !important;
	height: 112px !important;
	border-radius: 8px;
	background: #f5f5f3;
	object-fit: contain;
}

body.awf-shopify-pages.woocommerce-cart .product-name a {
	color: #1c1c1c;
	font-weight: 650;
	text-decoration: none;
}

body.awf-shopify-pages.woocommerce-cart .product-remove a.remove {
	color: #777 !important;
	font-size: 22px !important;
}

body.awf-shopify-pages.woocommerce-cart .quantity .qty {
	width: 74px !important;
	min-height: 44px;
	padding: 8px !important;
	border: 1px solid #cfcfca !important;
	border-radius: 7px !important;
	background: #fff;
	font-size: 14px;
	text-align: center;
}

body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.actions {
	padding: 16px 18px !important;
	background: #fafaf8;
}

body.awf-shopify-pages.woocommerce-cart .actions .coupon {
	display: flex;
	align-items: center;
	gap: 9px;
}

body.awf-shopify-pages.woocommerce-cart .actions .coupon input.input-text {
	width: 220px !important;
}

body.awf-shopify-pages.woocommerce-cart .cart_totals table.shop_table {
	margin: 0 0 20px !important;
	border: 0 !important;
	border-collapse: collapse;
}

body.awf-shopify-pages.woocommerce-cart .cart_totals table.shop_table th,
body.awf-shopify-pages.woocommerce-cart .cart_totals table.shop_table td {
	padding: 13px 0 !important;
	border: 0 !important;
	border-bottom: 1px solid #ececea !important;
	font-size: 14px;
}

body.awf-shopify-pages.woocommerce-cart .cart_totals table.shop_table td {
	text-align: right;
}

body.awf-shopify-pages.woocommerce-cart .cart_totals .order-total th,
body.awf-shopify-pages.woocommerce-cart .cart_totals .order-total td {
	padding-top: 17px !important;
	border-bottom: 0 !important;
	font-size: 18px;
	font-weight: 700;
}

body.awf-shopify-pages.woocommerce-cart .wc-proceed-to-checkout {
	padding: 0 !important;
}

body.awf-shopify-pages.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
	width: 100%;
	margin: 0 !important;
	font-size: 16px !important;
}

/* Larger product-viewer and expected-delivery typography. */
.awf-live-viewers,
.awf-product-delivery-estimate {
	min-height: 54px;
	padding-top: 13px;
	padding-bottom: 13px;
	font-size: 14px;
	line-height: 1.5;
}

.awf-viewer-count {
	font-size: 15px;
}

.awf-product-delivery-estimate strong {
	font-size: 14px;
}

.awf-product-delivery-estimate span:not(.awf-delivery-truck-icon) {
	font-size: 14px;
}

.awf-eye-icon,
.awf-delivery-truck-icon,
.awf-eye-icon svg,
.awf-delivery-truck-icon svg {
	width: 21px;
	height: 21px;
	flex-basis: 21px;
}

@media (max-width: 980px) {
	body.awf-shopify-pages.woocommerce-checkout form.checkout.woocommerce-checkout,
	body.awf-shopify-pages.woocommerce-cart .woocommerce {
		display: block !important;
	}

	body.awf-shopify-pages.woocommerce-checkout #customer_details,
	body.awf-shopify-pages.woocommerce-checkout #order_review,
	body.awf-shopify-pages.woocommerce-cart .cart-collaterals {
		position: static;
		width: 100%;
	}

	body.awf-shopify-pages.woocommerce-checkout #order_review_heading {
		margin: 28px 0 14px !important;
	}

	body.awf-shopify-pages.woocommerce-cart .cart-collaterals {
		margin-top: 24px !important;
	}
}

@media (max-width: 767px) {
	body.awf-shopify-pages.woocommerce-checkout #customer_details,
	body.awf-shopify-pages.woocommerce-checkout #order_review,
	body.awf-shopify-pages.woocommerce-cart .cart-collaterals .cart_totals {
		padding: 18px;
		border-radius: 10px;
	}

	body.awf-shopify-pages.woocommerce-checkout #customer_details h3,
	body.awf-shopify-pages.woocommerce-checkout #order_review_heading,
	body.awf-shopify-pages.woocommerce-cart .cart-collaterals .cart_totals h2 {
		font-size: 20px;
	}

	body.awf-shopify-pages.woocommerce-checkout form.checkout_coupon .form-row-first,
	body.awf-shopify-pages.woocommerce-checkout form.checkout_coupon .form-row-last {
		float: none !important;
		width: 100% !important;
	}

	body.awf-shopify-pages.woocommerce-checkout form.checkout_coupon .form-row-last {
		margin-top: 10px !important;
	}

	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.actions .coupon {
		float: none !important;
		width: 100%;
		flex-direction: column;
		align-items: stretch;
	}

	body.awf-shopify-pages.woocommerce-cart .actions .coupon input.input-text,
	body.awf-shopify-pages.woocommerce-cart .actions .coupon button {
		width: 100% !important;
	}

	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.actions > button {
		width: 100%;
		margin-top: 10px;
	}

	.awf-live-viewers,
	.awf-product-delivery-estimate {
		min-height: 50px;
		font-size: 13px;
	}

	.awf-viewer-count,
	.awf-product-delivery-estimate strong,
	.awf-product-delivery-estimate span:not(.awf-delivery-truck-icon) {
		font-size: 13px;
	}
}


/* =========================================================
   v1.5.0 — Unified Verda black/white bundle UI
========================================================= */
body.single-product .awf-bundle-box {
	--awf-ui-ink: #111111;
	--awf-ui-muted: #6f6f6f;
	--awf-ui-line: #e4e4e4;
	--awf-ui-soft: #f7f7f7;
	width: 100%;
	margin: 26px 0 22px;
	padding: 24px;
	border: 1px solid var(--awf-ui-line);
	border-radius: 3px;
	background: #fff;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .035);
	color: var(--awf-ui-ink);
	font-family: inherit !important;
}

body.single-product .awf-bundle-heading {
	align-items: flex-start;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--awf-ui-line);
}

body.single-product .awf-bundle-heading > div {
	min-width: 0;
}

body.single-product .awf-bundle-kicker {
	margin: 0 0 6px;
	color: var(--awf-ui-ink);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
}

body.single-product .awf-bundle-heading h3 {
	margin: 0;
	color: var(--awf-ui-ink);
	font-family: inherit !important;
	font-size: clamp(19px, 2vw, 23px);
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: 0;
	text-transform: none;
}

body.single-product .awf-bundle-heading p {
	max-width: 520px;
	margin: 8px 0 0;
	color: var(--awf-ui-muted);
	font-size: 13px;
	line-height: 1.55;
}

body.single-product .awf-bundle-badge {
	padding: 8px 11px;
	border: 1px solid var(--awf-ui-ink);
	border-radius: 2px;
	background: var(--awf-ui-ink);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .05em;
	white-space: nowrap;
}

body.single-product .awf-bundle-products {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 16px 0 18px;
	border: 0;
}

body.single-product .awf-bundle-product {
	grid-template-columns: 24px 66px minmax(0, 1fr);
	align-items: center;
	gap: 13px;
	min-height: 0;
	padding: 13px;
	border: 1px solid var(--awf-ui-line);
	border-radius: 3px;
	background: #fff;
	transition: border-color .2s ease, background-color .2s ease, opacity .2s ease, box-shadow .2s ease;
}

body.single-product .awf-bundle-product:hover {
	border-color: #c9c9c9;
}

body.single-product .awf-bundle-product.awf-bundle-main {
	background: var(--awf-ui-soft);
}

body.single-product .awf-bundle-product.has-error,
body.single-product .awf-bundle-product.is-unavailable {
	border-color: #c7342e;
	box-shadow: 0 0 0 1px rgba(199, 52, 46, .08);
}

body.single-product .awf-bundle-product.is-unselected {
	opacity: .52;
	background: #fafafa;
}

body.single-product .awf-bundle-check {
	width: 22px;
	height: 22px;
	border: 1px solid #9b9b9b;
	border-radius: 2px;
	background: #fff;
	font-size: 13px;
	font-weight: 700;
}

body.single-product .awf-bundle-checkbox:checked + .awf-bundle-check,
body.single-product .awf-fixed-check {
	border-color: var(--awf-ui-ink);
	background: var(--awf-ui-ink);
	color: #fff;
}

body.single-product .awf-bundle-thumb {
	overflow: hidden;
	border: 1px solid #ededed;
	border-radius: 2px;
	background: #f8f8f8;
}

body.single-product .awf-bundle-thumb img {
	width: 66px;
	height: 76px;
	object-fit: contain;
}

body.single-product .awf-bundle-info {
	gap: 7px;
}

body.single-product .awf-bundle-current-label {
	color: var(--awf-ui-muted) !important;
	font-size: 10px !important;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}

body.single-product .awf-bundle-info > strong,
body.single-product .awf-bundle-title-line strong {
	color: var(--awf-ui-ink);
	font-family: inherit !important;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.45;
	text-transform: none;
}

body.single-product .awf-bundle-main-selection {
	color: var(--awf-ui-muted) !important;
	font-size: 12px !important;
}

body.single-product .awf-bundle-title-line {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
}

body.single-product .awf-bundle-row-price {
	flex: 0 0 auto;
	color: var(--awf-ui-ink) !important;
	font-size: 13px !important;
	font-weight: 700;
	white-space: nowrap;
}

body.single-product .awf-bundle-attributes {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(125px, 1fr));
	gap: 9px;
}

body.single-product .awf-bundle-attribute-field {
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin: 0;
}

body.single-product .awf-bundle-attribute-field > span {
	color: #4e4e4e;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
}

body.single-product .awf-bundle-attribute-select {
	width: 100%;
	min-width: 0;
	min-height: 39px;
	margin: 0;
	padding: 8px 34px 8px 11px;
	border: 1px solid #cfcfcf;
	border-radius: 2px;
	background-color: #fff;
	color: var(--awf-ui-ink);
	font-family: inherit !important;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.3;
	box-shadow: none;
	cursor: pointer;
}

body.single-product .awf-bundle-attribute-select:hover,
body.single-product .awf-bundle-attribute-select:focus {
	border-color: var(--awf-ui-ink);
	outline: 0;
	box-shadow: 0 0 0 1px var(--awf-ui-ink);
}

body.single-product .awf-bundle-option-status {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	width: fit-content;
	color: #777 !important;
	font-size: 11px !important;
	line-height: 1.35;
}

body.single-product .awf-bundle-option-status::before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #b5b5b5;
}

body.single-product .awf-bundle-option-status.is-ready {
	color: #267246 !important;
}

body.single-product .awf-bundle-option-status.is-ready::before {
	background: #267246;
}

body.single-product .awf-bundle-option-status.is-error {
	color: #c7342e !important;
}

body.single-product .awf-bundle-option-status.is-error::before {
	background: #c7342e;
}

body.single-product .awf-bundle-action {
	align-items: center;
	padding-top: 18px;
	border-top: 1px solid var(--awf-ui-line);
}

body.single-product .awf-bundle-action > div span {
	color: var(--awf-ui-muted);
	font-size: 11px;
	font-weight: 600;
}

body.single-product .awf-bundle-total {
	color: var(--awf-ui-ink);
	font-family: inherit !important;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.15;
}

body.single-product .awf-add-bundle {
	min-width: 190px;
	min-height: 50px !important;
	padding: 12px 20px !important;
	border: 1px solid var(--awf-ui-ink) !important;
	border-radius: 2px !important;
	background: var(--awf-ui-ink) !important;
	color: #fff !important;
	font-family: inherit !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	letter-spacing: .06em;
	text-transform: uppercase;
	box-shadow: none !important;
}

body.single-product .awf-add-bundle:hover {
	background: #2c2c2c !important;
	border-color: #2c2c2c !important;
}

/* Viewers and delivery use the same black/white visual language. */
body.single-product .awf-product-purchase-info {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
	margin: 18px 0 8px;
	padding: 0;
	border: 0;
	font-family: inherit !important;
}

body.single-product .awf-live-viewers,
body.single-product .awf-product-delivery-estimate {
	min-height: 58px;
	padding: 13px 14px;
	border: 1px solid #e4e4e4;
	border-radius: 3px;
	background: #fff;
	color: #111;
	font-family: inherit !important;
	font-size: 14px;
	line-height: 1.45;
}

body.single-product .awf-live-viewers + .awf-product-delivery-estimate {
	border-top: 1px solid #e4e4e4;
}

body.single-product .awf-eye-icon,
body.single-product .awf-delivery-truck-icon {
	flex-basis: 22px;
	width: 22px;
	height: 22px;
	color: #111;
}

body.single-product .awf-eye-icon svg,
body.single-product .awf-delivery-truck-icon svg {
	width: 22px;
	height: 22px;
}

body.single-product .awf-viewer-count,
body.single-product .awf-product-delivery-estimate strong {
	color: #111;
	font-size: 14px;
	font-weight: 700;
}

body.single-product .awf-viewer-label,
body.single-product .awf-product-delivery-estimate span:not(.awf-delivery-truck-icon) {
	color: #555;
	font-size: 14px;
}

body.single-product .awf-eye-icon::after {
	background: #111;
	box-shadow: 0 0 0 0 rgba(17, 17, 17, .28);
}

@keyframes awf-viewer-pulse {
	0% { box-shadow: 0 0 0 0 rgba(17, 17, 17, .28); }
	70% { box-shadow: 0 0 0 7px rgba(17, 17, 17, 0); }
	100% { box-shadow: 0 0 0 0 rgba(17, 17, 17, 0); }
}

@media (max-width: 767px) {
	body.single-product .awf-bundle-box {
		padding: 18px;
	}

	body.single-product .awf-bundle-heading,
	body.single-product .awf-bundle-action {
		gap: 14px;
	}

	body.single-product .awf-bundle-product {
		grid-template-columns: 22px 58px minmax(0, 1fr);
		gap: 10px;
		padding: 11px;
	}

	body.single-product .awf-bundle-thumb img {
		width: 58px;
		height: 68px;
	}

	body.single-product .awf-bundle-title-line {
		flex-direction: column;
		gap: 4px;
	}

	body.single-product .awf-bundle-attributes {
		grid-template-columns: 1fr;
	}

	body.single-product .awf-bundle-action {
		align-items: stretch;
	}

	body.single-product .awf-add-bundle {
		width: 100%;
		min-width: 0;
	}

	body.single-product .awf-live-viewers,
	body.single-product .awf-product-delivery-estimate,
	body.single-product .awf-viewer-label,
	body.single-product .awf-product-delivery-estimate span:not(.awf-delivery-truck-icon) {
		font-size: 13px;
	}
}

/* =========================================================
   v1.6.0 — Integrated WooHoo cleanup, mobile checkout/cart,
   automatic cart updates, and mobile Buy Now layout
========================================================= */

/* Keep all Funnel Booster cart/checkout elements inside the viewport. */
body.awf-shopify-pages.woocommerce-cart,
body.awf-shopify-pages.woocommerce-checkout {
	overflow-x: hidden;
}

body.awf-shopify-pages.woocommerce-cart *,
body.awf-shopify-pages.woocommerce-checkout * {
	box-sizing: border-box;
}

/* Integrated checkout cleanup: no separate Additional CSS is required. */
body.awf-shopify-pages.woocommerce-checkout .woocommerce-message,
body.awf-shopify-pages.woocommerce-checkout .woocommerce-form-login-toggle,
body.awf-shopify-pages.woocommerce-checkout form.woocommerce-form-login,
body.awf-shopify-pages.woocommerce-checkout .checkout_steps,
body.awf-shopify-pages.woocommerce-checkout .checkout-steps,
body.awf-shopify-pages.woocommerce-checkout .woocommerce-checkout-steps,
body.awf-shopify-pages.woocommerce-checkout .woocommerce_checkout_steps,
body.awf-shopify-pages.woocommerce-checkout .trx_addons_woocommerce_checkout_steps,
body.awf-shopify-pages.woocommerce-checkout .sc_layouts_checkout_steps,
body.awf-shopify-pages.woocommerce-checkout .woocommerce-progress,
body.awf-shopify-pages.woocommerce-checkout .checkout-progress {
	display: none !important;
}

/* Coupon heading remains visible and WooCommerce controls open/close. */
body.awf-shopify-pages.woocommerce-checkout .woocommerce-form-coupon-toggle {
	display: block !important;
	visibility: visible !important;
	list-style: none !important;
}

body.awf-shopify-pages.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info::before,
body.awf-shopify-pages.woocommerce-checkout .woocommerce-form-coupon-toggle::before {
	display: none !important;
	content: none !important;
}

body.awf-shopify-pages.woocommerce-checkout form.checkout_coupon {
	visibility: visible !important;
}

/* Use the website/global font consistently instead of WooHoo's mixed widget fonts. */
body.awf-shopify-pages.woocommerce-cart .woocommerce,
body.awf-shopify-pages.woocommerce-checkout .woocommerce,
body.awf-shopify-pages.woocommerce-cart .woocommerce h1,
body.awf-shopify-pages.woocommerce-cart .woocommerce h2,
body.awf-shopify-pages.woocommerce-cart .woocommerce h3,
body.awf-shopify-pages.woocommerce-cart .woocommerce button,
body.awf-shopify-pages.woocommerce-cart .woocommerce input,
body.awf-shopify-pages.woocommerce-cart .woocommerce select,
body.awf-shopify-pages.woocommerce-checkout .woocommerce h1,
body.awf-shopify-pages.woocommerce-checkout .woocommerce h2,
body.awf-shopify-pages.woocommerce-checkout .woocommerce h3,
body.awf-shopify-pages.woocommerce-checkout .woocommerce button,
body.awf-shopify-pages.woocommerce-checkout .woocommerce input,
body.awf-shopify-pages.woocommerce-checkout .woocommerce select,
body.awf-shopify-pages.woocommerce-checkout .woocommerce textarea {
	font-family: inherit !important;
}

/* Automatic cart update: the native button remains in the DOM as a fallback,
   but is hidden while the plugin JavaScript is active. */
body.awf-cart-auto-update.woocommerce-cart .woocommerce-cart-form button[name="update_cart"],
body.awf-cart-auto-update.woocommerce-cart .woocommerce-cart-form input[name="update_cart"] {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	margin: -1px !important;
	padding: 0 !important;
	overflow: hidden !important;
	clip: rect(0 0 0 0) !important;
	clip-path: inset(50%) !important;
	border: 0 !important;
	white-space: nowrap !important;
}

.awf-cart-update-status {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 24px;
	margin-left: 10px;
	color: #626262;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.3;
	vertical-align: middle;
}

.awf-cart-update-status.is-updating::before {
	content: '';
	width: 12px;
	height: 12px;
	margin-right: 7px;
	border: 2px solid #d0d0d0;
	border-top-color: #111;
	border-radius: 50%;
	animation: awf-spin .7s linear infinite;
}

.awf-cart-update-status.is-success {
	color: #267246;
}

/* Prevent long product names and totals from forcing horizontal scrolling. */
body.awf-shopify-pages.woocommerce-checkout #order_review,
body.awf-shopify-pages.woocommerce-checkout .woocommerce-checkout-review-order,
body.awf-shopify-pages.woocommerce-checkout #payment,
body.awf-shopify-pages.woocommerce-cart .woocommerce-cart-form,
body.awf-shopify-pages.woocommerce-cart .cart-collaterals,
body.awf-shopify-pages.woocommerce-cart .cart_totals {
	min-width: 0 !important;
	max-width: 100% !important;
}

body.awf-shopify-pages.woocommerce-checkout #order_review table.shop_table {
	width: 100% !important;
	max-width: 100% !important;
	table-layout: fixed;
}

body.awf-shopify-pages.woocommerce-checkout #order_review table.shop_table .product-name {
	width: auto;
	padding-right: 12px !important;
	overflow-wrap: anywhere;
	word-break: normal;
}

body.awf-shopify-pages.woocommerce-checkout #order_review table.shop_table .product-total {
	width: 105px;
	white-space: normal;
	overflow-wrap: anywhere;
}

/* Better mobile product quantity + Buy Now alignment. */
@media only screen and (max-width: 767px) {
	body.awf-funnel-enabled.single-product .summary form.cart .woocommerce-variation-add-to-cart,
	body.awf-funnel-enabled.single-product .summary form.cart .woocommerce-variation-add-to-cart-enabled,
	body.awf-funnel-enabled.single-product .summary form.cart:not(.variations_form) {
		display: grid !important;
		grid-template-columns: 102px minmax(0, 1fr);
		align-items: stretch !important;
		gap: 10px !important;
		width: 100% !important;
		max-width: 100% !important;
	}

	body.awf-funnel-enabled.single-product .summary form.cart .quantity {
		grid-column: 1;
		width: 102px !important;
		max-width: 102px !important;
		margin: 0 !important;
	}

	body.awf-funnel-enabled.single-product .summary form.cart .quantity input.qty {
		width: 100% !important;
		min-width: 0 !important;
		height: 58px !important;
		min-height: 58px !important;
		margin: 0 !important;
		padding-left: 10px !important;
		padding-right: 28px !important;
	}

	body.awf-funnel-enabled.single-product .summary form.cart .single_add_to_cart_button {
		grid-column: 2;
		width: 100% !important;
		min-width: 0 !important;
		height: 58px !important;
		min-height: 58px !important;
		margin: 0 !important;
		padding: 12px 14px !important;
		display: inline-flex !important;
		align-items: center !important;
		justify-content: center !important;
		font-size: 13px !important;
		line-height: 1.1 !important;
		text-align: center !important;
		white-space: nowrap !important;
	}

	body.awf-funnel-enabled.single-product .summary form.cart .tinv-wraper,
	body.awf-funnel-enabled.single-product .summary form.cart .yith-wcwl-add-to-wishlist,
	body.awf-funnel-enabled.single-product .summary form.cart .woosw-btn,
	body.awf-funnel-enabled.single-product .summary form.cart .wishlist-button {
		grid-column: 1 / -1;
		margin: 10px 0 0 !important;
	}

	/* Checkout: one-column, edge-safe, compact Shopify-style cards. */
	body.awf-shopify-pages.woocommerce-checkout .site-content,
	body.awf-shopify-pages.woocommerce-checkout main,
	body.awf-shopify-pages.woocommerce-checkout .woocommerce,
	body.awf-shopify-pages.woocommerce-cart .site-content,
	body.awf-shopify-pages.woocommerce-cart main,
	body.awf-shopify-pages.woocommerce-cart .woocommerce {
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
	}

	body.awf-shopify-pages.woocommerce-checkout .woocommerce,
	body.awf-shopify-pages.woocommerce-cart .woocommerce {
		padding-left: 12px;
		padding-right: 12px;
	}

	body.awf-shopify-pages.woocommerce-checkout .woocommerce-form-coupon-toggle {
		width: 100%;
		margin: 0 0 12px !important;
	}

	body.awf-shopify-pages.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info {
		width: 100%;
		padding: 13px 14px !important;
		border-radius: 6px;
		font-size: 13px;
		text-align: left;
	}

	body.awf-shopify-pages.woocommerce-checkout form.checkout_coupon {
		width: 100% !important;
		max-width: 100% !important;
		margin: 0 0 16px !important;
		padding: 14px !important;
		border-radius: 6px;
	}

	body.awf-shopify-pages.woocommerce-checkout #customer_details,
	body.awf-shopify-pages.woocommerce-checkout #order_review {
		width: 100% !important;
		max-width: 100% !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		padding: 16px !important;
		border-radius: 7px;
		overflow: hidden;
	}

	body.awf-shopify-pages.woocommerce-checkout #order_review_heading {
		width: 100%;
		margin: 24px 0 10px !important;
		padding: 0 !important;
		font-size: 20px !important;
	}

	body.awf-shopify-pages.woocommerce-checkout #order_review table.shop_table th,
	body.awf-shopify-pages.woocommerce-checkout #order_review table.shop_table td {
		padding: 11px 0 !important;
		font-size: 13px !important;
		line-height: 1.42;
	}

	body.awf-shopify-pages.woocommerce-checkout #order_review table.shop_table .product-name {
		width: auto !important;
		padding-right: 9px !important;
		font-size: 12px !important;
	}

	body.awf-shopify-pages.woocommerce-checkout #order_review table.shop_table .product-total {
		width: 82px !important;
		font-size: 13px !important;
		text-align: right !important;
	}

	body.awf-shopify-pages.woocommerce-checkout #order_review .cart-subtotal th,
	body.awf-shopify-pages.woocommerce-checkout #order_review .cart-subtotal td,
	body.awf-shopify-pages.woocommerce-checkout #order_review .order-total th,
	body.awf-shopify-pages.woocommerce-checkout #order_review .order-total td {
		font-size: 15px !important;
	}

	body.awf-shopify-pages.woocommerce-checkout #payment ul.payment_methods {
		width: 100%;
		margin-bottom: 14px !important;
		border-radius: 6px;
	}

	body.awf-shopify-pages.woocommerce-checkout #payment ul.payment_methods li {
		width: 100%;
		padding: 13px !important;
		overflow-wrap: anywhere;
	}

	body.awf-shopify-pages.woocommerce-checkout #payment div.payment_box {
		width: 100%;
		margin: 10px 0 0 !important;
		padding: 12px !important;
	}

	body.awf-shopify-pages.woocommerce-checkout #place_order {
		width: 100% !important;
		min-height: 54px !important;
		margin: 0 !important;
	}

	/* Cart: convert every line item into a clean, responsive card. */
	body.awf-shopify-pages.woocommerce-cart .woocommerce-cart-form {
		width: 100%;
		overflow: visible;
	}

	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart {
		display: block !important;
		width: 100% !important;
		max-width: 100% !important;
		border: 0 !important;
		border-radius: 0;
		overflow: visible;
		background: transparent;
	}

	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart thead {
		display: none !important;
	}

	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart tbody {
		display: block !important;
		width: 100%;
	}

	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart tr.cart_item {
		position: relative;
		display: grid !important;
		grid-template-columns: 82px minmax(0, 1fr);
		gap: 8px 13px;
		width: 100%;
		margin: 0 0 12px;
		padding: 14px;
		border: 1px solid #dededb;
		border-radius: 7px;
		background: #fff;
	}

	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart tr.cart_item td {
		display: block !important;
		width: auto !important;
		min-width: 0;
		padding: 0 !important;
		border: 0 !important;
		background: transparent !important;
		text-align: left !important;
	}

	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart tr.cart_item td::before {
		display: inline-block;
		margin-right: 8px;
		color: #666;
		font-size: 11px;
		font-weight: 700;
		text-transform: uppercase;
	}

	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.product-remove {
		position: absolute;
		top: 8px;
		right: 8px;
		z-index: 2;
	}

	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.product-thumbnail {
		grid-column: 1;
		grid-row: 1 / span 5;
		display: block !important;
	}

	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.product-thumbnail::before,
	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.product-name::before {
		display: none !important;
	}

	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.product-thumbnail img {
		width: 82px !important;
		height: 104px !important;
		border-radius: 5px;
	}

	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.product-name,
	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.product-price,
	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.product-quantity,
	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.product-subtotal {
		grid-column: 2;
		padding-right: 24px !important;
		overflow-wrap: anywhere;
	}

	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.product-name {
		font-size: 13px;
		line-height: 1.4;
	}

	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.product-price,
	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.product-quantity,
	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.product-subtotal {
		display: flex !important;
		align-items: center;
		justify-content: space-between;
		gap: 10px;
		font-size: 13px;
	}

	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart .quantity .qty {
		width: 70px !important;
		min-height: 40px !important;
	}

	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart tr:not(.cart_item) {
		display: block !important;
		width: 100%;
	}

	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.actions {
		display: flex !important;
		flex-direction: column;
		gap: 10px;
		width: 100% !important;
		padding: 14px !important;
		border: 1px solid #dededb !important;
		border-radius: 7px;
		background: #fff !important;
	}

	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.actions .coupon {
		display: grid !important;
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: stretch;
		gap: 8px;
		width: 100%;
	}

	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.actions .coupon input.input-text {
		width: 100% !important;
		min-width: 0;
	}

	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.actions .coupon button,
	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.actions .coupon input[type="submit"] {
		width: auto !important;
		min-width: 122px;
		margin: 0 !important;
		white-space: nowrap;
	}

	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.actions > a,
	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.actions > .button:not([name="update_cart"]) {
		width: 100% !important;
		margin: 0 !important;
	}

	body.awf-shopify-pages.woocommerce-cart .cart-collaterals {
		width: 100% !important;
		margin-top: 16px !important;
	}

	body.awf-shopify-pages.woocommerce-cart .cart-collaterals .cart_totals {
		width: 100% !important;
		padding: 16px !important;
		border-radius: 7px;
		overflow: hidden;
	}

	body.awf-shopify-pages.woocommerce-cart .cart-collaterals .cart_totals h2 {
		margin-bottom: 12px !important;
		font-size: 20px !important;
	}

	body.awf-shopify-pages.woocommerce-cart .cart_totals table.shop_table {
		width: 100% !important;
		table-layout: fixed;
	}

	body.awf-shopify-pages.woocommerce-cart .cart_totals table.shop_table th,
	body.awf-shopify-pages.woocommerce-cart .cart_totals table.shop_table td {
		width: 50%;
		padding: 12px 0 !important;
		font-size: 13px;
		overflow-wrap: anywhere;
	}

	body.awf-shopify-pages.woocommerce-cart .cart_totals .order-total th,
	body.awf-shopify-pages.woocommerce-cart .cart_totals .order-total td {
		font-size: 16px !important;
	}

	body.awf-shopify-pages.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
		min-height: 54px;
		display: flex !important;
		align-items: center;
		justify-content: center;
		padding: 12px 14px !important;
		font-size: 14px !important;
	}

	.awf-cart-update-status {
		width: 100%;
		margin: 0;
	}
}

@media only screen and (max-width: 420px) {
	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.actions .coupon {
		grid-template-columns: 1fr;
	}

	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.actions .coupon button,
	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.actions .coupon input[type="submit"] {
		width: 100% !important;
		min-width: 0;
	}

	body.awf-funnel-enabled.single-product .summary form.cart .woocommerce-variation-add-to-cart,
	body.awf-funnel-enabled.single-product .summary form.cart .woocommerce-variation-add-to-cart-enabled,
	body.awf-funnel-enabled.single-product .summary form.cart:not(.variations_form) {
		grid-template-columns: 94px minmax(0, 1fr);
	}

	body.awf-funnel-enabled.single-product .summary form.cart .quantity {
		width: 94px !important;
		max-width: 94px !important;
	}
}


/* =========================================================
   v1.6.1 — Strong WooHoo mobile cart override
   Keeps the classic WooCommerce cart inside the viewport and
   turns each item into a consistent Verda black/white card.
========================================================= */
@media only screen and (max-width: 767px) {
	body.awf-shopify-pages.woocommerce-cart {
		overflow-x: hidden !important;
	}

	body.awf-shopify-pages.woocommerce-cart .page_content_wrap,
	body.awf-shopify-pages.woocommerce-cart .content_wrap,
	body.awf-shopify-pages.woocommerce-cart .content,
	body.awf-shopify-pages.woocommerce-cart .site-content,
	body.awf-shopify-pages.woocommerce-cart main,
	body.awf-shopify-pages.woocommerce-cart article,
	body.awf-shopify-pages.woocommerce-cart .entry-content,
	body.awf-shopify-pages.woocommerce-cart .woocommerce {
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		box-sizing: border-box !important;
	}

	body.awf-shopify-pages.woocommerce-cart .content_wrap,
	body.awf-shopify-pages.woocommerce-cart .site-content,
	body.awf-shopify-pages.woocommerce-cart main,
	body.awf-shopify-pages.woocommerce-cart .entry-content {
		padding-left: 12px !important;
		padding-right: 12px !important;
	}

	body.awf-shopify-pages.woocommerce-cart .woocommerce-cart-form,
	body.awf-shopify-pages.woocommerce-cart .woocommerce-cart-form__contents,
	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart,
	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart tbody {
		display: block !important;
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
		margin: 0 !important;
		padding: 0 !important;
		border: 0 !important;
		border-spacing: 0 !important;
		background: transparent !important;
		overflow: visible !important;
		box-sizing: border-box !important;
	}

	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart thead {
		display: none !important;
	}

	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart tr.cart_item,
	body.awf-shopify-pages.woocommerce-cart .woocommerce-cart-form__cart-item {
		position: relative !important;
		display: grid !important;
		grid-template-columns: 76px minmax(0, 1fr) auto !important;
		grid-template-areas:
			"thumb name remove"
			"thumb price price"
			"thumb quantity subtotal" !important;
		column-gap: 12px !important;
		row-gap: 8px !important;
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
		margin: 0 0 12px !important;
		padding: 14px !important;
		border: 1px solid #e2e2df !important;
		border-radius: 8px !important;
		background: #fff !important;
		box-shadow: none !important;
		box-sizing: border-box !important;
		overflow: hidden !important;
	}

	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart tr.cart_item > td,
	body.awf-shopify-pages.woocommerce-cart .woocommerce-cart-form__cart-item > td {
		display: block !important;
		float: none !important;
		width: auto !important;
		max-width: none !important;
		min-width: 0 !important;
		height: auto !important;
		margin: 0 !important;
		padding: 0 !important;
		border: 0 !important;
		background: transparent !important;
		box-sizing: border-box !important;
		text-align: left !important;
		vertical-align: top !important;
		overflow-wrap: anywhere !important;
	}

	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.product-thumbnail {
		grid-area: thumb !important;
		align-self: start !important;
	}

	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.product-thumbnail a,
	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.product-thumbnail img {
		display: block !important;
		width: 76px !important;
		max-width: 76px !important;
		height: 96px !important;
		margin: 0 !important;
		border: 0 !important;
		border-radius: 5px !important;
		background: #f5f5f3 !important;
		object-fit: contain !important;
	}

	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.product-name {
		grid-area: name !important;
		padding-right: 2px !important;
		font-size: 13px !important;
		font-weight: 700 !important;
		line-height: 1.35 !important;
		text-transform: none !important;
	}

	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.product-name a {
		display: block !important;
		color: #111 !important;
		font-size: inherit !important;
		font-weight: inherit !important;
		line-height: inherit !important;
		text-decoration: none !important;
	}

	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.product-name dl.variation,
	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.product-name .variation,
	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.product-name .wc-item-meta {
		display: flex !important;
		flex-wrap: wrap !important;
		gap: 2px 5px !important;
		margin: 7px 0 0 !important;
		padding: 0 !important;
		color: #737373 !important;
		font-size: 11px !important;
		font-weight: 400 !important;
		line-height: 1.4 !important;
	}

	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.product-name dl.variation dt,
	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.product-name dl.variation dd,
	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.product-name .wc-item-meta li,
	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.product-name .wc-item-meta p {
		float: none !important;
		margin: 0 !important;
		padding: 0 !important;
		font-size: inherit !important;
		line-height: inherit !important;
	}

	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.product-remove {
		grid-area: remove !important;
		position: static !important;
		align-self: start !important;
		justify-self: end !important;
		width: 28px !important;
		height: 28px !important;
	}

	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.product-remove a.remove {
		display: grid !important;
		place-items: center !important;
		width: 28px !important;
		height: 28px !important;
		margin: 0 !important;
		border: 1px solid #dededb !important;
		border-radius: 50% !important;
		background: #fff !important;
		color: #111 !important;
		font-size: 20px !important;
		line-height: 1 !important;
		text-decoration: none !important;
	}

	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.product-price {
		grid-area: price !important;
		display: flex !important;
		align-items: center !important;
		justify-content: flex-start !important;
		gap: 6px !important;
		color: #606060 !important;
		font-size: 12px !important;
		line-height: 1.35 !important;
	}

	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.product-price::before {
		content: "Price:" !important;
		margin: 0 !important;
		color: #777 !important;
		font-size: 11px !important;
		font-weight: 600 !important;
		text-transform: none !important;
	}

	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.product-quantity {
		grid-area: quantity !important;
		display: flex !important;
		align-items: center !important;
		justify-content: flex-start !important;
		gap: 7px !important;
	}

	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.product-quantity::before {
		content: "Qty:" !important;
		margin: 0 !important;
		color: #777 !important;
		font-size: 11px !important;
		font-weight: 600 !important;
		text-transform: none !important;
	}

	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.product-quantity .quantity {
		display: inline-flex !important;
		align-items: stretch !important;
		width: auto !important;
		max-width: 118px !important;
		height: 38px !important;
		margin: 0 !important;
		border: 1px solid #d7d7d3 !important;
		border-radius: 5px !important;
		background: #fff !important;
		overflow: hidden !important;
	}

	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.product-quantity .quantity input.qty {
		width: 54px !important;
		min-width: 54px !important;
		height: 36px !important;
		min-height: 36px !important;
		margin: 0 !important;
		padding: 5px !important;
		border: 0 !important;
		border-radius: 0 !important;
		background: #fff !important;
		box-shadow: none !important;
		font-size: 13px !important;
		text-align: center !important;
	}

	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.product-quantity .quantity .plus,
	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.product-quantity .quantity .minus,
	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.product-quantity .quantity button {
		width: 30px !important;
		height: 36px !important;
		min-height: 36px !important;
		margin: 0 !important;
		padding: 0 !important;
		border: 0 !important;
		border-radius: 0 !important;
		background: #fff !important;
		color: #111 !important;
		font-size: 17px !important;
	}

	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.product-subtotal {
		grid-area: subtotal !important;
		display: flex !important;
		align-items: center !important;
		justify-content: flex-end !important;
		align-self: center !important;
		padding-left: 8px !important;
		color: #111 !important;
		font-size: 14px !important;
		font-weight: 800 !important;
		line-height: 1.2 !important;
		white-space: nowrap !important;
	}

	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.product-subtotal::before {
		display: none !important;
		content: none !important;
	}

	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart tr:not(.cart_item),
	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart tr:last-child {
		display: block !important;
		width: 100% !important;
		max-width: 100% !important;
		margin: 0 !important;
		padding: 0 !important;
	}

	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.actions {
		display: flex !important;
		flex-direction: column !important;
		align-items: stretch !important;
		gap: 10px !important;
		width: 100% !important;
		max-width: 100% !important;
		margin: 0 !important;
		padding: 14px !important;
		border: 1px solid #e2e2df !important;
		border-radius: 8px !important;
		background: #fff !important;
		box-sizing: border-box !important;
		overflow: hidden !important;
	}

	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.actions .coupon {
		display: grid !important;
		grid-template-columns: minmax(0, 1fr) minmax(112px, auto) !important;
		gap: 8px !important;
		width: 100% !important;
		max-width: 100% !important;
		margin: 0 !important;
		padding: 0 !important;
		float: none !important;
		box-sizing: border-box !important;
	}

	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.actions .coupon input.input-text {
		width: 100% !important;
		min-width: 0 !important;
		height: 48px !important;
		min-height: 48px !important;
		margin: 0 !important;
		padding: 10px 12px !important;
		border: 1px solid #d6d6d2 !important;
		border-radius: 6px !important;
		font-size: 13px !important;
	}

	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.actions .coupon button,
	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.actions .coupon input[type="submit"] {
		width: 100% !important;
		min-width: 112px !important;
		height: 48px !important;
		min-height: 48px !important;
		margin: 0 !important;
		padding: 8px 12px !important;
		border: 1px solid #111 !important;
		border-radius: 6px !important;
		background: #111 !important;
		color: #fff !important;
		font-size: 12px !important;
		font-weight: 700 !important;
		line-height: 1.2 !important;
		white-space: normal !important;
	}

	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.actions > a,
	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.actions > .button:not([name="update_cart"]),
	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.actions .continue-shopping,
	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.actions .continue_shopping {
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		width: 100% !important;
		min-height: 48px !important;
		margin: 0 !important;
		padding: 10px 14px !important;
		border: 1px solid #111 !important;
		border-radius: 6px !important;
		background: #fff !important;
		color: #111 !important;
		font-size: 12px !important;
		font-weight: 700 !important;
		text-align: center !important;
		text-decoration: none !important;
	}

	body.awf-shopify-pages.woocommerce-cart .cart-collaterals,
	body.awf-shopify-pages.woocommerce-cart .cart-collaterals .cart_totals,
	body.awf-shopify-pages.woocommerce-cart .cart_totals {
		float: none !important;
		clear: both !important;
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
		margin: 14px 0 0 !important;
		box-sizing: border-box !important;
	}

	body.awf-shopify-pages.woocommerce-cart .cart-collaterals .cart_totals,
	body.awf-shopify-pages.woocommerce-cart .cart_totals {
		padding: 16px !important;
		border: 1px solid #e2e2df !important;
		border-radius: 8px !important;
		background: #fff !important;
		box-shadow: none !important;
		overflow: hidden !important;
	}

	body.awf-shopify-pages.woocommerce-cart .cart_totals h2 {
		margin: 0 0 12px !important;
		padding: 0 !important;
		font-size: 20px !important;
		font-weight: 700 !important;
		line-height: 1.25 !important;
		text-transform: none !important;
	}

	body.awf-shopify-pages.woocommerce-cart .cart_totals table.shop_table,
	body.awf-shopify-pages.woocommerce-cart .cart_totals table.shop_table tbody,
	body.awf-shopify-pages.woocommerce-cart .cart_totals table.shop_table tr {
		display: table !important;
		width: 100% !important;
		max-width: 100% !important;
		table-layout: fixed !important;
		border-collapse: collapse !important;
		box-sizing: border-box !important;
	}

	body.awf-shopify-pages.woocommerce-cart .cart_totals table.shop_table tbody {
		display: table-row-group !important;
	}

	body.awf-shopify-pages.woocommerce-cart .cart_totals table.shop_table tr {
		display: table-row !important;
	}

	body.awf-shopify-pages.woocommerce-cart .cart_totals table.shop_table th,
	body.awf-shopify-pages.woocommerce-cart .cart_totals table.shop_table td {
		display: table-cell !important;
		width: 50% !important;
		max-width: 50% !important;
		padding: 12px 0 !important;
		border: 0 !important;
		border-bottom: 1px solid #ececea !important;
		background: transparent !important;
		font-size: 13px !important;
		line-height: 1.35 !important;
		vertical-align: middle !important;
		overflow-wrap: anywhere !important;
	}

	body.awf-shopify-pages.woocommerce-cart .cart_totals table.shop_table td {
		text-align: right !important;
	}

	body.awf-shopify-pages.woocommerce-cart .cart_totals table.shop_table tr:last-child th,
	body.awf-shopify-pages.woocommerce-cart .cart_totals table.shop_table tr:last-child td {
		border-bottom: 0 !important;
	}

	body.awf-shopify-pages.woocommerce-cart .cart_totals .order-total th,
	body.awf-shopify-pages.woocommerce-cart .cart_totals .order-total td {
		font-size: 17px !important;
		font-weight: 800 !important;
	}

	body.awf-shopify-pages.woocommerce-cart .wc-proceed-to-checkout {
		width: 100% !important;
		margin: 14px 0 0 !important;
		padding: 0 !important;
	}

	body.awf-shopify-pages.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		width: 100% !important;
		max-width: 100% !important;
		min-height: 54px !important;
		margin: 0 !important;
		padding: 12px 16px !important;
		border: 1px solid #111 !important;
		border-radius: 7px !important;
		background: #111 !important;
		color: #fff !important;
		font-size: 14px !important;
		font-weight: 700 !important;
		line-height: 1.2 !important;
		text-align: center !important;
		text-decoration: none !important;
		white-space: normal !important;
		box-sizing: border-box !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-cart-update-status {
		display: flex !important;
		width: 100% !important;
		min-height: 22px !important;
		margin: 0 !important;
		font-size: 11px !important;
		text-align: center !important;
	}
}

@media only screen and (max-width: 390px) {
	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart tr.cart_item,
	body.awf-shopify-pages.woocommerce-cart .woocommerce-cart-form__cart-item {
		grid-template-columns: 68px minmax(0, 1fr) auto !important;
		column-gap: 10px !important;
		padding: 12px !important;
	}

	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.product-thumbnail a,
	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.product-thumbnail img {
		width: 68px !important;
		max-width: 68px !important;
		height: 88px !important;
	}

	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.actions .coupon {
		grid-template-columns: 1fr !important;
	}

	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.actions .coupon button,
	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.actions .coupon input[type="submit"] {
		min-width: 0 !important;
	}
}


/* =========================================================
   v1.7.0 — Stable WooHoo mobile product/cart layout
   Uses a dedicated mobile cart card built from the original
   WooCommerce form controls, so quantity/remove/update remain native.
========================================================= */

/* WooHoo checkout progress should not appear on the cart page either. */
body.awf-shopify-pages.woocommerce-cart .checkout_steps,
body.awf-shopify-pages.woocommerce-cart .checkout-steps,
body.awf-shopify-pages.woocommerce-cart .woocommerce-checkout-steps,
body.awf-shopify-pages.woocommerce-cart .woocommerce_checkout_steps,
body.awf-shopify-pages.woocommerce-cart .trx_addons_woocommerce_checkout_steps,
body.awf-shopify-pages.woocommerce-cart .sc_layouts_checkout_steps,
body.awf-shopify-pages.woocommerce-cart .woocommerce-progress,
body.awf-shopify-pages.woocommerce-cart .checkout-progress {
	display: none !important;
}

@media only screen and (max-width: 767px) {
	/* ---------- Product page: remove theme overflow/right gutter ---------- */
	html:has(body.single-product),
	body.single-product {
		max-width: 100% !important;
		overflow-x: hidden !important;
	}

	body.single-product .page_content_wrap,
	body.single-product .content_wrap,
	body.single-product .content,
	body.single-product .site-content,
	body.single-product main,
	body.single-product article,
	body.single-product .entry-content,
	body.single-product .woocommerce,
	body.single-product .woocommerce div.product {
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		box-sizing: border-box !important;
	}

	body.single-product .content_wrap,
	body.single-product .site-content,
	body.single-product main,
	body.single-product .entry-content {
		padding-left: 14px !important;
		padding-right: 14px !important;
	}

	body.single-product .woocommerce div.product {
		display: block !important;
	}

	body.single-product .woocommerce div.product div.summary,
	body.single-product .summary {
		float: none !important;
		clear: both !important;
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
		box-sizing: border-box !important;
	}


	body.single-product .summary *,
	body.single-product .awf-bundle-box * {
		min-width: 0;
		max-width: 100%;
		box-sizing: border-box;
	}

	body.single-product .summary .product_title {
		overflow-wrap: anywhere;
		word-break: normal;
	}

	body.single-product .awf-bundle-box {
		width: 100% !important;
		max-width: 100% !important;
		margin: 20px 0 !important;
		padding: 14px !important;
		overflow: hidden !important;
		box-shadow: none !important;
	}

	body.single-product .awf-bundle-heading {
		flex-direction: column !important;
		align-items: stretch !important;
		gap: 10px !important;
		padding-bottom: 14px !important;
	}

	body.single-product .awf-bundle-badge {
		align-self: flex-start !important;
	}

	body.single-product .awf-bundle-product {
		grid-template-columns: 20px 50px minmax(0, 1fr) !important;
		gap: 9px !important;
		width: 100% !important;
		padding: 10px 8px !important;
		overflow: hidden !important;
	}

	body.single-product .awf-bundle-thumb,
	body.single-product .awf-bundle-thumb img {
		width: 50px !important;
		max-width: 50px !important;
		height: 62px !important;
	}

	body.single-product .awf-bundle-info,
	body.single-product .awf-bundle-title-line,
	body.single-product .awf-bundle-attributes,
	body.single-product .awf-bundle-attribute-field {
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
	}

	body.single-product .awf-bundle-title-line {
		display: block !important;
	}

	body.single-product .awf-bundle-title-line strong,
	body.single-product .awf-bundle-info > strong {
		display: block;
		font-size: 12px !important;
		line-height: 1.4 !important;
		overflow-wrap: anywhere !important;
	}

	body.single-product .awf-bundle-row-price {
		display: block;
		margin-top: 4px;
		font-size: 12px !important;
		white-space: normal !important;
	}

	body.single-product .awf-bundle-attributes {
		grid-template-columns: minmax(0, 1fr) !important;
		gap: 8px !important;
	}

	body.single-product .awf-bundle-attribute-select {
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
	}

	body.single-product .awf-bundle-action {
		flex-direction: column !important;
		align-items: stretch !important;
		gap: 12px !important;
	}

	body.single-product .awf-bundle-action > div,
	body.single-product .awf-add-bundle {
		width: 100% !important;
		max-width: 100% !important;
	}

	/* ---------- Cart: only the dedicated card remains visible ---------- */
	body.awf-shopify-pages.woocommerce-cart .woocommerce {
		padding-left: 10px !important;
		padding-right: 10px !important;
	}

	body.awf-shopify-pages.woocommerce-cart .woocommerce-cart-form,
	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart,
	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart tbody {
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
		overflow: visible !important;
	}

	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart tr.awf-mobile-cart-built {
		display: block !important;
		width: 100% !important;
		max-width: 100% !important;
		margin: 0 0 12px !important;
		padding: 0 !important;
		border: 0 !important;
		background: transparent !important;
		overflow: visible !important;
	}

	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart tr.awf-mobile-cart-built > td {
		display: none !important;
	}

	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart tr.awf-mobile-cart-built > td.product-name {
		display: block !important;
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
		margin: 0 !important;
		padding: 0 !important;
		border: 0 !important;
		background: transparent !important;
		text-align: left !important;
	}

	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart tr.awf-mobile-cart-built > td.product-name::before {
		content: none !important;
		display: none !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mobile-cart-card {
		display: grid !important;
		grid-template-columns: 78px minmax(0, 1fr) !important;
		gap: 13px !important;
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
		padding: 14px !important;
		border: 1px solid #e1e1de !important;
		border-radius: 8px !important;
		background: #fff !important;
		color: #111 !important;
		box-sizing: border-box !important;
		overflow: hidden !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mobile-cart-card__media,
	body.awf-shopify-pages.woocommerce-cart .awf-mobile-cart-card__content,
	body.awf-shopify-pages.woocommerce-cart .awf-mobile-cart-card__header,
	body.awf-shopify-pages.woocommerce-cart .awf-mobile-cart-card__title,
	body.awf-shopify-pages.woocommerce-cart .awf-mobile-cart-card__details,
	body.awf-shopify-pages.woocommerce-cart .awf-mobile-cart-card__value {
		min-width: 0 !important;
		max-width: 100% !important;
		box-sizing: border-box !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mobile-cart-card__media a,
	body.awf-shopify-pages.woocommerce-cart .awf-mobile-cart-card__media img {
		display: block !important;
		width: 78px !important;
		max-width: 78px !important;
		height: 100px !important;
		margin: 0 !important;
		border-radius: 5px !important;
		background: #f5f5f3 !important;
		object-fit: contain !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mobile-cart-card__header {
		display: grid !important;
		grid-template-columns: minmax(0, 1fr) 30px !important;
		align-items: start !important;
		gap: 8px !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mobile-cart-card__title,
	body.awf-shopify-pages.woocommerce-cart .awf-mobile-cart-card__title a {
		color: #111 !important;
		font-size: 13px !important;
		font-weight: 700 !important;
		line-height: 1.38 !important;
		text-decoration: none !important;
		text-transform: none !important;
		overflow-wrap: anywhere !important;
		word-break: normal !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mobile-cart-card__title dl.variation,
	body.awf-shopify-pages.woocommerce-cart .awf-mobile-cart-card__title .variation,
	body.awf-shopify-pages.woocommerce-cart .awf-mobile-cart-card__title .wc-item-meta {
		display: flex !important;
		flex-wrap: wrap !important;
		gap: 2px 5px !important;
		margin: 7px 0 0 !important;
		padding: 0 !important;
		color: #6d6d6d !important;
		font-size: 11px !important;
		font-weight: 400 !important;
		line-height: 1.4 !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mobile-cart-card__title dl.variation dt,
	body.awf-shopify-pages.woocommerce-cart .awf-mobile-cart-card__title dl.variation dd,
	body.awf-shopify-pages.woocommerce-cart .awf-mobile-cart-card__title .wc-item-meta li,
	body.awf-shopify-pages.woocommerce-cart .awf-mobile-cart-card__title .wc-item-meta p {
		float: none !important;
		margin: 0 !important;
		padding: 0 !important;
		font-size: inherit !important;
		line-height: inherit !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mobile-cart-card__remove {
		justify-self: end;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mobile-cart-card__remove a.remove {
		display: grid !important;
		place-items: center !important;
		width: 30px !important;
		height: 30px !important;
		margin: 0 !important;
		border: 1px solid #dcdcd8 !important;
		border-radius: 50% !important;
		background: #fff !important;
		color: #111 !important;
		font-size: 20px !important;
		line-height: 1 !important;
		text-decoration: none !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mobile-cart-card__details {
		display: flex !important;
		flex-direction: column !important;
		gap: 9px !important;
		margin-top: 12px !important;
		padding-top: 11px !important;
		border-top: 1px solid #ececea !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mobile-cart-card__line {
		display: flex !important;
		align-items: center !important;
		justify-content: space-between !important;
		gap: 10px !important;
		width: 100% !important;
		min-width: 0 !important;
		color: #111 !important;
		font-size: 12px !important;
		line-height: 1.35 !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mobile-cart-card__label {
		flex: 0 0 auto;
		color: #696969 !important;
		font-size: 10px !important;
		font-weight: 700 !important;
		letter-spacing: .03em !important;
		text-transform: uppercase !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mobile-cart-card__value {
		display: flex !important;
		align-items: center !important;
		justify-content: flex-end !important;
		color: #111 !important;
		font-size: 12px !important;
		font-weight: 700 !important;
		text-align: right !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mobile-cart-card__quantity .quantity {
		display: inline-flex !important;
		width: auto !important;
		max-width: 116px !important;
		height: 38px !important;
		margin: 0 !important;
		border: 1px solid #d6d6d2 !important;
		border-radius: 5px !important;
		background: #fff !important;
		overflow: hidden !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mobile-cart-card__quantity .quantity input.qty {
		width: 52px !important;
		min-width: 52px !important;
		height: 36px !important;
		min-height: 36px !important;
		margin: 0 !important;
		padding: 5px !important;
		border: 0 !important;
		border-radius: 0 !important;
		background: #fff !important;
		box-shadow: none !important;
		font-size: 13px !important;
		text-align: center !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mobile-cart-card__quantity .quantity .plus,
	body.awf-shopify-pages.woocommerce-cart .awf-mobile-cart-card__quantity .quantity .minus,
	body.awf-shopify-pages.woocommerce-cart .awf-mobile-cart-card__quantity .quantity button {
		width: 30px !important;
		height: 36px !important;
		min-height: 36px !important;
		margin: 0 !important;
		padding: 0 !important;
		border: 0 !important;
		border-radius: 0 !important;
		background: #fff !important;
		color: #111 !important;
		font-size: 17px !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mobile-cart-card__subtotal .awf-mobile-cart-card__value {
		font-size: 14px !important;
		font-weight: 800 !important;
	}

	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart td.actions {
		margin-top: 4px !important;
	}

	body.awf-shopify-pages.woocommerce-cart .cart-collaterals,
	body.awf-shopify-pages.woocommerce-cart .cart-collaterals .cart_totals {
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
	}

	body.awf-shopify-pages.woocommerce-cart .cart_totals table.shop_table th,
	body.awf-shopify-pages.woocommerce-cart .cart_totals table.shop_table td {
		overflow-wrap: normal !important;
		word-break: normal !important;
	}

	body.awf-shopify-pages.woocommerce-cart .cart_totals table.shop_table td {
		white-space: normal !important;
	}
}

@media only screen and (max-width: 380px) {
	body.awf-shopify-pages.woocommerce-cart .awf-mobile-cart-card {
		grid-template-columns: 68px minmax(0, 1fr) !important;
		gap: 10px !important;
		padding: 12px !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mobile-cart-card__media a,
	body.awf-shopify-pages.woocommerce-cart .awf-mobile-cart-card__media img {
		width: 68px !important;
		max-width: 68px !important;
		height: 90px !important;
	}
}

/* =========================================================
   v1.8.0 — Theme-independent mobile cart
   The mobile cart no longer depends on WooHoo table markup.
========================================================= */
.awf-mobile-cart-shell {
	display: none;
}

@media only screen and (max-width: 767px) {
	/* ---------- Dedicated mobile cart ---------- */
	body.awf-shopify-pages.woocommerce-cart .woocommerce-cart-form,
	body.awf-shopify-pages.woocommerce-cart .cart-collaterals,
	body.awf-shopify-pages.woocommerce-cart form.woocommerce-cart-form,
	body.awf-shopify-pages.woocommerce-cart table.shop_table.cart {
		display: none !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mobile-cart-shell {
		position: relative;
		display: block !important;
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
		margin: 0 !important;
		padding: 0 2px 24px !important;
		box-sizing: border-box !important;
		font-family: inherit !important;
		color: #111 !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mobile-cart-shell *,
	body.awf-shopify-pages.woocommerce-cart .awf-mobile-cart-shell *::before,
	body.awf-shopify-pages.woocommerce-cart .awf-mobile-cart-shell *::after {
		box-sizing: border-box !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mobile-cart-shell.is-loading::after {
		content: '';
		position: absolute;
		inset: 0;
		z-index: 20;
		background: rgba(255, 255, 255, .68);
		cursor: wait;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mc-notice {
		display: none;
		width: 100%;
		margin: 0 0 10px;
		padding: 10px 12px;
		border: 1px solid #d9d9d5;
		border-radius: 5px;
		background: #fff;
		font-size: 12px;
		line-height: 1.4;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mc-notice:not(:empty) {
		display: block;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mc-notice.is-error {
		border-color: #c93030;
		color: #a51f1f;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mc-notice.is-success {
		border-color: #2e7d4f;
		color: #23613f;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mc-items {
		display: flex;
		flex-direction: column;
		gap: 12px;
		width: 100%;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mc-item {
		display: grid !important;
		grid-template-columns: 86px minmax(0, 1fr) !important;
		gap: 13px !important;
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
		margin: 0 !important;
		padding: 13px !important;
		border: 1px solid #dededb !important;
		border-radius: 7px !important;
		background: #fff !important;
		box-shadow: none !important;
		overflow: hidden !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mc-image,
	body.awf-shopify-pages.woocommerce-cart .awf-mc-content,
	body.awf-shopify-pages.woocommerce-cart .awf-mc-head,
	body.awf-shopify-pages.woocommerce-cart .awf-mc-bottom {
		min-width: 0 !important;
		max-width: 100% !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mc-image a,
	body.awf-shopify-pages.woocommerce-cart .awf-mc-image img {
		display: block !important;
		width: 86px !important;
		max-width: 86px !important;
		height: 112px !important;
		margin: 0 !important;
		border: 0 !important;
		border-radius: 5px !important;
		background: #f5f5f3 !important;
		object-fit: contain !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mc-content {
		display: flex !important;
		flex-direction: column !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mc-head {
		display: grid !important;
		grid-template-columns: minmax(0, 1fr) 30px !important;
		align-items: start !important;
		gap: 8px !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mc-head h3 {
		min-width: 0 !important;
		margin: 0 !important;
		padding: 0 !important;
		font-family: inherit !important;
		font-size: 14px !important;
		font-weight: 700 !important;
		line-height: 1.35 !important;
		letter-spacing: 0 !important;
		text-transform: none !important;
		overflow-wrap: anywhere !important;
		word-break: normal !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mc-head h3 a {
		color: #111 !important;
		font: inherit !important;
		text-decoration: none !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mc-remove {
		display: grid !important;
		place-items: center !important;
		width: 30px !important;
		height: 30px !important;
		min-width: 30px !important;
		min-height: 30px !important;
		margin: 0 !important;
		padding: 0 !important;
		border: 1px solid #d7d7d3 !important;
		border-radius: 50% !important;
		background: #fff !important;
		color: #111 !important;
		font-family: Arial, sans-serif !important;
		font-size: 20px !important;
		font-weight: 400 !important;
		line-height: 1 !important;
		cursor: pointer !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mc-meta {
		margin-top: 6px !important;
		color: #6c6c6c !important;
		font-size: 11px !important;
		line-height: 1.4 !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mc-meta dl,
	body.awf-shopify-pages.woocommerce-cart .awf-mc-meta .variation,
	body.awf-shopify-pages.woocommerce-cart .awf-mc-meta .wc-item-meta {
		display: flex !important;
		flex-wrap: wrap !important;
		gap: 2px 5px !important;
		margin: 0 !important;
		padding: 0 !important;
		list-style: none !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mc-meta dt,
	body.awf-shopify-pages.woocommerce-cart .awf-mc-meta dd,
	body.awf-shopify-pages.woocommerce-cart .awf-mc-meta li,
	body.awf-shopify-pages.woocommerce-cart .awf-mc-meta p {
		float: none !important;
		margin: 0 !important;
		padding: 0 !important;
		font: inherit !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mc-price-row {
		display: flex !important;
		align-items: center !important;
		justify-content: space-between !important;
		gap: 10px !important;
		margin-top: 10px !important;
		padding-top: 9px !important;
		border-top: 1px solid #ececea !important;
		font-size: 12px !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mc-price-row span,
	body.awf-shopify-pages.woocommerce-cart .awf-mc-subtotal span {
		color: #6b6b6b !important;
		font-size: 10px !important;
		font-weight: 700 !important;
		letter-spacing: .03em !important;
		text-transform: uppercase !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mc-price-row strong {
		font-size: 13px !important;
		font-weight: 700 !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mc-bottom {
		display: flex !important;
		align-items: flex-end !important;
		justify-content: space-between !important;
		gap: 10px !important;
		margin-top: 10px !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mc-qty {
		display: grid !important;
		grid-template-columns: 32px 44px 32px !important;
		height: 38px !important;
		border: 1px solid #d5d5d1 !important;
		border-radius: 5px !important;
		background: #fff !important;
		overflow: hidden !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mc-qty button,
	body.awf-shopify-pages.woocommerce-cart .awf-mc-qty input {
		width: 100% !important;
		height: 36px !important;
		min-height: 36px !important;
		margin: 0 !important;
		padding: 0 !important;
		border: 0 !important;
		border-radius: 0 !important;
		background: #fff !important;
		color: #111 !important;
		box-shadow: none !important;
		font-family: inherit !important;
		font-size: 13px !important;
		font-weight: 600 !important;
		line-height: 36px !important;
		text-align: center !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mc-qty input {
		border-left: 1px solid #ececea !important;
		border-right: 1px solid #ececea !important;
		appearance: textfield !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mc-qty input::-webkit-outer-spin-button,
	body.awf-shopify-pages.woocommerce-cart .awf-mc-qty input::-webkit-inner-spin-button {
		-webkit-appearance: none !important;
		margin: 0 !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mc-subtotal {
		display: flex !important;
		flex-direction: column !important;
		align-items: flex-end !important;
		gap: 2px !important;
		min-width: 0 !important;
		text-align: right !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mc-subtotal strong {
		color: #111 !important;
		font-size: 15px !important;
		font-weight: 800 !important;
		line-height: 1.2 !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mc-coupon,
	body.awf-shopify-pages.woocommerce-cart .awf-mc-totals,
	body.awf-shopify-pages.woocommerce-cart .awf-mc-empty {
		width: 100% !important;
		max-width: 100% !important;
		margin: 14px 0 0 !important;
		padding: 15px !important;
		border: 1px solid #dededb !important;
		border-radius: 7px !important;
		background: #fff !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mc-coupon > label {
		display: block !important;
		margin: 0 0 8px !important;
		color: #111 !important;
		font-size: 12px !important;
		font-weight: 700 !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mc-coupon > div {
		display: grid !important;
		grid-template-columns: minmax(0, 1fr) auto !important;
		width: 100% !important;
		border: 1px solid #d5d5d1 !important;
		border-radius: 5px !important;
		overflow: hidden !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mc-coupon-input,
	body.awf-shopify-pages.woocommerce-cart .awf-mc-apply-coupon {
		min-width: 0 !important;
		min-height: 48px !important;
		margin: 0 !important;
		padding: 10px 12px !important;
		border: 0 !important;
		border-radius: 0 !important;
		background: #fff !important;
		box-shadow: none !important;
		font-family: inherit !important;
		font-size: 12px !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mc-apply-coupon {
		border-left: 1px solid #e1e1de !important;
		color: #111 !important;
		font-weight: 800 !important;
		letter-spacing: .02em !important;
		text-transform: uppercase !important;
		white-space: nowrap !important;
		cursor: pointer !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mc-totals h2,
	body.awf-shopify-pages.woocommerce-cart .awf-mc-empty h2 {
		margin: 0 0 13px !important;
		font-family: inherit !important;
		font-size: 20px !important;
		font-weight: 700 !important;
		line-height: 1.3 !important;
		text-transform: none !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mc-total-row {
		display: flex !important;
		align-items: center !important;
		justify-content: space-between !important;
		gap: 15px !important;
		width: 100% !important;
		padding: 11px 0 !important;
		border-bottom: 1px solid #ececea !important;
		font-size: 13px !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mc-total-row > span {
		font-weight: 700 !important;
		text-transform: uppercase !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mc-total-row strong {
		margin-left: auto !important;
		font-size: 14px !important;
		font-weight: 800 !important;
		text-align: right !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mc-grand-total {
		border-bottom: 0 !important;
		font-size: 16px !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mc-grand-total strong {
		font-size: 18px !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mc-shipping-note {
		margin: 2px 0 14px !important;
		color: #6b6b6b !important;
		font-size: 11px !important;
		line-height: 1.45 !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mc-primary,
	body.awf-shopify-pages.woocommerce-cart .awf-mc-secondary {
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		width: 100% !important;
		min-height: 52px !important;
		margin: 0 !important;
		padding: 12px 16px !important;
		border: 1px solid #111 !important;
		border-radius: 5px !important;
		font-family: inherit !important;
		font-size: 13px !important;
		font-weight: 800 !important;
		line-height: 1.2 !important;
		text-align: center !important;
		text-decoration: none !important;
		text-transform: uppercase !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mc-primary {
		background: #111 !important;
		color: #fff !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mc-secondary {
		margin-top: 9px !important;
		background: #fff !important;
		color: #111 !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mc-empty {
		text-align: center !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mc-empty p {
		margin: 0 0 16px !important;
		color: #666 !important;
		font-size: 13px !important;
	}


	/* Keep summary/bundle inside the screen without touching gallery internals. */
	body.single-product .woocommerce div.product div.summary,
	body.single-product .summary,
	body.single-product .summary .awf-bundle-box {
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
		box-sizing: border-box !important;
	}

	body.single-product .summary .awf-bundle-box {
		padding: 14px !important;
		overflow: hidden !important;
	}
}

@media only screen and (max-width: 380px) {
	body.awf-shopify-pages.woocommerce-cart .awf-mc-item {
		grid-template-columns: 74px minmax(0, 1fr) !important;
		gap: 10px !important;
		padding: 11px !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mc-image a,
	body.awf-shopify-pages.woocommerce-cart .awf-mc-image img {
		width: 74px !important;
		max-width: 74px !important;
		height: 100px !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mc-coupon > div {
		grid-template-columns: 1fr !important;
	}

	body.awf-shopify-pages.woocommerce-cart .awf-mc-apply-coupon {
		border-top: 1px solid #e1e1de !important;
		border-left: 0 !important;
	}
}
