/*
Theme Name: Astra Child
Template: astra
Version: 1.0.3
*/

body.es-clean-shop #page,
body.es-clean-shop .hfeed,
body.es-clean-shop #content,
body.es-clean-shop .site-content,
body.es-clean-shop .ast-container,
body.es-clean-shop .ast-woocommerce-container,
body.es-clean-shop #primary:not(.es-main),
body.es-clean-shop .content-area,
body.woocommerce-page #page,
body.woocommerce-page .hfeed,
body.woocommerce-page #content,
body.woocommerce-page .site-content,
body.woocommerce-page .ast-container,
body.woocommerce-page .ast-woocommerce-container,
body.woocommerce-page #primary:not(.es-main),
body.woocommerce-page .content-area {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	float: none !important;
	grid-template-columns: 1fr !important;
	grid-template-areas: none !important;
}

body.es-clean-shop .site {
	display: block !important;
	max-width: none !important;
	width: 100% !important;
}

body.woocommerce-page #secondary,
body.woocommerce-page aside.widget-area,
body.woocommerce-page .widget-area,
body.woocommerce-page .ast-woocommerce-sidebar,
body.woocommerce-page .sidebar-main,
body.woocommerce-page .ast-woocommerce-container > aside {
	display: none !important;
}

/*
 * Keep horizontal scroll contained on the viewport only — do not set overflow-x
 * hidden on #page or it clips the .es-main full-bleed breakout (content stays narrow).
 */
html,
body.es-clean-shop {
	overflow-x: hidden;
}

body.es-clean-shop .es-main,
body.woocommerce-page .es-main {
	position: relative;
	display: block !important;
	left: 50%;
	right: 50%;
	margin-left: -50vw !important;
	margin-right: -50vw !important;
	width: 100vw !important;
	max-width: 100vw !important;
	min-width: 100vw !important;
	padding: 0 !important;
	background: #fff;
	box-sizing: border-box;
	grid-column: 1 / -1 !important;
	grid-row: auto !important;
}

/*
 * Never apply max-width:100% of parent to #primary.es-main — that caps the shop to a
 * narrow .ast-container and defeats width:100vw (matches body class chain:
 * woocommerce-shop ast-plain-container ast-page-builder-template es-clean-shop).
 */
body.es-clean-shop #primary.es-main,
body.woocommerce-page #primary.es-main {
	max-width: none !important;
}

body.woocommerce-page .es-main__inner {
	width: 100% !important;
	max-width: 100% !important;
	margin-left: auto !important;
	margin-right: auto !important;
	padding: 40px clamp(16px, 3vw, 48px) 64px;
	box-sizing: border-box;
}

.es-shop-page {
	width: 100%;
	position: relative;
}

.es-shop-header {
	margin-bottom: 24px;
}

.es-shop-title {
	font-size: clamp(30px, 4vw, 52px);
	line-height: 1.05;
	margin: 0 0 10px;
	color: #111;
}

.es-shop-toolbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	margin-bottom: 28px;
	padding: 16px 0;
	border-top: 1px solid #ececec;
	border-bottom: 1px solid #ececec;
}

.es-shop-toolbar__count,
.es-shop-toolbar__sort {
	font-size: 14px;
	color: #555;
}

.es-shop-toolbar select,
.es-shop-toolbar .orderby {
	min-height: 44px;
	padding: 0 14px;
	border: 1px solid #d8d8d8;
	border-radius: 12px;
	background: #fff;
}

.woocommerce ul.products.es-product-grid,
.woocommerce-page ul.products.es-product-grid {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	gap: 24px !important;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
	width: 100% !important;
}

.woocommerce ul.products li.product.es-product-card,
.woocommerce-page ul.products li.product.es-product-card {
	float: none !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	clear: none !important;
	border: 1px solid #ececec;
	border-radius: 14px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
	display: flex;
	flex-direction: column;
	text-align: center;
}

.es-product-card__image {
	display: block;
	aspect-ratio: 1 / 1;
	background: #f6f6f6;
	overflow: hidden;
}

.es-product-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.es-product-card__body {
	padding: 12px 12px 14px;
	display: flex;
	flex-direction: column;
	flex: 1;
	align-items: center;
}

.es-product-card__cats {
	font-size: 10px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #888;
	margin-bottom: 6px;
}

.es-product-card__cats a {
	color: inherit;
	text-decoration: none;
}

.es-product-card__title {
	font-size: 14px;
	line-height: 1.3;
	margin: 0 0 6px;
	font-weight: 700;
	word-break: break-word;
	overflow-wrap: break-word;
	hyphens: auto;
}

.es-product-card__title a {
	color: #111;
	text-decoration: none;
	display: inline-block;
	max-width: 100%;
}

.es-product-card__price {
	font-size: 14px;
	font-weight: 700;
	color: #111;
	margin-bottom: 10px;
}

.es-product-card__actions {
	margin-top: auto;
	width: 100%;
	display: flex;
	justify-content: center;
}

.es-product-card__actions .button,
.es-product-card__actions .add_to_cart_button,
.es-product-card__actions .product_type_variable {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	padding: 0 14px;
	border-radius: 10px;
	background: #111 !important;
	color: #fff !important;
	text-decoration: none;
	font-weight: 700;
	font-size: 11px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	border: 0;
}

.es-shop-pagination {
	margin-top: 36px;
}

/*
 * Shop listing layout — mobile-first: stack sidebar + grid.
 * Desktop row only from 1025px up (never rely on max-width overrides fighting row !important).
 */
.es-shop-layout {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 24px;
	width: 100%;
	flex-wrap: nowrap;
}

.es-shop-content {
	flex: 1 1 auto;
	min-width: 0;
	width: 100%;
	max-width: 100%;
}

.es-shop-sidebar {
	flex: 1 1 auto;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

@media (min-width: 1025px) {
	.es-shop-layout {
		flex-direction: row;
		align-items: flex-start;
		gap: 40px;
	}

	.es-shop-content {
		width: auto;
		max-width: none;
	}

	.es-shop-sidebar {
		flex: 0 0 280px;
		max-width: 280px;
		width: 280px;
	}
}

.es-filter-block {
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 18px;
	padding: 18px 20px;
}

.es-filter-title {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #111;
	margin: 0 0 14px;
}

.es-filter-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.es-filter-list a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 10px;
	font-size: 14px;
	color: #333;
	text-decoration: none;
	border-radius: 10px;
	transition: background 0.15s ease;
}

.es-filter-list a:hover {
	background: #f6f6f6;
}

.es-filter-list li.is-active a {
	background: #111;
	color: #fff;
}

.es-filter-list li.is-active .es-filter-count {
	color: #ccc;
}

.es-filter-count {
	font-size: 12px;
	color: #888;
}

.es-filter-block .widget {
	margin: 0 !important;
}

.es-filter-block .widget > * {
	margin: 0;
}

.es-filter-block .price_slider_wrapper {
	padding: 4px 0;
}

.es-filter-block .price_slider_amount {
	font-size: 13px;
	color: #444;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 12px;
}

.es-filter-block .price_slider_amount .button {
	background: #111 !important;
	color: #fff !important;
	border: 0;
	padding: 8px 14px;
	border-radius: 10px;
	font-size: 12px;
	font-weight: 700;
}

.es-filter-block .search-field {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid #d7d7d7;
	border-radius: 10px;
	font-size: 14px;
}

.es-filter-block .search-submit {
	display: none;
}

.es-product-page {
	width: 100%;
}

.es-product-top {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
	gap: 48px;
	align-items: start;
}

.es-product-summary {
	position: sticky;
	top: 24px;
}

.es-breadcrumbs {
	font-size: 14px;
	color: #777;
	margin-bottom: 14px;
}

.es-breadcrumbs a {
	color: inherit;
	text-decoration: none;
}

.es-sku {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #666;
	margin-bottom: 12px;
}

.es-product-cats {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #666;
	margin-bottom: 10px;
}

.es-product-cats a {
	color: #111;
	text-decoration: none;
}

.es-product-cats a:hover {
	text-decoration: underline;
}

.es-product-title {
	font-size: clamp(32px, 4vw, 52px);
	line-height: 1.05;
	font-weight: 700;
	margin: 0 0 14px;
	color: #111;
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 14px;
}

.es-product-sku-inline {
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.1em;
	color: #aaa;
	text-transform: uppercase;
}

.es-product-subtitle {
	font-size: 16px;
	line-height: 1.55;
	color: #444;
	margin-bottom: 20px;
}

.es-product-subtitle p {
	margin: 0 0 8px;
}

.es-product-quote {
	margin-top: 16px;
	padding: 18px 20px;
	border: 1px dashed #c9c9c9;
	border-radius: 16px;
	background: #fff;
	text-align: center;
}

.es-product-quote__label {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #666;
	margin: 0 0 10px;
}

.es-product-quote__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 24px;
	border-radius: 14px;
	background: #0ba39c;
	color: #fff;
	text-decoration: none;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	transition: background 0.15s ease;
}

.es-product-quote__btn:hover {
	background: #088680;
	color: #fff;
}

.es-product-quote__hint {
	font-size: 13px;
	color: #777;
	margin: 10px 0 0;
	line-height: 1.5;
}

.es-product-price {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 10px;
	color: #111;
}

.es-product-price p {
	margin: 0;
}

.es-product-stock {
	margin-bottom: 18px;
	font-size: 15px;
}

.es-product-excerpt {
	font-size: 16px;
	line-height: 1.7;
	color: #444;
	margin-bottom: 28px;
}

.es-product-cart {
	padding: 24px;
	border: 1px solid #e7e7e7;
	border-radius: 18px;
	background: #fafafa;
	margin-bottom: 24px;
}

.es-product-cart table.variations {
	margin-bottom: 18px;
	width: 100%;
}

.es-product-cart table.variations th,
.es-product-cart table.variations td {
	display: block;
	width: 100%;
	padding: 0;
}

.es-product-cart table.variations tr {
	display: block;
	margin-bottom: 18px;
}

.es-product-cart table.variations label {
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 8px;
	color: #111;
}

.es-product-cart table.variations select {
	width: 100%;
	min-height: 48px;
	padding: 0 14px;
	border: 1px solid #d7d7d7;
	border-radius: 12px;
	background: #fff;
	font-size: 15px;
}

.es-product-cart .single_variation_wrap {
	margin-top: 16px;
}

.es-product-cart .quantity {
	margin-right: 12px;
}

.es-product-cart input.qty {
	min-height: 46px;
	border-radius: 12px;
	border: 1px solid #d7d7d7;
}

.es-product-cart .single_add_to_cart_button {
	min-height: 50px;
	padding: 0 26px;
	border-radius: 14px;
	background: #111;
	color: #fff;
	font-weight: 700;
	border: 0;
}

.es-product-meta {
	font-size: 14px;
	color: #555;
	padding-top: 8px;
	border-top: 1px solid #ececec;
}

.es-product-meta a {
	color: #111;
	text-decoration: none;
}

.es-product-bottom {
	margin-top: 48px;
}

.es-product-tabs {
	margin-bottom: 40px;
}

.es-product-related h2 {
	font-size: 28px;
	margin-bottom: 20px;
	color: #111;
}

.woocommerce div.product div.images img {
	border-radius: 18px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
	padding-left: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
	border-radius: 12px 12px 0 0;
}

@media (max-width: 1100px) {
	.es-shop-layout {
		gap: 28px;
	}

	@media (min-width: 1025px) {
		.es-shop-sidebar {
			flex: 0 0 240px;
			max-width: 240px;
			width: 240px;
		}
	}

	.woocommerce ul.products.es-product-grid,
	.woocommerce-page ul.products.es-product-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 780px) {
	body.woocommerce-page.single-product .es-main__inner {
		padding: 24px 16px 40px;
	}

	.es-shop-toolbar {
		flex-direction: column;
		align-items: stretch;
	}

	.woocommerce ul.products.es-product-grid,
	.woocommerce-page ul.products.es-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 16px !important;
	}

	.es-product-card__title {
		font-size: 18px;
	}

	.es-product-top {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.es-product-summary {
		position: static;
	}

	.es-product-title {
		font-size: 32px;
	}
}

@media (max-width: 520px) {
	.woocommerce ul.products.es-product-grid,
	.woocommerce-page ul.products.es-product-grid {
		grid-template-columns: 1fr !important;
	}
}

/* ============================================================
   SINGLE PRODUCT - HARD OVERRIDE (LEFT IMAGE / RIGHT DETAILS)
   Mobile-first: one column so gallery never collapses to 0 width.
   ============================================================ */
body.single-product .es-product-top {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) !important;
	gap: clamp(20px, 4vw, 28px) !important;
	align-items: start !important;
	width: 100% !important;
	max-width: 100% !important;
	min-width: 0 !important;
	box-sizing: border-box !important;
}

body.single-product .es-product-gallery,
body.single-product .es-product-summary {
	min-width: 0;
}

body.single-product .es-product-gallery .woocommerce-product-gallery {
	float: none !important;
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
}

body.single-product .es-product-gallery .woocommerce-product-gallery__wrapper {
	border: 1px solid #ececec;
	border-radius: 18px;
	overflow: hidden;
	background: #fafafa;
}

body.single-product .es-product-gallery .woocommerce-product-gallery__image img {
	width: 100% !important;
	height: auto !important;
	object-fit: cover;
	display: block;
}

body.single-product .es-product-gallery .flex-control-thumbs {
	display: grid !important;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 10px;
	margin-top: 14px !important;
}

body.single-product .es-product-gallery .flex-control-thumbs li {
	float: none !important;
	width: auto !important;
	border: 1px solid #e6e6e6;
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
}

body.single-product .es-product-summary {
	position: static !important;
}

body.single-product .es-product-cats {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #666;
	margin-bottom: 10px;
}

body.single-product .es-product-title {
	font-size: clamp(34px, 4.2vw, 56px);
	line-height: 1.02;
	margin: 0 0 12px;
	max-width: 100%;
	word-break: break-word;
	overflow-wrap: anywhere;
	hyphens: auto;
}

body.single-product .es-product-subtitle {
	margin-bottom: 18px;
	font-size: 17px;
	color: #3f3f3f;
}

body.single-product .es-product-price {
	font-size: 34px;
	margin-bottom: 12px;
}

body.single-product .es-product-cart {
	margin-top: 10px;
	padding: 20px;
	border-radius: 16px;
	background: #fff;
	border: 1px solid #e6e6e6;
}

body.single-product .es-product-cart table.variations {
	margin-bottom: 12px;
}

body.single-product .es-product-cart table.variations tr {
	margin-bottom: 14px;
}

body.single-product .es-product-cart table.variations label {
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #666;
}

/* Swatch plugin support (size/color buttons) */
body.single-product .es-product-cart .variable-items-wrapper {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 8px !important;
	margin: 8px 0 4px !important;
}

body.single-product .es-product-cart .variable-item {
	min-width: 42px !important;
	height: 36px !important;
	padding: 0 12px !important;
	border: 1px solid #d4d4d4 !important;
	border-radius: 999px !important;
	background: #fff !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	color: #222 !important;
	box-shadow: none !important;
}

body.single-product .es-product-cart .variable-item.selected,
body.single-product .es-product-cart .variable-item:hover {
	border-color: #111 !important;
	color: #111 !important;
}

body.single-product .es-product-cart .variable-item.color-variable-item {
	min-width: 30px !important;
	width: 30px !important;
	height: 30px !important;
	padding: 0 !important;
	border-radius: 50% !important;
}

body.single-product .es-product-cart .variable-item.color-variable-item span {
	display: none !important;
}

body.single-product .es-product-cart select {
	min-height: 44px;
}

body.single-product .es-product-cart .single_add_to_cart_button {
	width: 100%;
}

body.single-product .es-product-quote {
	margin-top: 14px;
}

body.single-product .es-product-bottom {
	margin-top: 34px;
}

@media (max-width: 1024px) {
	body.single-product .es-product-title {
		font-size: clamp(1.35rem, 5.6vw, 2rem);
	}

	body.single-product .es-main__inner {
		padding-left: clamp(14px, 4vw, 24px) !important;
		padding-right: clamp(14px, 4vw, 24px) !important;
		box-sizing: border-box !important;
	}

	body.single-product .es-product-summary {
		max-width: 100% !important;
	}
}

/* ============================================================
   FINAL SINGLE PRODUCT OVERRIDE (2 columns — desktop / large tablet only)
   Never use min-width tracks that exceed narrow viewports.
   ============================================================ */
body.single-product.es-clean-shop .es-main__inner,
body.single-product .es-main__inner {
	max-width: 1380px !important;
}

@media (min-width: 1025px) {
	body.single-product.es-clean-shop .es-product-top,
	body.single-product .es-product-top {
		display: grid !important;
		grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr) !important;
		gap: clamp(32px, 4vw, 56px) !important;
		align-items: start !important;
	}
}

body.single-product .es-product-gallery {
	order: 1;
}

body.single-product .es-product-summary {
	order: 2;
	position: static !important;
}

body.single-product .es-product-gallery .woocommerce-product-gallery__image {
	background: #fff;
}

body.single-product .es-product-gallery .woocommerce-product-gallery__image img {
	max-height: 760px;
	object-fit: contain !important;
}

body.single-product .es-product-cart .single_variation,
body.single-product .es-product-cart .woocommerce-variation-price {
	margin-bottom: 14px;
}

body.single-product .es-product-cart .single_add_to_cart_button {
	width: 100%;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

body.single-product .es-product-quote__btn {
	width: 100%;
}

/* ============================================================
   SINGLE PRODUCT - FINAL POLISH PASS
   ============================================================ */
body.single-product .es-product-summary > * + * {
	margin-top: 0;
}

body.single-product .es-product-cats {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	color: #8a8a8a;
	margin-bottom: 8px;
}

body.single-product .es-product-cats a {
	color: inherit;
}

body.single-product .es-product-cats a:hover {
	color: #111;
}

body.single-product .es-product-price {
	display: flex;
	align-items: baseline;
	gap: 10px;
	padding-bottom: 18px;
	border-bottom: 1px solid #ededed;
	margin-bottom: 20px;
}

body.single-product .es-product-price p,
body.single-product .es-product-price .price {
	margin: 0;
	font-size: 32px !important;
	font-weight: 800;
	color: #111 !important;
	line-height: 1.1;
}

body.single-product .es-product-price del,
body.single-product .es-product-price .price del {
	font-size: 20px !important;
	color: #aaa !important;
	font-weight: 500;
	margin-right: 6px;
}

body.single-product .es-product-price ins,
body.single-product .es-product-price .price ins {
	background: transparent;
	text-decoration: none;
	font-weight: 800;
}

body.single-product .es-product-cart {
	padding: 20px;
	border: 1px solid #ececec;
	border-radius: 16px;
	background: #fff;
	margin-bottom: 16px;
}

body.single-product .es-product-cart table.variations label {
	font-size: 11px !important;
	letter-spacing: 0.1em;
	font-weight: 700;
	color: #666;
	margin-bottom: 6px;
	display: block;
}

body.single-product .es-product-cart .single_add_to_cart_button {
	background: #111 !important;
	color: #fff !important;
	border-radius: 14px !important;
	min-height: 52px !important;
	letter-spacing: 0.08em;
	transition: background 0.15s ease;
}

body.single-product .es-product-cart .single_add_to_cart_button:hover {
	background: #000 !important;
}

body.single-product .es-product-quote {
	margin-top: 0;
	padding: 18px 20px;
	background: linear-gradient(135deg, #f9fcff, #eef8ff);
	border: 1px solid #d7ebf7;
	border-radius: 16px;
	text-align: left;
}

body.single-product .es-product-quote__label {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #0b6aa8;
	margin: 0 0 10px;
}

body.single-product .es-product-quote__btn,
body.single-product a.es-product-quote__btn {
	display: flex !important;
	align-items: center;
	justify-content: center;
	width: 100% !important;
	min-height: 50px;
	padding: 0 20px;
	border-radius: 14px !important;
	background: #0ba39c !important;
	color: #fff !important;
	text-decoration: none !important;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	box-shadow: 0 6px 16px rgba(11, 163, 156, 0.25);
	transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

body.single-product .es-product-quote__btn::before,
body.single-product a.es-product-quote__btn::before {
	content: "✉";
	margin-right: 10px;
	font-size: 16px;
}

body.single-product .es-product-quote__btn:hover,
body.single-product a.es-product-quote__btn:hover {
	background: #088680 !important;
	color: #fff !important;
	transform: translateY(-1px);
	box-shadow: 0 8px 18px rgba(11, 163, 156, 0.3);
}

body.single-product .es-product-quote__hint {
	font-size: 13px;
	color: #5f6a73;
	line-height: 1.55;
	margin: 12px 0 0;
}

body.single-product .es-product-meta {
	font-size: 13px;
	color: #666;
	padding-top: 18px;
	margin-top: 18px;
	border-top: 1px solid #ececec;
	line-height: 1.9;
}

body.single-product .es-product-meta .sku_wrapper,
body.single-product .es-product-meta .posted_in,
body.single-product .es-product-meta .tagged_as {
	display: block;
}

body.single-product .es-product-meta .sku,
body.single-product .es-product-meta a {
	color: #111;
	font-weight: 600;
	text-decoration: none;
}

body.single-product .es-product-meta a:hover {
	text-decoration: underline;
}

/* ============================================================
   SHOP (ARCHIVE) - FINAL POLISH PASS
   ============================================================ */
body.woocommerce-page .es-shop-page {
	max-width: none;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body.woocommerce-shop .es-main__inner,
body.post-type-archive-product .es-main__inner,
body.tax-product_cat .es-main__inner,
body.tax-product_tag .es-main__inner {
	max-width: 100% !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

body.woocommerce-page .es-shop-header {
	margin-bottom: 28px;
}

body.woocommerce-page .es-shop-title {
	font-size: clamp(34px, 4.5vw, 56px);
	line-height: 1.05;
	margin: 0;
	color: #111;
}

body.woocommerce-page .es-shop-toolbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 14px 0;
	border-top: 1px solid #ececec;
	border-bottom: 1px solid #ececec;
	margin-bottom: 24px;
	font-size: 14px;
	color: #555;
}

body.woocommerce-page .es-shop-toolbar .woocommerce-ordering select {
	min-height: 44px;
	padding: 0 36px 0 14px;
	border: 1px solid #d8d8d8;
	border-radius: 12px;
	background-color: #fff;
	font-size: 14px;
	appearance: none;
	-webkit-appearance: none;
}

body.woocommerce-page .es-shop-sidebar {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

body.woocommerce-page .es-filter-block {
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 18px;
	padding: 18px 20px;
	box-sizing: border-box;
	min-width: 0;
	max-width: 100%;
}

body.woocommerce-page .es-filter-title {
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #111;
	margin: 0 0 14px;
}

body.woocommerce-page .es-filter-list {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

body.woocommerce-page .es-filter-list li {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

body.woocommerce-page .es-filter-list a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 12px;
	font-size: 14px;
	color: #333;
	text-decoration: none;
	border-radius: 10px;
	transition: background 0.15s ease, color 0.15s ease;
}

body.woocommerce-page .es-filter-list a:hover {
	background: #f4f4f4;
	color: #111;
}

body.woocommerce-page .es-filter-list li.is-active a {
	background: #111;
	color: #fff;
}

body.woocommerce-page .es-filter-list li.is-active .es-filter-count {
	color: #ccc;
}

body.woocommerce-page .es-filter-count {
	font-size: 12px;
	color: #888;
	font-weight: 600;
}

body.woocommerce-page .es-filter-block .price_slider_wrapper {
	padding: 2px 4px 4px;
}

body.woocommerce-page .es-filter-block .price_slider_amount {
	margin-top: 12px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 13px;
	color: #444;
}

body.woocommerce-page .es-filter-block .price_slider_amount .price_label {
	margin-left: 8px;
}

body.woocommerce-page .es-filter-block .price_slider_amount .button,
body.woocommerce-page .es-filter-block button.button {
	background: #111 !important;
	color: #fff !important;
	border: 0 !important;
	padding: 8px 14px !important;
	border-radius: 10px !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

body.woocommerce-page .es-filter-block input[type="text"],
body.woocommerce-page .es-filter-block input[type="search"] {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #d7d7d7;
	border-radius: 10px;
	font-size: 14px;
	background: #fafafa;
}

body.woocommerce-page .es-filter-block input[type="submit"] {
	margin-top: 8px;
	background: #111;
	color: #fff;
	border: 0;
	padding: 10px 14px;
	border-radius: 10px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	cursor: pointer;
}

body.woocommerce-page:not(.single-product) .es-filter-block .price_slider_amount {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 10px !important;
	align-items: center !important;
	justify-content: space-between !important;
}

body.woocommerce-page:not(.single-product) .es-filter-block .price_slider_amount .button {
	margin-top: 4px !important;
	width: 100% !important;
}

body.woocommerce-page:not(.single-product) .es-filter-block .woocommerce-product-search {
	display: flex !important;
	flex-direction: column !important;
	gap: 10px !important;
}

body.woocommerce-page:not(.single-product) .es-filter-block .search-field {
	width: 100% !important;
	min-width: 0 !important;
}

body.woocommerce-page:not(.single-product) .woocommerce ul.products.es-product-grid,
body.woocommerce-page:not(.single-product) .woocommerce-page ul.products.es-product-grid {
	grid-template-columns: repeat(3, minmax(200px, 268px)) !important;
	justify-content: center !important;
	gap: clamp(20px, 2.5vw, 32px) !important;
}

@media (min-width: 1200px) {
	body.woocommerce-page:not(.single-product) .woocommerce ul.products.es-product-grid,
	body.woocommerce-page:not(.single-product) .woocommerce-page ul.products.es-product-grid {
		grid-template-columns: repeat(3, minmax(200px, 268px)) !important;
	}
}

@media (max-width: 1100px) {
	body.woocommerce-page:not(.single-product) .woocommerce ul.products.es-product-grid,
	body.woocommerce-page:not(.single-product) .woocommerce-page ul.products.es-product-grid {
		grid-template-columns: repeat(2, minmax(180px, 280px)) !important;
	}
}

@media (max-width: 600px) {
	body.woocommerce-page:not(.single-product) .woocommerce ul.products.es-product-grid,
	body.woocommerce-page:not(.single-product) .woocommerce-page ul.products.es-product-grid {
		grid-template-columns: minmax(0, 100%) !important;
		max-width: 420px !important;
		margin-left: auto !important;
		margin-right: auto !important;
	}
}

/* ============================================================
   SHOP CARD NUCLEAR OVERRIDE
   ============================================================ */
body.woocommerce-page .es-shop-content,
body.woocommerce-page .es-shop-content * {
	box-sizing: border-box;
}

body.woocommerce-page:not(.single-product) .es-shop-content ul.products.es-product-grid {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(200px, 268px)) !important;
	justify-content: center !important;
	gap: clamp(20px, 2.5vw, 32px) !important;
	align-items: start !important;
	width: 100% !important;
}

body.woocommerce-page .es-shop-content ul.products.es-product-grid > li.product.es-product-card {
	width: 100% !important;
	min-width: 0 !important;
	max-width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	overflow: hidden !important;
	text-align: center !important;
}

body.woocommerce-page .es-shop-content ul.products.es-product-grid > li.product.es-product-card .es-product-card__image {
	aspect-ratio: 1 / 1 !important;
	min-height: 0 !important;
	max-height: 280px !important;
}

body.woocommerce-page .es-shop-content ul.products.es-product-grid > li.product.es-product-card .es-product-card__body {
	padding: 10px 10px 12px !important;
	align-items: center !important;
}

body.woocommerce-page .es-shop-content ul.products.es-product-grid > li.product.es-product-card .es-product-card__cats,
body.woocommerce-page .es-shop-content ul.products.es-product-grid > li.product.es-product-card .es-product-card__cats a {
	font-size: 10px !important;
	line-height: 1.35 !important;
	color: #777 !important;
}

body.woocommerce-page .es-shop-content ul.products.es-product-grid > li.product.es-product-card .es-product-card__title,
body.woocommerce-page .es-shop-content ul.products.es-product-grid > li.product.es-product-card .es-product-card__title a {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 0 6px !important;
	font-size: 13px !important;
	line-height: 1.2 !important;
	font-weight: 700 !important;
	color: #111 !important;
	text-align: center !important;
	word-break: break-word !important;
	overflow-wrap: anywhere !important;
	hyphens: auto !important;
}

body.woocommerce-page .es-shop-content ul.products.es-product-grid > li.product.es-product-card .es-product-card__price,
body.woocommerce-page .es-shop-content ul.products.es-product-grid > li.product.es-product-card .price {
	font-size: 13px !important;
	line-height: 1.2 !important;
	font-weight: 700 !important;
	margin: 0 0 8px !important;
	color: #111 !important;
}

body.woocommerce-page .es-shop-content ul.products.es-product-grid > li.product.es-product-card .es-product-card__actions {
	width: 100% !important;
	display: flex !important;
	justify-content: center !important;
}

body.woocommerce-page .es-shop-content ul.products.es-product-grid > li.product.es-product-card .es-product-card__actions .button,
body.woocommerce-page .es-shop-content ul.products.es-product-grid > li.product.es-product-card .es-product-card__actions .add_to_cart_button,
body.woocommerce-page .es-shop-content ul.products.es-product-grid > li.product.es-product-card .es-product-card__actions .product_type_variable {
	min-height: 34px !important;
	padding: 0 12px !important;
	font-size: 10px !important;
	line-height: 1 !important;
	letter-spacing: 0.05em !important;
	border-radius: 9px !important;
	white-space: normal !important;
	text-align: center !important;
}

/* Beat Astra / theme defaults that style .entry-content h2 very large */
body.woocommerce-page .site-content h2.es-product-card__title,
body.woocommerce-page .entry-content h2.es-product-card__title,
body.woocommerce-page .site-content h2.es-product-card__title a,
body.woocommerce-page .entry-content h2.es-product-card__title a {
	font-size: 13px !important;
	line-height: 1.25 !important;
	font-weight: 700 !important;
	margin: 0 0 6px !important;
}

@media (max-width: 1100px) {
	body.woocommerce-page:not(.single-product) .es-shop-content ul.products.es-product-grid {
		grid-template-columns: repeat(2, minmax(180px, 280px)) !important;
		justify-content: center !important;
	}
}

@media (max-width: 760px) {
	body.woocommerce-page:not(.single-product) .es-shop-content ul.products.es-product-grid {
		grid-template-columns: minmax(0, 1fr) !important;
		max-width: 420px !important;
		margin-left: auto !important;
		margin-right: auto !important;
		justify-content: center !important;
	}
}

/* ============================================================
   SHOP WRAPPER + FULL-WIDTH POLISH (listings)
   ============================================================ */
body.woocommerce-page main.site-main,
body.woocommerce-page .ast-woocommerce-container,
body.woocommerce-page .es-shop-page {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
}

body.woocommerce-page .es-shop-page {
	margin: 0 auto !important;
}

/*
 * Listings — mobile-first: never squeeze grid beside sidebar below 1025px.
 * (Older row !important rules here won media-query fights and broke real phones.)
 */
body.woocommerce-page:not(.single-product) .es-shop-layout {
	display: flex !important;
	flex-direction: column !important;
	align-items: stretch !important;
	flex-wrap: nowrap !important;
	width: 100% !important;
	max-width: 100% !important;
	gap: clamp(18px, 4vw, 28px) !important;
}

body.woocommerce-page:not(.single-product) .es-shop-sidebar {
	flex: 1 1 auto !important;
	width: 100% !important;
	max-width: 100% !important;
	min-width: 0 !important;
	flex-direction: column !important;
	flex-wrap: nowrap !important;
}

body.woocommerce-page:not(.single-product) .es-shop-content {
	flex: 1 1 auto !important;
	width: 100% !important;
	max-width: 100% !important;
	min-width: 0 !important;
}

body.woocommerce-page:not(.single-product) .es-shop-content ul.products.es-product-grid {
	width: 100% !important;
}

/* ============================================================
   Astra container + inner — gutters + max width (comfortable, not wall-to-wall)
   ============================================================ */
body.woocommerce-page:not(.single-product) .ast-container,
body.woocommerce-page:not(.single-product) #content .ast-container {
	max-width: 100% !important;
	width: 100% !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	box-sizing: border-box !important;
}

body.woocommerce-page:not(.single-product) .es-main__inner {
	max-width: min(100%, 1480px) !important;
	width: 100% !important;
	margin-left: auto !important;
	margin-right: auto !important;
	padding: clamp(28px, 3vw, 44px) 0 clamp(48px, 6vw, 80px) !important;
	box-sizing: border-box !important;
}

/* Desktop — sidebar column + product grid */
@media (min-width: 1025px) {
	body.woocommerce-page:not(.single-product) .es-shop-layout {
		flex-direction: row !important;
		align-items: flex-start !important;
		gap: clamp(28px, 3vw, 44px) !important;
		flex-wrap: nowrap !important;
	}

	body.woocommerce-page:not(.single-product) .es-shop-sidebar {
		flex: 0 0 clamp(260px, 22vw, 300px) !important;
		width: clamp(260px, 22vw, 300px) !important;
		max-width: clamp(260px, 22vw, 300px) !important;
		min-width: 240px !important;
	}

	body.woocommerce-page:not(.single-product) .es-shop-content {
		flex: 1 1 auto !important;
		flex-grow: 1 !important;
		min-width: 0 !important;
		max-width: none !important;
		width: auto !important;
	}

	body.woocommerce-page .es-shop-content {
		flex: 1 1 0 !important;
		width: auto !important;
		min-width: 0 !important;
		max-width: none !important;
	}
}

body.woocommerce-page:not(.single-product) .es-shop-filters-state {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	clip-path: inset(50%) !important;
	white-space: nowrap !important;
	border: 0 !important;
	opacity: 0 !important;
}

body.woocommerce-page:not(.single-product) .es-shop-filters-toggle {
	display: none !important;
}

/* Phones / tablets — toolbar full-width; WooCommerce ordering often floats and overlaps */
@media (max-width: 1024px) {
	body.woocommerce-page:not(.single-product) .es-shop-toolbar {
		flex-direction: column !important;
		align-items: stretch !important;
		justify-content: flex-start !important;
		gap: 12px !important;
		position: relative !important;
		z-index: 4 !important;
		width: 100% !important;
	}

	body.woocommerce-page:not(.single-product) .es-shop-toolbar__count,
	body.woocommerce-page:not(.single-product) .es-shop-toolbar__sort {
		float: none !important;
		width: 100% !important;
		max-width: 100% !important;
		margin: 0 !important;
	}

	body.woocommerce-page:not(.single-product) .es-shop-toolbar .woocommerce-result-count,
	body.woocommerce-page:not(.single-product) .es-shop-toolbar .woocommerce-ordering {
		width: 100% !important;
		max-width: 100% !important;
		margin: 0 !important;
		position: relative !important;
		left: auto !important;
		right: auto !important;
		float: none !important;
		clear: both !important;
	}

	body.woocommerce-page:not(.single-product) .es-shop-toolbar .woocommerce-ordering {
		display: block !important;
	}

	body.woocommerce-page:not(.single-product) .es-shop-toolbar__sort,
	body.woocommerce-page:not(.single-product) .es-shop-toolbar .woocommerce-ordering {
		width: 100% !important;
		max-width: 100% !important;
		position: relative !important;
		float: none !important;
		clear: both !important;
	}

	body.woocommerce-page:not(.single-product) .es-shop-toolbar .orderby {
		width: 100% !important;
		max-width: 100% !important;
		box-sizing: border-box !important;
	}

	body.woocommerce-page:not(.single-product) .es-filter-block {
		flex: 1 1 auto !important;
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
		box-sizing: border-box !important;
	}

	/* Full-width product column — minmax(200px)×3 grids collapse into two skinny columns */
	body.woocommerce-page:not(.single-product) .es-shop-content ul.products.es-product-grid,
	body.woocommerce-page:not(.single-product) .woocommerce ul.products.es-product-grid {
		grid-template-columns: minmax(0, 1fr) !important;
		max-width: 100% !important;
		width: 100% !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		justify-content: stretch !important;
	}

	/* Filters live in an off-canvas drawer; main column stays full width */
	body.woocommerce-page:not(.single-product) .es-shop-filters-toggle {
		display: inline-flex !important;
		align-items: center !important;
		justify-content: center !important;
		gap: 10px !important;
		width: 100% !important;
		min-height: 48px !important;
		margin: 0 0 16px !important;
		padding: 0 18px !important;
		border: 1px solid #111 !important;
		border-radius: 12px !important;
		background: #111 !important;
		color: #fff !important;
		font-size: 14px !important;
		font-weight: 700 !important;
		letter-spacing: 0.06em !important;
		text-transform: uppercase !important;
		cursor: pointer !important;
		box-sizing: border-box !important;
		position: relative !important;
		z-index: 6 !important;
		pointer-events: auto !important;
		-webkit-tap-highlight-color: transparent;
		touch-action: manipulation !important;
	}

	body.woocommerce-page:not(.single-product) .es-shop-filters-backdrop {
		display: none !important;
		position: fixed !important;
		inset: 0 !important;
		z-index: 100000 !important;
		margin: 0 !important;
		padding: 0 !important;
		border: 0 !important;
		background: rgba(0, 0, 0, 0.45) !important;
		-webkit-backdrop-filter: blur(2px) !important;
		backdrop-filter: blur(2px) !important;
		cursor: pointer !important;
	}

	/* Checkbox drives drawer — works even when JS fails */
	body.woocommerce-page:not(.single-product) #es-shop-filters-state:checked ~ .es-shop-filters-backdrop {
		display: block !important;
	}

	body.woocommerce-page:not(.single-product) .es-shop-sidebar-header {
		display: flex !important;
		align-items: center !important;
		justify-content: space-between !important;
		gap: 16px !important;
		position: sticky !important;
		top: 0 !important;
		z-index: 2 !important;
		margin: 0 !important;
		padding: 16px 18px !important;
		background: #fff !important;
		border-bottom: 1px solid #ececec !important;
		box-sizing: border-box !important;
		flex-shrink: 0 !important;
	}

	body.woocommerce-page:not(.single-product) .es-shop-sidebar-title {
		margin: 0 !important;
		font-size: 16px !important;
		font-weight: 800 !important;
		letter-spacing: 0.06em !important;
		text-transform: uppercase !important;
		color: #111 !important;
	}

	body.woocommerce-page:not(.single-product) .es-shop-filters-close {
		display: inline-flex !important;
		align-items: center !important;
		justify-content: center !important;
		width: 44px !important;
		height: 44px !important;
		margin: 0 !important;
		padding: 0 !important;
		border: 1px solid #d8d8d8 !important;
		border-radius: 12px !important;
		background: #fff !important;
		font-size: 24px !important;
		line-height: 1 !important;
		color: #111 !important;
		cursor: pointer !important;
		flex-shrink: 0 !important;
	}

	body.woocommerce-page:not(.single-product) .es-shop-sidebar-body {
		display: flex !important;
		flex-direction: column !important;
		align-items: stretch !important;
		gap: 14px !important;
		width: 100% !important;
		max-width: 100% !important;
		flex: 1 1 auto !important;
		min-height: 0 !important;
		min-width: 0 !important;
		padding: 18px 16px 32px !important;
		box-sizing: border-box !important;
	}


	body.woocommerce-page:not(.single-product) .es-shop-layout .es-shop-sidebar .es-filter-block {
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
		margin: 0 !important;
		flex: 0 0 auto !important;
		border: 1px solid #eaeaea !important;
		border-radius: 14px !important;
		padding: 16px 16px 18px !important;
		box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05) !important;
	}

	body.woocommerce-page:not(.single-product) .es-shop-layout .es-shop-sidebar .es-filter-title {
		margin: 0 0 14px !important;
		padding-bottom: 10px !important;
		border-bottom: 1px solid #f0f0f0 !important;
		font-size: 11px !important;
		letter-spacing: 0.12em !important;
		color: #111 !important;
	}

	body.woocommerce-page:not(.single-product) .es-shop-layout .es-shop-sidebar .widget,
	body.woocommerce-page:not(.single-product) .es-shop-layout .es-shop-sidebar .widget.woocommerce {
		width: 100% !important;
		max-width: 100% !important;
		float: none !important;
		clear: both !important;
		margin: 0 !important;
		padding: 0 !important;
	}

	body.woocommerce-page:not(.single-product) .es-shop-layout .es-shop-sidebar .woocommerce {
		width: 100% !important;
		max-width: 100% !important;
		float: none !important;
		margin: 0 !important;
	}

	body.woocommerce-page:not(.single-product) .es-shop-layout .es-shop-sidebar .price_slider_wrapper {
		width: 100% !important;
		max-width: 100% !important;
		padding: 10px 2px 8px !important;
		box-sizing: border-box !important;
	}

	body.woocommerce-page:not(.single-product) .es-shop-layout .es-shop-sidebar .price_slider_wrapper .ui-slider,
	body.woocommerce-page:not(.single-product) .es-shop-layout .es-shop-sidebar .price_slider_wrapper .ui-slider-range {
		box-sizing: border-box !important;
	}

	body.woocommerce-page:not(.single-product) .es-shop-layout .es-shop-sidebar .price_slider_amount {
		display: flex !important;
		flex-direction: column !important;
		align-items: stretch !important;
		gap: 12px !important;
		width: 100% !important;
		max-width: 100% !important;
		margin-top: 6px !important;
	}

	body.woocommerce-page:not(.single-product) .es-shop-layout .es-shop-sidebar .price_slider_amount .price_label {
		margin: 0 !important;
		order: 2 !important;
		font-size: 13px !important;
		color: #555 !important;
		line-height: 1.35 !important;
		text-align: center !important;
		width: 100% !important;
	}

	body.woocommerce-page:not(.single-product) .es-shop-layout .es-shop-sidebar .price_slider_amount .button {
		order: 1 !important;
		width: 100% !important;
		margin: 0 !important;
		min-height: 44px !important;
		display: inline-flex !important;
		align-items: center !important;
		justify-content: center !important;
	}

	body.woocommerce-page:not(.single-product) .es-shop-layout .es-shop-sidebar .woocommerce-product-search {
		width: 100% !important;
		max-width: 100% !important;
	}

	body.woocommerce-page:not(.single-product) .es-shop-layout .es-shop-sidebar .woocommerce-product-search form {
		width: 100% !important;
		max-width: 100% !important;
		display: block !important;
	}

	body.woocommerce-page:not(.single-product) .es-shop-layout .es-shop-sidebar .search-field {
		width: 100% !important;
		max-width: 100% !important;
	}

	body.woocommerce-page:not(.single-product) .es-shop-layout .es-shop-sidebar input[type="submit"],
	body.woocommerce-page:not(.single-product) .es-shop-layout .es-shop-sidebar .woocommerce-product-search button {
		width: 100% !important;
		margin-top: 10px !important;
		min-height: 44px !important;
	}

	body.woocommerce-page:not(.single-product) .es-shop-layout .es-shop-sidebar .es-filter-list {
		gap: 3px !important;
	}

	body.woocommerce-page:not(.single-product) .es-shop-layout .es-shop-sidebar .es-filter-list a {
		padding: 11px 14px !important;
		min-height: 46px !important;
		border-radius: 12px !important;
	}

	body.woocommerce-page:not(.single-product) .es-shop-sidebar {
		position: fixed !important;
		top: 0 !important;
		left: 0 !important;
		bottom: 0 !important;
		width: min(100vw, 420px) !important;
		max-width: 100% !important;
		margin: 0 !important;
		padding: 0 !important;
		z-index: 100001 !important;
		background: #fafafa !important;
		display: flex !important;
		flex-direction: column !important;
		align-items: stretch !important;
		gap: 0 !important;
		flex: none !important;
		overflow-x: hidden !important;
		overflow-y: auto !important;
		-webkit-overflow-scrolling: touch !important;
		transform: translate3d(-100%, 0, 0) !important;
		transition: transform 0.28s ease !important;
		box-shadow: 6px 0 32px rgba(0, 0, 0, 0.12) !important;
		order: 0 !important;
	}

	body.woocommerce-page:not(.single-product) #es-shop-filters-state:checked ~ .es-shop-layout .es-shop-sidebar {
		transform: translate3d(0, 0, 0) !important;
	}

	body.woocommerce-page:not(.single-product) .es-shop-content {
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
		flex: 1 1 auto !important;
	}
}

@media (min-width: 1025px) {
	body.woocommerce-page:not(.single-product) .es-shop-filters-backdrop {
		display: none !important;
	}

	body.woocommerce-page:not(.single-product) .es-shop-sidebar-header {
		display: none !important;
	}

	body.woocommerce-page:not(.single-product) .es-shop-sidebar-body {
		padding: 0 !important;
	}

	body.woocommerce-page:not(.single-product) .es-shop-sidebar {
		position: static !important;
		transform: none !important;
		transition: none !important;
		width: auto !important;
		box-shadow: none !important;
		overflow: visible !important;
		z-index: auto !important;
		background: transparent !important;
	}
}

@media (max-width: 600px) {
	body.woocommerce-page:not(.single-product) .es-shop-content ul.products.es-product-grid,
	body.woocommerce-page:not(.single-product) .woocommerce ul.products.es-product-grid {
		grid-template-columns: minmax(0, 1fr) !important;
		max-width: 100% !important;
		width: 100% !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
}

/*
 * Homepage marketing layout: see es-front-home.css (enqueued on the front page in functions.php).
 */

/* --------------------------------------------------------------------------
 * Espace Clubs — catalogues fournisseurs (shortcode [es_catalogues_clubs])
 * -------------------------------------------------------------------------- */

.es-catalogues-clubs {
	max-width: 1100px;
	margin: 2rem auto 3rem;
	padding: 0 1rem;
	box-sizing: border-box;
}

.es-catalogues-clubs__head {
	margin-bottom: 1.75rem;
	text-align: center;
}

.es-catalogues-clubs__title {
	margin: 0 0 0.5rem;
	font-size: clamp(1.35rem, 2.5vw, 1.85rem);
	line-height: 1.2;
}

.es-catalogues-clubs__intro {
	margin: 0 auto;
	max-width: 42em;
	color: #444;
	font-size: 1rem;
	line-height: 1.55;
}

.es-catalogues-clubs__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 1.25rem;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.es-catalogues-clubs__card {
	margin: 0;
	padding: 1.35rem 1.25rem;
	border: 1px solid #e2e2e2;
	border-radius: 10px;
	background: #fafafa;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	min-height: 100%;
}

.es-catalogues-clubs__card-title {
	margin: 0 0 0.65rem;
	font-size: 1.1rem;
	line-height: 1.25;
}

.es-catalogues-clubs__card-text {
	margin: 0 0 1rem;
	flex: 1;
	font-size: 0.95rem;
	line-height: 1.5;
	color: #333;
}

.es-catalogues-clubs__muted {
	color: #555;
	font-style: italic;
}

.es-catalogues-clubs__promo {
	margin: -0.35rem 0 1rem;
	padding: 0.65rem 0.75rem;
	border-left: 4px solid #ffcf02;
	background: #fffbeb;
	font-size: 0.88rem;
	line-height: 1.45;
	color: #423203;
}

/* Sol's qty promo — single product (functions.php) */
.single-product .es-sols-promo-banner {
	margin: 0 0 1rem;
	padding: 0.65rem 1rem;
	border-radius: 6px;
	background: #fffbeb;
	border: 1px solid #fde68a;
	color: #423203;
	font-size: 0.92rem;
	line-height: 1.45;
	box-sizing: border-box;
}

.es-catalogues-clubs__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	align-items: center;
}

.es-catalogues-clubs__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.65rem 1.1rem;
	border-radius: 6px;
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
	line-height: 1.2;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
	box-sizing: border-box;
}

.es-catalogues-clubs__btn--primary {
	background: #111;
	color: #fff;
	border: 2px solid #111;
}

.es-catalogues-clubs__btn--primary:hover,
.es-catalogues-clubs__btn--primary:focus {
	background: #333;
	border-color: #333;
	color: #fff;
}

.es-catalogues-clubs__btn--ghost {
	background: transparent;
	color: #111;
	border: 2px solid #111;
}

.es-catalogues-clubs__btn--ghost:hover,
.es-catalogues-clubs__btn--ghost:focus {
	background: #111;
	color: #fff;
}

.es-catalogues-clubs__footnote {
	margin: 1.75rem 0 0;
	text-align: center;
	font-size: 0.88rem;
	color: #666;
	line-height: 1.45;
}

/* WooCommerce « Mon compte » — see assets/css/es-my-account.css */

/* --------------------------------------------------------------------------
 * Club forms — see also functions.php inline CSS (body.es-club-form-page).
 * -------------------------------------------------------------------------- */
body.es-club-form-page .esc-registration-wrap,
body.es-club-form-page .esc-quote-wrap {
	width: 100%;
	max-width: 48rem;
	margin-left: auto;
	margin-right: auto;
	padding-left: clamp(12px, 4vw, 24px);
	padding-right: clamp(12px, 4vw, 24px);
	box-sizing: border-box;
}

body.es-club-form-page .esc-form {
	width: 100%;
	max-width: 48rem;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

/* --------------------------------------------------------------------------
 * Lumise — page éditeur plein écran (classe body du plugin)
 * Léger confort mobile : pas de débordement horizontal.
 * -------------------------------------------------------------------------- */
body.LumiseDesign {
	overflow-x: hidden;
}