/**
 * WooCommerce – Mindful by Naomi Premium Styling
 *
 * Aligns shop, product, cart, and checkout with the site's
 * calm, premium, minimalist wellness aesthetic.
 *
 * Design tokens: --mbn-bg-primary, --mbn-bg-soft, --mbn-text-primary,
 * --mbn-text-secondary, --mbn-font-body, --mbn-font-heading, --mbn-radius, --mbn-space-*
 */

/* ==========================================================================
   GLOBAL WOOCOMMERCE
   ========================================================================== */

.woocommerce,
.woocommerce-page {
	font-family: var(--mbn-font-body);
	color: var(--mbn-text-primary);
}

.woocommerce a {
	color: var(--mbn-text-primary);
	border-bottom: 1px solid transparent;
	transition: border-color 160ms ease, color 160ms ease, opacity 160ms ease;
}

.woocommerce a:hover {
	border-bottom-color: rgba(74, 63, 53, 0.35);
}

.woocommerce h1,
.woocommerce h2,
.woocommerce h3,
.woocommerce .woocommerce-products-header__title {
	font-family: var(--mbn-font-heading);
	color: var(--mbn-text-primary);
	letter-spacing: -0.01em;
	line-height: 1.18;
}

.woocommerce .woocommerce-products-header__title {
	font-size: clamp(1.75rem, 2.5vw, 2.25rem);
	font-weight: 600;
	margin: 0 0 var(--mbn-space-4);
}

/* ==========================================================================
   BUTTONS – Brown CTA style (matches newsletter)
   ========================================================================== */

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .button,
.woocommerce .wc-block-components-button,
.woocommerce .wp-block-button__link {
	background: var(--mbn-text-primary) !important;
	color: var(--mbn-bg-soft) !important;
	border: 1.5px solid var(--mbn-text-primary) !important;
	border-radius: 999px !important;
	padding: 0.85rem 1.75rem !important;
	font-family: var(--mbn-font-body) !important;
	font-size: 1rem !important;
	font-weight: 500 !important;
	letter-spacing: 0.01em !important;
	transition: background-color 180ms ease, transform 140ms ease, box-shadow 180ms ease !important;
	text-decoration: none !important;
	box-shadow: none !important;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce .button:hover,
.woocommerce .wc-block-components-button:hover,
.woocommerce .wp-block-button__link:hover {
	background: rgba(74, 63, 53, 0.88) !important;
	color: var(--mbn-bg-soft) !important;
	border-color: var(--mbn-text-primary) !important;
	transform: translateY(-1px) !important;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08) !important;
}

.woocommerce a.button:active,
.woocommerce button.button:active,
.woocommerce input.button:active,
.woocommerce .button:active {
	transform: translateY(0) !important;
}

/* Alt button (e.g. "View cart" link) */
.woocommerce a.button.alt {
	background: var(--mbn-bg-soft) !important;
	color: var(--mbn-text-primary) !important;
	border-color: rgba(74, 63, 53, 0.25) !important;
}

.woocommerce a.button.alt:hover {
	background: rgba(246, 245, 242, 0.88) !important;
	border-color: rgba(74, 63, 53, 0.35) !important;
}

/* ==========================================================================
   FORM FIELDS – Newsletter-style inputs
   ========================================================================== */

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce .wc-block-components-text-input input,
.woocommerce .wc-block-components-combobox input {
	background: #ffffff !important;
	border: 1px solid rgba(74, 63, 53, 0.2) !important;
	border-radius: 999px !important;
	padding: 0.85rem 1.25rem !important;
	font-family: var(--mbn-font-body) !important;
	font-size: 1rem !important;
	color: var(--mbn-text-primary) !important;
	transition: border-color 180ms ease, box-shadow 180ms ease !important;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus,
.woocommerce .wc-block-components-text-input input:focus {
	outline: none !important;
	border-color: var(--mbn-text-primary) !important;
	box-shadow: 0 0 0 3px rgba(74, 63, 53, 0.08) !important;
}

.woocommerce form .form-row input.input-text::placeholder,
.woocommerce form .form-row textarea::placeholder {
	color: rgba(74, 63, 53, 0.5);
}

/* Select dropdown */
.woocommerce form .form-row select {
	border-radius: var(--mbn-radius) !important;
	appearance: auto;
}

/* ==========================================================================
   SHOP PAGE – Grid & product cards
   ========================================================================== */

.woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(24px, 3.5vw, 40px);
	list-style: none;
	padding: 0;
	margin: var(--mbn-space-5) 0 0;
}

@media (max-width: 1024px) {
	.woocommerce ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 600px) {
	.woocommerce ul.products {
		grid-template-columns: 1fr;
		gap: var(--mbn-space-5);
	}
}

.woocommerce ul.products li.product {
	background: var(--mbn-bg-soft);
	border-radius: var(--mbn-radius);
	overflow: hidden;
	box-shadow: 0 10px 26px rgba(74, 63, 53, 0.08);
	transition: box-shadow 200ms ease, transform 200ms ease;
	padding: 0;
}

.woocommerce ul.products li.product:hover {
	box-shadow: 0 14px 32px rgba(74, 63, 53, 0.12);
}

/* Product image */
.woocommerce ul.products li.product .woocommerce-loop-product__link {
	display: block;
	line-height: 0;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	border-radius: var(--mbn-radius) var(--mbn-radius) 0 0;
}

.woocommerce ul.products li.product img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Product content */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h2,
.woocommerce ul.products li.product h3 {
	font-family: var(--mbn-font-heading);
	font-size: 1.15rem;
	line-height: 1.22;
	margin: var(--mbn-space-3) 0 var(--mbn-space-2);
	padding: 0 var(--mbn-space-4);
	color: var(--mbn-text-primary);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title a,
.woocommerce ul.products li.product h2 a,
.woocommerce ul.products li.product h3 a {
	border-bottom-color: transparent;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title a:hover,
.woocommerce ul.products li.product h2 a:hover,
.woocommerce ul.products li.product h3 a:hover {
	opacity: 0.75;
}

/* Price (last visible element on archive cards – no add to cart) */
.woocommerce ul.products li.product .price {
	font-family: var(--mbn-font-body);
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--mbn-text-primary);
	padding: 0 var(--mbn-space-4);
	margin: 0 0 var(--mbn-space-4);
}

.woocommerce ul.products li.product .price del {
	opacity: 0.6;
}

.woocommerce ul.products li.product .price ins {
	text-decoration: none;
}

/* Add to cart in loop – HIDDEN on archive (premium minimal; PHP removes via woocommerce-shop-archive.php) */
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .add_to_cart_button {
	display: none !important;
}

/* Sale flash */
.woocommerce ul.products li.product .onsale {
	background: var(--mbn-text-primary);
	color: var(--mbn-bg-soft);
	padding: 0.35rem 0.75rem;
	border-radius: 999px;
	font-size: 0.8rem;
	font-weight: 600;
	line-height: 1.2;
}

/* ==========================================================================
   SHOP PAGE – Header (result count, ordering) – HIDDEN (premium minimal)
   ========================================================================== */

/* PHP removes these via woocommerce-shop-archive.php; CSS fallback */
.woocommerce-result-count,
.woocommerce-ordering {
	display: none !important;
}

/* ==========================================================================
   SINGLE PRODUCT – Premium 2-column layout (template override)
   ========================================================================== */

/* Breadcrumbs – hidden on single product (PHP removes; CSS fallback) */
.woocommerce.single-product .woocommerce-breadcrumb,
.single-product .ast-breadcrumbs-wrapper,
.single-product .ast-header-breadcrumb {
	display: none !important;
}

/* Breadcrumbs – hidden on shop/archive (PHP removes; CSS fallback) */
.post-type-archive-product .woocommerce-breadcrumb,
.tax-product_cat .woocommerce-breadcrumb,
.tax-product_tag .woocommerce-breadcrumb,
.post-type-archive-product .ast-breadcrumbs-wrapper,
.tax-product_cat .ast-breadcrumbs-wrapper,
.tax-product_tag .ast-breadcrumbs-wrapper {
	display: none !important;
}

/* Magnifying glass icon – remove completely */
.woocommerce-product-gallery__trigger {
	display: none !important;
}

/* Main 2-column grid: large image left (480–560px on desktop), summary right */
.mbn-single-product .mbn-single-product-grid {
	display: grid;
	grid-template-columns: minmax(480px, 560px) 1fr;
	gap: clamp(48px, 7vw, 80px);
	align-items: start;
	margin-top: var(--mbn-space-6);
	padding-top: var(--mbn-space-4);
}

/* Left column: fixed elegant image area, 4:5 aspect ratio */
.mbn-single-product .mbn-single-product-gallery-col {
	min-width: 0;
}

/* Product gallery – rounded corners (18px = recipe cards), clip all content */
.woocommerce.single-product .woocommerce-product-gallery {
	border-radius: 18px;
	overflow: hidden;
}

.mbn-single-product .woocommerce-product-gallery {
	margin-bottom: 0;
	position: sticky;
	top: clamp(24px, 4vw, 48px);
	width: 100%;
	max-width: 560px;
	border-radius: 18px;
	overflow: hidden;
}

/* Wrapper and flexslider viewport – inherit rounded corners */
.woocommerce.single-product .woocommerce-product-gallery__wrapper,
.mbn-single-product .woocommerce-product-gallery .flex-viewport {
	border-radius: 18px;
	overflow: hidden;
}

.mbn-single-product .woocommerce-product-gallery__wrapper {
	box-shadow: 0 14px 40px rgba(74, 63, 53, 0.12);
	display: flex;
	flex-direction: column;
	background: var(--mbn-bg-soft);
	aspect-ratio: 4 / 5;
}

/* Image containers – rounded corners, overflow hidden for zoom clipping */
.mbn-single-product .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image,
.mbn-single-product .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image--placeholder {
	aspect-ratio: 4 / 5;
	width: 100%;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--mbn-bg-soft);
	border-radius: 18px;
}

/* All product images – rounded corners, clipped by container overflow */
.woocommerce.single-product .woocommerce-product-gallery img {
	border-radius: 18px;
}

.mbn-single-product .woocommerce-product-gallery__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

/* Zoom image (injected by WooCommerce zoom) – rounded corners */
.mbn-single-product .woocommerce-product-gallery__image .zoomImg {
	border-radius: 18px;
}

/* Right column: summary */
.mbn-single-product .mbn-single-product-summary-col {
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}

/* Category – optional, above title */
.mbn-single-product .mbn-product-category {
	font-size: 0.95rem;
	color: var(--mbn-text-secondary);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin: 0 0 var(--mbn-space-2);
}

.mbn-single-product .mbn-product-category a {
	color: var(--mbn-text-secondary);
}

.mbn-single-product .mbn-product-category a:hover {
	color: var(--mbn-text-primary);
}

/* Title – full display, no truncation, natural wrap */
.mbn-single-product .mbn-single-product-summary-col .product_title {
	font-family: var(--mbn-font-heading);
	font-size: clamp(2rem, 3.2vw, 3rem);
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: var(--mbn-text-primary);
	margin: 0 0 var(--mbn-space-4);
	white-space: normal;
	overflow: visible;
	text-overflow: unset;
}

/* Price – clear, prominent */
.mbn-single-product .mbn-single-product-summary-col .price {
	font-family: var(--mbn-font-body);
	font-size: clamp(1.35rem, 1.8vw, 1.75rem);
	font-weight: 600;
	color: var(--mbn-text-primary);
	margin: 0 0 var(--mbn-space-5);
	line-height: 1.3;
}

.mbn-single-product .mbn-single-product-summary-col .price del {
	opacity: 0.6;
}

.mbn-single-product .mbn-single-product-summary-col .price ins {
	text-decoration: none;
}

/* Short description – readable, generous spacing */
.mbn-single-product .mbn-single-product-summary-col .woocommerce-product-details__short-description {
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--mbn-text-secondary);
	margin: 0 0 var(--mbn-space-6);
	max-width: 52ch;
}

.mbn-single-product .mbn-single-product-summary-col .woocommerce-product-details__short-description p {
	margin: 0 0 var(--mbn-space-3);
}

.mbn-single-product .mbn-single-product-summary-col .woocommerce-product-details__short-description p:last-child {
	margin-bottom: 0;
}

/* Add to cart – main CTA, premium brown button */
.mbn-single-product .mbn-single-product-summary-col .cart {
	margin: var(--mbn-space-5) 0 0;
}

.mbn-single-product .mbn-single-product-summary-col form.cart {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: var(--mbn-space-4);
}

.mbn-single-product .mbn-single-product-summary-col .cart .single_add_to_cart_button {
	display: inline-block;
}

.mbn-single-product .mbn-single-product-summary-col .single_add_to_cart_button,
.mbn-single-product .mbn-single-product-summary-col .cart .button {
	background: var(--mbn-text-primary) !important;
	color: var(--mbn-bg-soft) !important;
	border: 2px solid var(--mbn-text-primary) !important;
	border-radius: 999px !important;
	padding: 1rem 2.25rem !important;
	font-size: 1.1rem !important;
	font-weight: 600 !important;
	letter-spacing: 0.02em !important;
	transition: background-color 180ms ease, transform 140ms ease, box-shadow 180ms ease !important;
	box-shadow: 0 6px 20px rgba(74, 63, 53, 0.2) !important;
}

.mbn-single-product .mbn-single-product-summary-col .single_add_to_cart_button:hover,
.mbn-single-product .mbn-single-product-summary-col .cart .button:hover {
	background: rgba(74, 63, 53, 0.92) !important;
	color: var(--mbn-bg-soft) !important;
	transform: translateY(-2px) !important;
	box-shadow: 0 10px 28px rgba(74, 63, 53, 0.25) !important;
}

.mbn-single-product .mbn-single-product-summary-col .single_add_to_cart_button:active,
.mbn-single-product .mbn-single-product-summary-col .cart .button:active {
	transform: translateY(0) !important;
}

/* Product meta – removed (PHP removes; CSS fallback) */
.mbn-single-product .product_meta {
	display: none !important;
}

/* Variable product variations */
.mbn-single-product .mbn-single-product-summary-col .variations {
	margin-bottom: var(--mbn-space-4);
}

.mbn-single-product .mbn-single-product-summary-col .variations td {
	padding: var(--mbn-space-2) 0;
	vertical-align: middle;
}

.mbn-single-product .mbn-single-product-summary-col .variations label {
	font-weight: 500;
	color: var(--mbn-text-primary);
}

/* Quantity – visible label above input, premium styling */
.mbn-single-product .mbn-quantity-wrapper {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--mbn-space-2);
}

.mbn-single-product .mbn-quantity-label {
	display: block !important;
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--mbn-text-primary);
	letter-spacing: 0.01em;
	margin-bottom: 0;
}

.mbn-single-product .mbn-single-product-summary-col .cart .quantity {
	margin-right: 0;
}

.mbn-single-product .mbn-single-product-summary-col .quantity input {
	width: 4.5rem;
	text-align: center;
	border-radius: var(--mbn-radius);
	padding: 0.75rem 1rem !important;
}

/* Product tabs (description, etc.) – full width below grid */
.mbn-single-product .woocommerce-tabs {
	width: 100%;
	margin-top: var(--mbn-space-6);
	padding-top: var(--mbn-space-6);
	border-top: 1px solid rgba(74, 63, 53, 0.12);
}

.mbn-single-product .woocommerce-tabs .tabs {
	list-style: none;
	padding: 0;
	margin: 0 0 var(--mbn-space-5);
	display: flex;
	gap: var(--mbn-space-5);
	padding-bottom: var(--mbn-space-4);
	border-bottom: 1px solid rgba(74, 63, 53, 0.15);
}

.mbn-single-product .woocommerce-tabs .tabs li a {
	border-bottom-color: transparent;
	font-weight: 500;
}

.mbn-single-product .woocommerce-tabs .tabs li.active a {
	border-bottom-color: var(--mbn-text-primary);
}

/* Long description – clean content block */
.mbn-single-product .woocommerce-tabs .panel {
	font-size: 1.1rem;
	line-height: 1.85;
	color: var(--mbn-text-secondary);
	max-width: 65ch;
	margin: 0;
	padding-right: var(--mbn-space-6);
}

.mbn-single-product .woocommerce-tabs .panel h2 {
	font-family: var(--mbn-font-heading);
	font-size: 1.5rem;
	font-weight: 600;
	margin: 0 0 var(--mbn-space-4);
	color: var(--mbn-text-primary);
}

.mbn-single-product .woocommerce-tabs .panel p {
	margin: 0 0 var(--mbn-space-4);
}

.mbn-single-product .woocommerce-tabs .panel p:last-child {
	margin-bottom: 0;
}

.mbn-single-product .woocommerce-tabs .panel ul,
.mbn-single-product .woocommerce-tabs .panel ol {
	margin: 0 0 var(--mbn-space-4);
	padding-left: 1.5rem;
}

/* ==========================================================================
   PRODUCT OFFER SECTIONS – What you get, Who it's for, What people say
   ========================================================================== */

.mbn-product-offer-sections {
	grid-column: 1 / -1;
	margin-top: var(--mbn-space-6);
	padding-top: var(--mbn-space-6);
	border-top: 1px solid rgba(74, 63, 53, 0.12);
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--mbn-space-6);
}

@media (min-width: 1024px) {
	.mbn-product-offer-sections {
		grid-template-columns: repeat(3, 1fr);
	}
}

.mbn-offer-section {
	background: var(--mbn-bg-soft);
	border-radius: var(--mbn-radius);
	padding: var(--mbn-space-5);
	box-shadow: 0 8px 24px rgba(74, 63, 53, 0.06);
}

.mbn-offer-section__title {
	font-family: var(--mbn-font-heading);
	font-size: clamp(1.25rem, 1.8vw, 1.5rem);
	font-weight: 600;
	color: var(--mbn-text-primary);
	margin: 0 0 var(--mbn-space-4);
	letter-spacing: -0.01em;
	line-height: 1.25;
}

.mbn-offer-section__content {
	font-size: 1.05rem;
	line-height: 1.8;
	color: var(--mbn-text-secondary);
}

.mbn-offer-section__content p {
	margin: 0 0 var(--mbn-space-3);
}

.mbn-offer-section__content p:last-child {
	margin-bottom: 0;
}

.mbn-offer-section__content ul,
.mbn-offer-section__content ol {
	margin: 0 0 var(--mbn-space-3);
	padding-left: 1.5rem;
}

.mbn-offer-section__content ul:last-child,
.mbn-offer-section__content ol:last-child {
	margin-bottom: 0;
}

.mbn-offer-section__content blockquote {
	margin: var(--mbn-space-4) 0;
	padding-left: var(--mbn-space-4);
	border-left: 3px solid rgba(74, 63, 53, 0.25);
	font-style: italic;
	color: var(--mbn-text-secondary);
}

/* Related products, upsells – full width */
.mbn-single-product .upsells.products,
.mbn-single-product .related.products {
	width: 100%;
	margin-top: var(--mbn-space-6);
	padding-top: var(--mbn-space-6);
	border-top: 1px solid rgba(74, 63, 53, 0.12);
}

.mbn-single-product .related.products h2 {
	font-size: clamp(1.5rem, 2vw, 1.75rem);
	margin-bottom: var(--mbn-space-5);
}

/* ==========================================================================
   SINGLE PRODUCT – Mobile layout (stacked, clean)
   ========================================================================== */

@media (max-width: 1024px) {
	.mbn-single-product .mbn-single-product-grid {
		grid-template-columns: 1fr;
		gap: var(--mbn-space-6);
		margin-top: var(--mbn-space-5);
		padding-top: var(--mbn-space-3);
	}

	.mbn-single-product .woocommerce-product-gallery {
		position: static;
		max-width: none;
	}

	.mbn-single-product .mbn-single-product-summary-col .product_title {
		margin-top: var(--mbn-space-2);
	}

	.mbn-single-product .mbn-single-product-summary-col .woocommerce-product-details__short-description {
		max-width: none;
	}

	.mbn-single-product .mbn-single-product-summary-col form.cart {
		flex-direction: column;
		align-items: stretch;
		gap: var(--mbn-space-4);
	}

	.mbn-single-product .mbn-single-product-summary-col .cart .quantity {
		width: auto;
	}

	.mbn-single-product .mbn-single-product-summary-col .single_add_to_cart_button,
	.mbn-single-product .mbn-single-product-summary-col .cart .button {
		width: 100%;
		padding: 1.1rem 1.5rem !important;
	}

	.mbn-single-product .woocommerce-tabs .panel {
		max-width: none;
		padding-right: 0;
	}

	.mbn-product-offer-sections {
		margin-top: var(--mbn-space-5);
		padding-top: var(--mbn-space-5);
		gap: var(--mbn-space-4);
		grid-template-columns: 1fr;
	}

	.mbn-offer-section {
		padding: var(--mbn-space-4);
	}
}

/* ==========================================================================
   SINGLE PRODUCT – Desktop-only enhancements (min-width: 1025px)
   Mobile/tablet layout unchanged; these apply only on desktop.
   ========================================================================== */

@media (min-width: 1025px) {
	/* 1. Larger product image – increase left column width for more visual prominence */
	.mbn-single-product .mbn-single-product-grid {
		grid-template-columns: minmax(540px, 620px) minmax(380px, 1fr);
	}

	.mbn-single-product .woocommerce-product-gallery {
		max-width: none;
	}

	/* 2. Product title – single line on desktop, no wrap */
	.mbn-single-product .mbn-single-product-summary-col .product_title {
		white-space: nowrap;
	}

	/* 3. Add to cart button – single line on desktop, no wrap, adequate padding */
	.mbn-single-product .mbn-single-product-summary-col .single_add_to_cart_button,
	.mbn-single-product .mbn-single-product-summary-col .cart .button {
		white-space: nowrap;
		padding: 1rem 2.5rem !important;
	}
}

/* ==========================================================================
   CART / CHECKOUT – Tables & blocks
   ========================================================================== */

.woocommerce-cart table.cart,
.woocommerce-checkout table {
	background: var(--mbn-bg-soft);
	border-radius: var(--mbn-radius);
	overflow: hidden;
	box-shadow: 0 10px 26px rgba(74, 63, 53, 0.08);
}

.woocommerce-cart table.cart th,
.woocommerce-cart table.cart td,
.woocommerce-checkout table th,
.woocommerce-checkout table td {
	padding: var(--mbn-space-4);
	border-color: rgba(74, 63, 53, 0.1);
}

.woocommerce-cart table.cart .product-name a,
.woocommerce-checkout .product-name a {
	border-bottom-color: transparent;
}

.woocommerce-cart .cart_totals,
.woocommerce-checkout .order-review {
	background: var(--mbn-bg-soft);
	border-radius: var(--mbn-radius);
	padding: var(--mbn-space-5);
	box-shadow: 0 10px 26px rgba(74, 63, 53, 0.08);
}

.woocommerce-cart .cart_totals h2,
.woocommerce-checkout .order-review h3 {
	font-family: var(--mbn-font-heading);
	font-size: 1.25rem;
	margin: 0 0 var(--mbn-space-4);
}

/* Block-based cart/checkout */
.woocommerce .wc-block-components-totals-wrapper,
.woocommerce .wc-block-components-order-summary {
	background: var(--mbn-bg-soft);
	border-radius: var(--mbn-radius);
	padding: var(--mbn-space-5);
}

/* ==========================================================================
   MY ACCOUNT
   ========================================================================== */

.woocommerce-account .woocommerce-MyAccount-navigation {
	background: var(--mbn-bg-soft);
	border-radius: var(--mbn-radius);
	padding: var(--mbn-space-4);
	margin-bottom: var(--mbn-space-5);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li {
	margin: 0;
	display: block;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
	display: block;
	padding: var(--mbn-space-2) 0;
	border-bottom: 1px solid rgba(74, 63, 53, 0.1);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li:last-child a {
	border-bottom: 0;
}

.woocommerce-account .woocommerce-MyAccount-content {
	background: var(--mbn-bg-soft);
	border-radius: var(--mbn-radius);
	padding: var(--mbn-space-5);
}

/* ==========================================================================
   BREADCRUMB
   ========================================================================== */

.woocommerce-breadcrumb {
	font-size: 0.9rem;
	color: var(--mbn-text-secondary);
	margin-bottom: var(--mbn-space-4);
}

.woocommerce-breadcrumb a {
	color: var(--mbn-text-secondary);
}

.woocommerce-breadcrumb a:hover {
	color: var(--mbn-text-primary);
}

/* ==========================================================================
   MESSAGES / NOTICES
   ========================================================================== */

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	background: var(--mbn-bg-soft);
	border-radius: var(--mbn-radius);
	border-left: 4px solid var(--mbn-text-primary);
	padding: var(--mbn-space-4);
	margin-bottom: var(--mbn-space-4);
}

.woocommerce-error {
	border-left-color: #c0392b;
}

.woocommerce-success {
	border-left-color: #27ae60;
}

/* ==========================================================================
   PAGINATION
   ========================================================================== */

.woocommerce nav.woocommerce-pagination {
	margin-top: var(--mbn-space-5);
}

.woocommerce nav.woocommerce-pagination ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: var(--mbn-space-2);
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
	display: inline-block;
	padding: 0.5rem 1rem;
	background: var(--mbn-bg-soft);
	border-radius: var(--mbn-radius);
	border: 1px solid rgba(74, 63, 53, 0.2);
	transition: border-color 160ms ease, background 160ms ease;
}

.woocommerce nav.woocommerce-pagination ul li a:hover {
	border-color: rgba(74, 63, 53, 0.35);
	background: rgba(246, 245, 242, 0.88);
}

.woocommerce nav.woocommerce-pagination ul li span.current {
	background: var(--mbn-text-primary);
	color: var(--mbn-bg-soft);
	border-color: var(--mbn-text-primary);
}

/* ==========================================================================
   EMPTY STATES
   ========================================================================== */

.woocommerce-info,
.woocommerce .cart-empty {
	text-align: center;
	padding: var(--mbn-space-6);
}

.woocommerce .cart-empty .wc-forward {
	margin-top: var(--mbn-space-4);
	padding: 0.85rem 1.75rem;
}

/* ==========================================================================
   WOOCOMMERCE BLOCKS (Cart, Checkout)
   ========================================================================== */

.wc-block-components-button,
.wc-block-checkout__actions-row .wc-block-components-button {
	background: var(--mbn-text-primary) !important;
	color: var(--mbn-bg-soft) !important;
	border-color: var(--mbn-text-primary) !important;
	border-radius: 999px !important;
}

.wc-block-components-button:hover,
.wc-block-checkout__actions-row .wc-block-components-button:hover {
	background: rgba(74, 63, 53, 0.88) !important;
	color: var(--mbn-bg-soft) !important;
}

.wc-block-components-totals-item,
.wc-block-components-order-summary {
	color: var(--mbn-text-primary);
}

/* ==========================================================================
   PAGE LAYOUT – Match site content width
   ========================================================================== */

.woocommerce .ast-container,
.woocommerce-page .ast-container {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 768px) {
	.woocommerce ul.products li.product .woocommerce-loop-product__title,
	.woocommerce ul.products li.product h2,
	.woocommerce ul.products li.product h3 {
		font-size: 1.05rem;
		padding: 0 var(--mbn-space-3);
	}

	.woocommerce ul.products li.product .price {
		padding-left: var(--mbn-space-3);
		padding-right: var(--mbn-space-3);
	}

	.woocommerce-cart table.cart .product-thumbnail {
		display: none;
	}

	.woocommerce .woocommerce-products-header {
		display: block;
	}

}
