:root {
	--wet-accent: #e73568;
	--wet-accent-dark: #c81f50;
	--wet-text: #191919;
	--wet-muted: #747474;
	--wet-line: #ece1e4;
	--wet-soft: #fff5f7;
	--wet-radius: 8px;
}

.wet-filter-sidebar {
	background: #fff;
	border: 1px solid var(--wet-line);
	border-radius: var(--wet-radius);
	box-shadow: 0 10px 28px rgba(30, 22, 26, 0.06);
	color: var(--wet-text);
	overflow: hidden;
}

.wet-filter-shell {
	position: relative;
}

.wet-filter-overlay,
.wet-filter-mobile-head,
.wet-filter-shell--drawer .wet-mobile-filter-toggle {
	display: none;
}

.wet-filter-panel {
	background: #fff;
}

.wet-filter-section {
	border-bottom: 1px solid var(--wet-line);
	padding: 20px;
}

.wet-filter-section:last-child {
	border-bottom: 0;
}

.wet-filter-title {
	align-items: center;
	display: flex;
	font-size: 13px;
	font-weight: 700;
	justify-content: space-between;
	letter-spacing: 0;
	margin: 0 0 14px;
	text-transform: uppercase;
}

.wet-filter-title::after {
	background: var(--wet-accent);
	content: "";
	display: block;
	height: 2px;
	width: 14px;
}

.wet-check-list {
	display: grid;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.wet-check {
	align-items: center;
	cursor: pointer;
	display: grid;
	gap: 9px;
	grid-template-columns: 16px 1fr auto;
	min-height: 22px;
}

.wet-check input {
	height: 1px;
	opacity: 0;
	position: absolute;
	width: 1px;
}

.wet-check-mark {
	background: #fff;
	border: 1px solid #d9c9ce;
	border-radius: 4px;
	height: 16px;
	position: relative;
	width: 16px;
}

.wet-check input[type="checkbox"]:checked + .wet-check-mark {
	background: var(--wet-accent);
	border-color: var(--wet-accent);
}

.wet-check input[type="checkbox"]:checked + .wet-check-mark::after {
	border: solid #fff;
	border-width: 0 2px 2px 0;
	content: "";
	height: 8px;
	left: 5px;
	position: absolute;
	top: 2px;
	transform: rotate(45deg);
	width: 4px;
}

.wet-check input[type="radio"]:checked + .wet-check-mark,
.filter-category:checked + .wet-check-mark {
	background: var(--wet-accent);
	border-color: var(--wet-accent);
}

.wet-check-label {
	font-size: 14px;
}

.wet-check-count {
	color: var(--wet-muted);
	font-size: 13px;
}

.wet-price-fields {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wet-price-fields label {
	color: var(--wet-muted);
	display: grid;
	font-size: 12px;
	gap: 6px;
}

.wet-price-fields input,
.wet-sort {
	background: #fff;
	border: 1px solid var(--wet-line);
	border-radius: 6px;
	color: var(--wet-text);
	font-size: 14px;
	min-height: 42px;
	padding: 9px 12px;
	width: 100%;
}

.wet-reset-button {
	align-items: center;
	background: #fff;
	border: 1px solid var(--wet-line);
	border-radius: 6px;
	color: var(--wet-text);
	display: inline-flex;
	font-size: 13px;
	font-weight: 700;
	justify-content: center;
	margin-top: 10px;
	min-height: 42px;
	padding: 10px 16px;
	text-decoration: none;
	text-transform: uppercase;
	width: 100%;
}

body.wet-filter-is-open {
	overflow: hidden;
}

.wet-no-transition .wet-filter-panel,
.wet-no-transition .wet-filter-overlay {
	transition: none !important;
}

.wet-filter-shell--drawer.is-drawer-active .wet-mobile-filter-toggle {
	align-items: center;
	background: var(--wet-accent);
	border: 1px solid var(--wet-accent);
	border-radius: 6px;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	font-size: 14px;
	font-weight: 700;
	gap: 9px;
	justify-content: center;
	margin-bottom: 16px;
	min-height: 44px;
	padding: 10px 16px;
	text-transform: uppercase;
	width: 100%;
}

.wet-mobile-filter-icon {
	display: inline-grid;
	gap: 3px;
	width: 16px;
}

.wet-mobile-filter-icon::before,
.wet-mobile-filter-icon::after,
.wet-mobile-filter-icon {
	background-image: linear-gradient(#fff, #fff);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 16px 2px;
	content: "";
	height: 14px;
}

.wet-mobile-filter-icon::before,
.wet-mobile-filter-icon::after {
	display: block;
	height: 2px;
	width: 16px;
}

.wet-filter-shell--drawer.is-drawer-active .wet-filter-overlay {
	background: rgba(17, 17, 17, 0.45);
	display: block;
	inset: 0;
	opacity: 0;
	pointer-events: none;
	position: fixed;
	transition: opacity 0.2s ease;
	z-index: 99998;
}

.wet-filter-shell--drawer.is-drawer-active .wet-filter-panel {
	background: #fff;
	bottom: 0;
	box-shadow: 16px 0 34px rgba(0, 0, 0, 0.16);
	left: 0;
	max-width: 88vw;
	overflow-y: auto;
	position: fixed;
	top: 0;
	transform: translateX(-105%);
	transition: transform 0.25s ease;
	width: 340px;
	z-index: 99999;
}

.wet-filter-shell--drawer.is-drawer-active.is-open .wet-filter-overlay {
	opacity: 1;
	pointer-events: auto;
}

.wet-filter-shell--drawer.is-drawer-active.is-open .wet-filter-panel {
	transform: translateX(0);
}

.wet-filter-shell--drawer.is-drawer-active .wet-filter-mobile-head {
	align-items: center;
	border-bottom: 1px solid var(--wet-line);
	display: flex;
	font-size: 16px;
	justify-content: space-between;
	padding: 16px 18px;
}

.wet-filter-close {
	align-items: center;
	background: #fff;
	border: 1px solid var(--wet-line);
	border-radius: 6px;
	color: var(--wet-text);
	cursor: pointer;
	display: inline-flex;
	font-size: 24px;
	height: 36px;
	justify-content: center;
	line-height: 1;
	width: 36px;
}

.wet-filter-shell--drawer.is-drawer-active .wet-filter-sidebar {
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.wet-filter-shell--drawer[data-wet-offcanvas="all"] .wet-mobile-filter-toggle {
	align-items: center;
	background: var(--wet-accent);
	border: 1px solid var(--wet-accent);
	border-radius: 6px;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	font-size: 14px;
	font-weight: 700;
	gap: 9px;
	justify-content: center;
	margin-bottom: 16px;
	min-height: 44px;
	padding: 10px 16px;
	text-transform: uppercase;
	width: 100%;
}

.wet-filter-shell--drawer[data-wet-offcanvas="all"] .wet-filter-overlay {
	background: rgba(17, 17, 17, 0.45);
	display: block;
	inset: 0;
	opacity: 0;
	pointer-events: none;
	position: fixed;
	transition: opacity 0.2s ease;
	z-index: 99998;
}

.wet-filter-shell--drawer[data-wet-offcanvas="all"] .wet-filter-panel {
	background: #fff;
	bottom: 0;
	box-shadow: 16px 0 34px rgba(0, 0, 0, 0.16);
	left: 0;
	max-width: 88vw;
	overflow-y: auto;
	position: fixed;
	top: 0;
	transform: translateX(-105%);
	transition: transform 0.25s ease;
	width: 340px;
	z-index: 99999;
}

.wet-filter-shell--drawer[data-wet-offcanvas="all"].is-open .wet-filter-overlay {
	opacity: 1;
	pointer-events: auto;
}

.wet-filter-shell--drawer[data-wet-offcanvas="all"].is-open .wet-filter-panel {
	transform: translateX(0);
}

.wet-filter-shell--drawer[data-wet-offcanvas="all"] .wet-filter-mobile-head {
	align-items: center;
	border-bottom: 1px solid var(--wet-line);
	display: flex;
	font-size: 16px;
	justify-content: space-between;
	padding: 16px 18px;
}

.wet-filter-shell--drawer[data-wet-offcanvas="all"] .wet-filter-sidebar {
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.wet-reset-button:hover {
	border-color: var(--wet-accent);
	color: var(--wet-accent);
}

.wet-price-fields input:focus,
.wet-sort:focus {
	border-color: var(--wet-accent);
	box-shadow: 0 0 0 3px rgba(231, 53, 104, 0.14);
	outline: none;
}

.wet-products-wrap {
	position: relative;
}

.wet-toolbar {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-bottom: 22px;
}

.wet-result-count {
	color: var(--wet-text);
	font-size: 14px;
	margin: 0;
}

.wet-products-container ul.products {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(var(--wet-columns, 4), minmax(0, 1fr));
	margin: 0;
}

.wet-products-container ul.products::before,
.wet-products-container ul.products::after {
	display: none;
}

.wet-products-container ul.products li.product {
	background: #fff;
	border: 1px solid var(--wet-line);
	border-radius: var(--wet-radius);
	box-shadow: 0 8px 22px rgba(30, 22, 26, 0.05);
	float: none;
	margin: 0;
	overflow: hidden;
	padding: 0 0 18px;
	text-align: center;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	width: auto;
}

.wet-products-container ul.products li.product:hover {
	box-shadow: 0 14px 30px rgba(30, 22, 26, 0.1);
	transform: translateY(-2px);
}

.wet-products-container ul.products li.product a img {
	aspect-ratio: 1 / 1;
	margin: 0 0 14px;
	object-fit: cover;
	width: 100%;
}

.wet-products-container .woocommerce-loop-product__title {
	color: var(--wet-text);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.35;
	padding: 0 14px;
}

.wet-products-container .price {
	color: var(--wet-text);
	display: block;
	font-size: 14px;
	font-weight: 700;
	margin: 8px 0 14px;
}

.wet-products-container .button {
	background: #fff;
	border: 1px solid var(--wet-accent);
	border-radius: 6px;
	color: var(--wet-accent);
	font-size: 12px;
	font-weight: 700;
	padding: 10px 18px;
	text-transform: uppercase;
}

.wet-products-container .button:hover {
	background: var(--wet-accent);
	color: #fff;
}

.wet-products-wrap.is-loading #products-container {
	opacity: 0.45;
	pointer-events: none;
}

.wet-products-wrap.is-loading::after {
	animation: wet-spin 0.8s linear infinite;
	border: 3px solid rgba(231, 53, 104, 0.18);
	border-radius: 50%;
	border-top-color: var(--wet-accent);
	content: "";
	height: 38px;
	left: 50%;
	position: absolute;
	top: 120px;
	width: 38px;
	z-index: 4;
}

.wet-pagination {
	display: flex;
	gap: 8px;
	justify-content: center;
	margin-top: 28px;
}

.wet-page {
	align-items: center;
	background: #fff;
	border: 1px solid var(--wet-line);
	border-radius: 6px;
	color: var(--wet-text);
	cursor: pointer;
	display: inline-flex;
	justify-content: center;
	min-height: 38px;
	min-width: 38px;
	padding: 8px 11px;
	text-decoration: none;
}

.wet-page:hover,
.wet-page.is-active {
	background: var(--wet-accent);
	border-color: var(--wet-accent);
	color: #fff;
}

.wet-load-more {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	margin-top: 28px;
}

.wet-load-more__status {
	color: var(--wet-text-muted, #6b6b6b);
	font-size: 0.9em;
	margin: 0;
}

.wet-load-more__button {
	background: var(--wet-advanced-accent, var(--wet-accent));
	border: 1px solid transparent;
	border-radius: 8px;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 44px;
	padding: 14px 32px;
	transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.wet-load-more__button:hover {
	opacity: 0.92;
}

.wet-load-more__button.is-loading,
.wet-load-more__button[disabled] {
	cursor: default;
	opacity: 0.6;
}

.wet-load-more__sentinel {
	display: block;
	height: 1px;
	width: 100%;
}

/* Inline Add to Cart quantity stepper. */
.wet-qty-stepper-wrap {
	display: flex;
	flex: 1 1 auto;
	min-width: 0;
	position: relative;
}

.wet-product-card__actions--stack > .wet-qty-stepper-wrap {
	flex: 0 0 auto;
	width: 100%;
}

.wet-qty-stepper-wrap__button {
	display: flex;
	width: 100%;
}

.wet-qty-stepper-wrap__button > .wet-product-card__button--cart {
	flex: 1 1 auto;
	width: 100%;
}

/* Stepper is hidden until the product is in the cart. */
.wet-qty-stepper {
	align-items: stretch;
	background: var(--wet-qty-stepper-bg, var(--wet-advanced-accent));
	border: 1px solid var(--wet-qty-stepper-bg, var(--wet-advanced-accent));
	border-radius: 5px;
	box-sizing: border-box;
	color: var(--wet-qty-stepper-color, #fff);
	display: none;
	justify-content: space-between;
	min-height: 100%;
	overflow: hidden;
	width: 100%;
}

.wet-qty-stepper-wrap.is-in-cart .wet-qty-stepper-wrap__button {
	display: none;
}

.wet-qty-stepper-wrap.is-in-cart .wet-qty-stepper {
	display: flex;
}

.wet-qty-stepper__btn {
	-webkit-appearance: none;
	appearance: none;
	background: transparent;
	border: 0;
	color: inherit;
	cursor: pointer;
	flex: 0 0 auto;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	min-width: 36px;
	padding: 10px 8px;
	transition: background-color 0.15s ease;
}

.wet-qty-stepper__btn:hover {
	background: rgba( 0, 0, 0, 0.18 );
}

.wet-qty-stepper__value {
	align-items: center;
	color: inherit;
	display: flex;
	flex: 1 1 auto;
	font-size: 14px;
	font-weight: 700;
	justify-content: center;
	min-width: 28px;
	padding: 0 4px;
	text-align: center;
}

.wet-qty-stepper-wrap.is-busy {
	opacity: 0.7;
	pointer-events: none;
}

.wet-no-products {
	background: var(--wet-soft);
	border: 1px solid var(--wet-line);
	border-radius: var(--wet-radius);
	margin: 0;
	padding: 24px;
	text-align: center;
}

.wet-advanced-products {
	--wet-advanced-accent: var(--wet-accent);
	position: relative;
}

.wet-advanced-products__toolbar {
	align-items: center;
	display: flex;
	gap: 16px;
	justify-content: space-between;
	margin-bottom: 24px;
}

.wet-advanced-products__count {
	color: var(--wet-text);
	font-size: 14px;
	margin: 0;
}

.wet-advanced-products__tools {
	align-items: center;
	display: flex;
	gap: 12px;
	justify-content: flex-end;
}

.wet-advanced-products__sort select {
	appearance: none;
	background: #fff;
	border: 1px solid var(--wet-line);
	border-radius: 6px;
	color: var(--wet-text);
	font-size: 14px;
	min-height: 42px;
	min-width: 190px;
	padding: 9px 34px 9px 12px;
}

.wet-advanced-products__items {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(var(--wet-advanced-columns, 4), minmax(0, 1fr));
}

.wet-product-card {
	background: #fff;
	border: 1px solid var(--wet-line);
	border-radius: var(--wet-radius);
	box-shadow: 0 8px 22px rgba(30, 22, 26, 0.05);
	display: flex;
	flex-direction: column;
	margin: 0;
	overflow: hidden;
	position: relative;
	text-align: center;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.wet-product-card:hover {
	box-shadow: 0 14px 30px rgba(30, 22, 26, 0.1);
	transform: translateY(-2px);
}

.wet-product-card__image {
	background: #f8f3f4;
	position: relative;
}

.wet-product-card__image a {
	display: block;
	overflow: hidden;
	position: relative;
}

.wet-product-card__image img {
	aspect-ratio: 1 / 1;
	display: block;
	height: auto;
	margin: 0;
	object-fit: cover;
	transition: opacity 0.25s ease, transform 0.35s ease;
	width: 100%;
}

.wet-product-card__image-secondary {
	inset: 0;
	opacity: 0;
	position: absolute;
}

.wet-product-card--hover-zoom:hover .wet-product-card__image-primary {
	transform: scale(1.06);
}

.wet-product-card--hover-fade:hover .wet-product-card__image-primary {
	opacity: 0.72;
}

.wet-product-card--hover-slide .wet-product-card__image-primary {
	transform: translateX(0);
}

.wet-product-card--hover-slide:hover .wet-product-card__image-primary {
	transform: translateX(8px) scale(1.03);
}

.wet-product-card--hover-second_image:hover .wet-product-card__image-primary {
	opacity: 0;
}

.wet-product-card--hover-second_image:hover .wet-product-card__image-secondary {
	opacity: 1;
}

.wet-product-card__badges {
	display: grid;
	gap: 6px;
	left: 12px;
	position: absolute;
	top: 12px;
	z-index: 2;
}

.wet-product-card__badge {
	background: var(--wet-advanced-accent);
	border-radius: 4px;
	color: #fff;
	display: inline-flex;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1;
	padding: 7px 9px;
	text-transform: uppercase;
}

.wet-product-card__badge--featured {
	background: #191919;
}

.wet-product-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 16px 18px 18px;
}

.wet-product-card__title {
	font-size: 15px;
	font-weight: 700;
	line-height: 1.35;
	margin: 0 0 8px;
}

.wet-product-card__title a {
	color: var(--wet-text);
	text-decoration: none;
}

.wet-product-card__rating {
	display: flex;
	justify-content: center;
	margin-bottom: 8px;
	min-height: 18px;
}

.wet-product-card__rating .star-rating {
	float: none;
	margin: 0;
}

.wet-product-card__excerpt {
	color: var(--wet-muted);
	display: none;
	font-size: 14px;
	line-height: 1.6;
	margin: 0 0 10px;
}

.wet-product-card__price {
	color: var(--wet-text);
	display: block;
	font-size: 14px;
	font-weight: 700;
	margin: 0 0 14px;
}

.wet-product-card__price del {
	color: var(--wet-muted);
	font-weight: 500;
	opacity: 0.75;
}

.wet-product-card__actions {
	--wet-product-button-gap: 10px;
	align-items: stretch;
	display: flex;
	gap: var(--wet-product-button-gap);
	justify-content: center;
	margin-top: auto;
	width: 100%;
}

.wet-product-card__actions--stack {
	flex-direction: column;
}

.wet-product-card__actions--inline {
	flex-direction: row;
}

.wet-product-card__button {
	align-items: center;
	background: #fff;
	border: 1px solid var(--wet-advanced-accent);
	box-sizing: border-box;
	color: var(--wet-advanced-accent);
	display: inline-flex !important;
	font-size: 12px;
	font-weight: 700;
	gap: 9px;
	justify-content: center;
	line-height: 1;
	margin: 0 !important;
	min-height: 0;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
	width: 100%;
}

.wet-product-card__actions--inline > .wet-product-card__button + .wet-product-card__button {
	margin-left: 0 !important;
	margin-inline-start: 0 !important;
}

.wet-product-card__actions--stack > .wet-product-card__button + .wet-product-card__button {
	margin-top: 0 !important;
}

.wet-product-card__button--cart {
	border-radius: 5px;
	padding: 10px 13px;
}

.wet-product-card__button--cart:hover {
	background: var(--wet-advanced-accent);
	color: #fff;
}

.wet-product-card__button--buy {
	background: var(--wet-advanced-accent);
	border-radius: 5px;
	color: #fff;
	padding: 10px 13px;
}

.wet-product-card__button--buy:hover {
	background: var(--wet-accent-dark);
	color: #fff;
}

.wet-product-card__button--icon-only {
	align-self: stretch;
	flex: 0 0 auto;
	min-width: 0;
	width: auto;
}

.wet-product-card__button--mobile-icon-only {
	white-space: nowrap;
}

.wet-product-card__button-icon,
.wet-product-card__button svg {
	align-items: center;
	display: inline-flex;
	flex: 0 0 auto;
	height: 1em;
	justify-content: center;
	line-height: 1;
	width: 1em;
}

.wet-product-card__button svg {
	display: block;
}

.wet-product-card__button svg,
.wet-product-card__button svg path {
	fill: currentColor;
}

.wet-product-card__button-text {
	display: inline-block;
}

.wet-product-actions {
	align-items: stretch;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	gap: 10px;
	width: 100%;
}

.wet-product-actions--empty {
	background: #fff5f7;
	border: 1px dashed var(--wet-line);
	border-radius: 6px;
	color: var(--wet-muted);
	font-size: 13px;
	padding: 14px;
}

.wet-product-action-button {
	align-items: center;
	border: 1px solid var(--wet-advanced-accent, var(--wet-accent));
	box-sizing: border-box;
	cursor: pointer;
	display: inline-flex !important;
	flex: 1 1 auto;
	font-size: 12px;
	font-weight: 700;
	gap: 10px;
	justify-content: center;
	line-height: 1;
	min-height: 0;
	padding: 12px 18px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
	width: 100%;
}

.wet-product-action-button:hover,
.wet-product-action-button:focus {
	text-decoration: none;
}

.wet-product-action-button--cart {
	background: var(--wet-advanced-accent, var(--wet-accent));
	border-color: var(--wet-advanced-accent, var(--wet-accent));
	border-radius: 4px;
	color: #fff;
}

.wet-product-action-button--cart:hover {
	background: var(--wet-accent-dark);
	border-color: var(--wet-accent-dark);
	color: #fff;
}

.wet-product-action-button--buy {
	background: #fff;
	border-color: var(--wet-advanced-accent, var(--wet-accent));
	border-radius: 4px;
	color: var(--wet-advanced-accent, var(--wet-accent));
}

.wet-product-action-button--buy:hover {
	background: var(--wet-advanced-accent, var(--wet-accent));
	color: #fff;
}

.wet-product-action-button__content,
.wet-product-action-button__icon {
	align-items: center;
	display: inline-flex;
	justify-content: center;
	line-height: 1;
}

.wet-product-action-button__content {
	gap: 8px;
	min-width: 0;
}

.wet-product-action-button__text,
.wet-product-action-button__separator,
.wet-product-action-button__price {
	display: inline-block;
	line-height: 1;
}

.wet-product-action-button__icon,
.wet-product-action-button svg {
	flex: 0 0 auto;
	font-size: 14px;
	height: 14px;
	width: 14px;
}

.wet-product-action-button svg {
	display: block;
}

.wet-product-action-button svg,
.wet-product-action-button svg path {
	fill: currentColor;
}

.wet-product-actions--row {
	flex-direction: row;
}

.wet-product-actions--row .wet-product-action-button {
	width: auto !important;
}

.wet-product-actions--row .wet-product-atc--in-actions {
	flex: 1 1 220px;
	width: auto;
}

.wet-product-actions--column {
	flex-direction: column;
}

.wet-product-actions--column .wet-product-action-button {
	width: 100%;
}

.wet-product-actions--column .wet-product-atc--in-actions {
	width: 100%;
}

.wet-product-atc {
	width: 100%;
}

.wet-product-atc--in-actions {
	flex: 1 1 100%;
	min-width: 0;
}

.wet-product-atc--in-actions form.cart:not(.variations_form),
.wet-product-atc--in-actions .woocommerce-variation-add-to-cart {
	flex-direction: column !important;
	width: 100%;
}

.wet-product-atc--in-actions .wet-quantity-stepper {
	width: 100% !important;
}

.wet-product-atc--in-actions .single_add_to_cart_button {
	flex: 0 0 auto !important;
	height: auto !important;
}

.wet-product-atc form.cart:not(.variations_form),
.wet-product-atc .woocommerce-variation-add-to-cart {
	align-items: stretch;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0;
}

.wet-product-atc table.variations {
	border: 0;
	margin: 0 0 14px;
	width: 100%;
}

.wet-product-atc table.variations th,
.wet-product-atc table.variations td {
	background: transparent;
	border: 0;
	display: block;
	padding: 0 0 8px;
	text-align: start;
}

.wet-product-atc table.variations select,
.wet-product-atc .wc-pao-addon input,
.wet-product-atc .wc-pao-addon select,
.wet-product-atc .wc-pao-addon textarea,
.wet-product-atc .product-addon input,
.wet-product-atc .product-addon select,
.wet-product-atc .product-addon textarea,
.wet-product-atc .yith-wapo-option input,
.wet-product-atc .yith-wapo-option select,
.wet-product-atc .yith-wapo-option textarea,
.wet-product-atc .wapf-field-input input,
.wet-product-atc .wapf-field-input select,
.wet-product-atc .wapf-field-input textarea,
.wet-product-atc .ppom-field-wrapper input,
.wet-product-atc .ppom-field-wrapper select,
.wet-product-atc .ppom-field-wrapper textarea,
.wet-product-atc .tm-extra-product-options input,
.wet-product-atc .tm-extra-product-options select,
.wet-product-atc .tm-extra-product-options textarea {
	box-sizing: border-box;
	width: 100%;
}

.wet-product-atc .wet-quantity-stepper {
	align-items: center;
	background: #fff;
	border: 1px solid var(--wet-line);
	border-radius: 4px;
	box-sizing: border-box;
	display: inline-flex;
	flex: 0 0 auto;
	gap: 0;
	min-height: 44px;
	overflow: hidden;
	width: 118px;
}

.wet-product-atc .wet-quantity-stepper + .wet-quantity-stepper {
	display: none;
}

.wet-product-atc .wet-quantity-stepper .quantity {
	flex: 1 1 auto;
	margin: 0 !important;
}

.wet-product-atc .wet-quantity-stepper input.qty {
	appearance: textfield;
	background: transparent;
	border: 0;
	box-shadow: none;
	box-sizing: border-box;
	height: 44px;
	margin: 0;
	padding: 0 4px;
	text-align: center;
	width: 100%;
}

.wet-product-atc .wet-quantity-stepper input.qty::-webkit-inner-spin-button,
.wet-product-atc .wet-quantity-stepper input.qty::-webkit-outer-spin-button {
	appearance: none;
	margin: 0;
}

.wet-product-atc .wet-quantity-stepper__button {
	align-items: center;
	appearance: none;
	background: #fff !important;
	border: 0 !important;
	box-shadow: none;
	color: var(--wet-text) !important;
	cursor: pointer;
	display: inline-flex !important;
	flex: 0 0 34px;
	font-size: 18px;
	font-weight: 700;
	height: 44px;
	justify-content: center;
	line-height: 1;
	opacity: 1 !important;
	padding: 0;
	position: static !important;
	text-indent: 0 !important;
	visibility: visible !important;
	width: 34px;
}

.wet-product-atc .wet-quantity-stepper__button:hover,
.wet-product-atc .wet-quantity-stepper__button:focus {
	background: var(--wet-soft) !important;
	color: var(--wet-accent) !important;
}

.wet-product-atc .single_add_to_cart_button {
	align-items: center;
	align-self: stretch;
	box-sizing: border-box;
	cursor: pointer;
	display: inline-flex;
	flex: 0 0 auto;
	justify-content: center;
	line-height: inherit;
	text-align: center;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
	width: auto;
}

.wet-product-atc--empty {
	background: #fff5f7;
	border: 1px dashed var(--wet-line);
	border-radius: 6px;
	color: var(--wet-muted);
	font-size: 13px;
	padding: 14px;
}

.wet-product-atc--hide-variations .variations,
.wet-product-atc--hide-variations .single_variation {
	display: none !important;
}

.wet-product-atc--hide-addons .wc-pao-addons-container,
.wet-product-atc--hide-addons .wc-pao-addon,
.wet-product-atc--hide-addons .product-addon,
.wet-product-atc--hide-addons .yith-wapo-container,
.wet-product-atc--hide-addons .yith-wapo-block,
.wet-product-atc--hide-addons .wapf-wrapper,
.wet-product-atc--hide-addons .ppom-wrapper,
.wet-product-atc--hide-addons .ppom-field-wrapper,
.wet-product-atc--hide-addons .tm-extra-product-options,
.wet-product-atc--hide-addons .tc-extra-product-options {
	display: none !important;
}

.wet-product-atc--hide-quantity .wet-quantity-stepper,
.wet-product-atc--hide-quantity .quantity {
	display: none !important;
}

.wet-product-atc--hide-stepper .wet-quantity-stepper__button {
	display: none !important;
}

.wet-product-atc--hide-stepper .wet-quantity-stepper {
	width: auto;
}

.wet-product-atc--hide-button .single_add_to_cart_button {
	display: none !important;
}

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

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

	.wet-product-actions--tablet-row {
		flex-direction: row;
	}

	.wet-product-actions--tablet-row .wet-product-action-button {
		width: auto !important;
	}

	.wet-product-actions--tablet-row .wet-product-atc--in-actions {
		flex: 1 1 220px;
		width: auto;
	}

	.wet-product-actions--tablet-column {
		flex-direction: column;
	}

	.wet-product-actions--tablet-column .wet-product-action-button {
		width: 100%;
	}

	.wet-product-actions--tablet-column .wet-product-atc--in-actions {
		width: 100%;
	}

	.wet-filter-shell--drawer[data-wet-offcanvas="tablet"] .wet-mobile-filter-toggle {
		align-items: center;
		background: var(--wet-accent);
		border: 1px solid var(--wet-accent);
		border-radius: 6px;
		color: #fff;
		cursor: pointer;
		display: inline-flex;
		font-size: 14px;
		font-weight: 700;
		gap: 9px;
		justify-content: center;
		margin-bottom: 16px;
		min-height: 44px;
		padding: 10px 16px;
		text-transform: uppercase;
		width: 100%;
	}

	.wet-filter-shell--drawer[data-wet-offcanvas="tablet"] .wet-filter-overlay {
		background: rgba(17, 17, 17, 0.45);
		display: block;
		inset: 0;
		opacity: 0;
		pointer-events: none;
		position: fixed;
		transition: opacity 0.2s ease;
		z-index: 99998;
	}

	.wet-filter-shell--drawer[data-wet-offcanvas="tablet"] .wet-filter-panel {
		background: #fff;
		bottom: 0;
		box-shadow: 16px 0 34px rgba(0, 0, 0, 0.16);
		left: 0;
		max-width: 88vw;
		overflow-y: auto;
		position: fixed;
		top: 0;
		transform: translateX(-105%);
		transition: transform 0.25s ease;
		width: 340px;
		z-index: 99999;
	}

	.wet-filter-shell--drawer[data-wet-offcanvas="tablet"].is-open .wet-filter-overlay {
		opacity: 1;
		pointer-events: auto;
	}

	.wet-filter-shell--drawer[data-wet-offcanvas="tablet"].is-open .wet-filter-panel {
		transform: translateX(0);
	}

	.wet-filter-shell--drawer[data-wet-offcanvas="tablet"] .wet-filter-mobile-head {
		align-items: center;
		border-bottom: 1px solid var(--wet-line);
		display: flex;
		font-size: 16px;
		justify-content: space-between;
		padding: 16px 18px;
	}

	.wet-filter-shell--drawer[data-wet-offcanvas="tablet"] .wet-filter-sidebar {
		border: 0;
		border-radius: 0;
		box-shadow: none;
	}

	.wet-advanced-products__items {
		grid-template-columns: repeat(var(--wet-advanced-columns-tablet, 3), minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.wet-product-card__button--mobile-icon-only {
		align-self: stretch;
		flex: 0 0 auto;
		min-width: 0;
		width: auto;
	}

	.wet-product-card__button--mobile-icon-only .wet-product-card__button-text {
		display: none;
	}

	.wet-products-container ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.wet-product-actions--mobile-row {
		flex-direction: row;
	}

	.wet-product-actions--mobile-row .wet-product-action-button {
		width: auto !important;
	}

	.wet-product-actions--mobile-row .wet-product-atc--in-actions {
		flex: 1 1 220px;
		width: auto;
	}

	.wet-product-actions--mobile-column {
		flex-direction: column;
	}

	.wet-product-actions--mobile-column .wet-product-action-button {
		width: 100%;
	}

	.wet-product-actions--mobile-column .wet-product-atc--in-actions {
		width: 100%;
	}

	.wet-product-card__actions--inline > .wet-product-card__button + .wet-product-card__button {
		margin-left: 0 !important;
		margin-inline-start: 0 !important;
	}

	.wet-product-card__actions--stack > .wet-product-card__button + .wet-product-card__button {
		margin-top: 0 !important;
	}

	.wet-filter-shell--drawer[data-wet-offcanvas="mobile"] .wet-mobile-filter-toggle {
		align-items: center;
		background: var(--wet-accent);
		border: 1px solid var(--wet-accent);
		border-radius: 6px;
		color: #fff;
		cursor: pointer;
		display: inline-flex;
		font-size: 14px;
		font-weight: 700;
		gap: 9px;
		justify-content: center;
		margin-bottom: 16px;
		min-height: 44px;
		padding: 10px 16px;
		text-transform: uppercase;
		width: 100%;
	}

	.wet-filter-shell--drawer[data-wet-offcanvas="mobile"] .wet-filter-overlay {
		background: rgba(17, 17, 17, 0.45);
		display: block;
		inset: 0;
		opacity: 0;
		pointer-events: none;
		position: fixed;
		transition: opacity 0.2s ease;
		z-index: 99998;
	}

	.wet-filter-shell--drawer[data-wet-offcanvas="mobile"] .wet-filter-panel {
		background: #fff;
		bottom: 0;
		box-shadow: 16px 0 34px rgba(0, 0, 0, 0.16);
		left: 0;
		max-width: 88vw;
		overflow-y: auto;
		position: fixed;
		top: 0;
		transform: translateX(-105%);
		transition: transform 0.25s ease;
		width: 340px;
		z-index: 99999;
	}

	.wet-filter-shell--drawer[data-wet-offcanvas="mobile"].is-open .wet-filter-overlay {
		opacity: 1;
		pointer-events: auto;
	}

	.wet-filter-shell--drawer[data-wet-offcanvas="mobile"].is-open .wet-filter-panel {
		transform: translateX(0);
	}

	.wet-filter-shell--drawer[data-wet-offcanvas="mobile"] .wet-filter-mobile-head {
		align-items: center;
		border-bottom: 1px solid var(--wet-line);
		display: flex;
		font-size: 16px;
		justify-content: space-between;
		padding: 16px 18px;
	}

	.wet-filter-shell--drawer[data-wet-offcanvas="mobile"] .wet-filter-sidebar {
		border: 0;
		border-radius: 0;
		box-shadow: none;
	}

	.wet-advanced-products__toolbar {
		align-items: stretch;
		flex-direction: column;
	}

	.wet-advanced-products__tools {
		justify-content: space-between;
	}

	.wet-advanced-products__sort {
		flex: 1;
	}

	.wet-advanced-products__sort select {
		min-width: 0;
		width: 100%;
	}

	.wet-advanced-products__items {
		grid-template-columns: repeat(var(--wet-advanced-columns-mobile, 2), minmax(0, 1fr));
	}

	.wet-price-fields {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.wet-products-container ul.products {
		grid-template-columns: 1fr;
	}

	.wet-advanced-products__items {
		grid-template-columns: repeat(var(--wet-advanced-columns-mobile, 2), minmax(0, 1fr));
	}
}

/* ─── Product Images Widget ─────────────────────────────────────────────────── */

/* Wrapper — layout direction driven by modifier class */
.wet-pi-wrapper {
	display: flex;
	flex-direction: column;
	gap: 10px;
	position: relative;
	width: 100%;
}

/* Left / Right / Stacked: grid layout so thumbs column matches image height naturally */
.wet-pi--left,
.wet-pi--stacked {
	display: grid;
	grid-template-columns: 80px 1fr; /* thumb col width overridden by Elementor control */
	grid-template-rows: 1fr;
	align-items: stretch;
}

.wet-pi--right {
	display: grid;
	grid-template-columns: 1fr 80px;
	grid-template-rows: 1fr;
	align-items: stretch;
}

/* Main image takes the remaining column */
.wet-pi--left  .wet-pi-main-wrap,
.wet-pi--stacked .wet-pi-main-wrap { grid-column: 2; grid-row: 1; }
.wet-pi--right .wet-pi-main-wrap   { grid-column: 1; grid-row: 1; }

/* Thumbs strip takes the narrow column */
.wet-pi--left  .wet-pi-thumbs-wrap,
.wet-pi--stacked .wet-pi-thumbs-wrap { grid-column: 1; grid-row: 1; }
.wet-pi--right .wet-pi-thumbs-wrap   { grid-column: 2; grid-row: 1; }

/* ── Main image area ──────────────────────────────────────────────────────── */

.wet-pi-main-wrap {
	flex: 1 1 0;
	min-width: 0;
	position: relative;
}

.wet-pi-main-img {
	background: #f9f9f9;
	border-radius: 12px;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.wet-pi-slide {
	display: none;
	width: 100%;
}

.wet-pi-slide.is-active {
	display: block;
}

.wet-pi-slide img {
	display: block;
	height: auto;
	max-width: 100%;
	object-fit: contain;
	transition: transform 0.35s ease;
	width: 100%;
}


/* Zoom on hover */
.wet-pi-zoom .wet-pi-slide.is-active img:hover {
	transform: scale(1.06);
	cursor: zoom-in;
}

/* Main image prev/next arrows */
.wet-pi-main-nav {
	align-items: center;
	background: rgba(255,255,255,0.88);
	border: none;
	border-radius: 50%;
	box-shadow: 0 2px 8px rgba(0,0,0,0.12);
	color: #191919;
	cursor: pointer;
	display: flex;
	height: 36px;
	justify-content: center;
	padding: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: box-shadow 0.2s, opacity 0.2s;
	width: 36px;
	z-index: 2;
}

.wet-pi-main-prev { left: 12px; }
.wet-pi-main-next { right: 12px; }

.wet-pi-main-nav:hover {
	box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}

.wet-pi-main-nav svg {
	height: 18px;
	width: 18px;
}

/* Sale badge */
.wet-pi-badge {
	background: #e73568;
	border-radius: 4px;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	left: 12px;
	letter-spacing: 0.5px;
	padding: 3px 8px;
	position: absolute;
	text-transform: uppercase;
	top: 12px;
	z-index: 3;
}

/* ── Thumbnails wrap ──────────────────────────────────────────────────────── */

.wet-pi-thumbs-wrap {
	align-items: center;
	display: flex;
	flex-shrink: 0;
	gap: 4px;
}

/* Bottom: horizontal row */
.wet-pi--bottom .wet-pi-thumbs-wrap {
	flex-direction: row;
	width: 100%;
}

/* Left / Right / Stacked: vertical column — height comes from grid row */
.wet-pi--left  .wet-pi-thumbs-wrap,
.wet-pi--right .wet-pi-thumbs-wrap,
.wet-pi--stacked .wet-pi-thumbs-wrap {
	flex-direction: column;
	width: 100%; /* fill the grid column */
}

.wet-pi--left  .wet-pi-thumbs-viewport,
.wet-pi--right .wet-pi-thumbs-viewport,
.wet-pi--stacked .wet-pi-thumbs-viewport {
	flex: 1 1 0;
	min-height: 0;
}

/* Viewport clips overflow */
.wet-pi-thumbs-viewport {
	flex: 1 1 0;
	overflow: hidden;
	min-width: 0;
	min-height: 0;
}

/* Track scrolls inside viewport */
.wet-pi-thumbs-track {
	display: flex;
	gap: 8px;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: transform;
}

/* Horizontal track (bottom) */
.wet-pi--bottom .wet-pi-thumbs-track {
	flex-direction: row;
}

/* Vertical track (left / right / stacked) */
.wet-pi--left  .wet-pi-thumbs-track,
.wet-pi--right .wet-pi-thumbs-track,
.wet-pi--stacked .wet-pi-thumbs-track {
	flex-direction: column;
}

/* ── Thumbnail button ─────────────────────────────────────────────────────── */

.wet-pi-thumb {
	background: #f2f2f2;
	border: 2px solid transparent;
	border-radius: 8px;
	cursor: pointer;
	flex-shrink: 0;
	height: 80px;
	overflow: hidden;
	padding: 0;
	transition: border-color 0.2s, opacity 0.2s;
	width: 80px;
}

.wet-pi-thumb img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.wet-pi-thumb.is-active {
	border-color: #191919;
	opacity: 1 !important;
}

.wet-pi-thumb:not(.is-active) {
	opacity: 0.55;
}

.wet-pi-thumb:hover {
	opacity: 1;
}

/* ── Thumbnail carousel arrows ────────────────────────────────────────────── */

.wet-pi-thumb-nav {
	align-items: center;
	background: #ffffff;
	border: none;
	border-radius: 50%;
	box-shadow: 0 1px 6px rgba(0,0,0,0.12);
	color: #191919;
	cursor: pointer;
	display: flex;
	flex-shrink: 0;
	height: 28px;
	justify-content: center;
	padding: 0;
	transition: box-shadow 0.2s, opacity 0.2s;
	width: 28px;
}

.wet-pi-thumb-nav:disabled {
	opacity: 0.3;
	pointer-events: none;
}

.wet-pi-thumb-nav svg {
	height: 16px;
	width: 16px;
}

/* ── Responsive position helpers ─────────────────────────────────────────── */

/* Tablet overrides */
@media (max-width: 1024px) {
	.wet-pi-tablet--bottom {
		flex-direction: column;
	}
	.wet-pi-tablet--bottom .wet-pi-thumbs-wrap {
		flex-direction: row;
		align-self: auto;
		width: 100% !important;
	}
	.wet-pi-tablet--bottom .wet-pi-thumbs-track { flex-direction: row; }
	.wet-pi-tablet--bottom .wet-pi-thumbs-viewport { flex: unset; height: auto; }

	.wet-pi-tablet--left,
	.wet-pi-tablet--stacked {
		display: grid;
		grid-template-columns: 80px 1fr;
		grid-template-rows: 1fr;
	}
	.wet-pi-tablet--right {
		display: grid;
		grid-template-columns: 1fr 80px;
		grid-template-rows: 1fr;
	}
	.wet-pi-tablet--left  .wet-pi-main-wrap,
	.wet-pi-tablet--stacked .wet-pi-main-wrap { grid-column: 2; grid-row: 1; }
	.wet-pi-tablet--right .wet-pi-main-wrap   { grid-column: 1; grid-row: 1; }
	.wet-pi-tablet--left  .wet-pi-thumbs-wrap,
	.wet-pi-tablet--stacked .wet-pi-thumbs-wrap { grid-column: 1; grid-row: 1; }
	.wet-pi-tablet--right .wet-pi-thumbs-wrap   { grid-column: 2; grid-row: 1; }

	.wet-pi-tablet--left  .wet-pi-thumbs-wrap,
	.wet-pi-tablet--right .wet-pi-thumbs-wrap,
	.wet-pi-tablet--stacked .wet-pi-thumbs-wrap {
		flex-direction: column;
		width: 100%;
	}
	.wet-pi-tablet--left  .wet-pi-thumbs-track,
	.wet-pi-tablet--right .wet-pi-thumbs-track,
	.wet-pi-tablet--stacked .wet-pi-thumbs-track { flex-direction: column; }
	.wet-pi-tablet--left  .wet-pi-thumbs-viewport,
	.wet-pi-tablet--right .wet-pi-thumbs-viewport,
	.wet-pi-tablet--stacked .wet-pi-thumbs-viewport { flex: 1 1 0; min-height: 0; }
}

/* Mobile overrides */
@media (max-width: 767px) {
	/* Default: left/right/stacked collapse to bottom on mobile */
	.wet-pi--left,
	.wet-pi--right,
	.wet-pi--stacked {
		display: flex !important;
		flex-direction: column !important;
	}

	.wet-pi--left  .wet-pi-main-wrap,
	.wet-pi--right .wet-pi-main-wrap,
	.wet-pi--stacked .wet-pi-main-wrap { grid-column: unset; grid-row: unset; }

	.wet-pi--left  .wet-pi-thumbs-wrap,
	.wet-pi--right .wet-pi-thumbs-wrap,
	.wet-pi--stacked .wet-pi-thumbs-wrap {
		flex-direction: row;
		width: 100% !important;
	}

	.wet-pi--left  .wet-pi-thumbs-track,
	.wet-pi--right .wet-pi-thumbs-track,
	.wet-pi--stacked .wet-pi-thumbs-track { flex-direction: row; }

	.wet-pi--left  .wet-pi-thumbs-viewport,
	.wet-pi--right .wet-pi-thumbs-viewport,
	.wet-pi--stacked .wet-pi-thumbs-viewport { flex: unset; min-height: unset; }

	/* Mobile-specific position classes */
	.wet-pi-mobile--bottom {
		flex-direction: column !important;
	}
	.wet-pi-mobile--bottom .wet-pi-thumbs-wrap {
		flex-direction: row !important;
		align-self: auto !important;
		width: 100% !important;
	}
	.wet-pi-mobile--bottom .wet-pi-thumbs-track { flex-direction: row !important; }
	.wet-pi-mobile--bottom .wet-pi-thumbs-viewport { flex: unset !important; height: auto !important; }

	.wet-pi-mobile--left,
	.wet-pi-mobile--stacked {
		display: grid !important;
		grid-template-columns: 60px 1fr !important;
		grid-template-rows: 1fr !important;
	}
	.wet-pi-mobile--right {
		display: grid !important;
		grid-template-columns: 1fr 60px !important;
		grid-template-rows: 1fr !important;
	}
	.wet-pi-mobile--left  .wet-pi-main-wrap,
	.wet-pi-mobile--stacked .wet-pi-main-wrap { grid-column: 2 !important; grid-row: 1 !important; }
	.wet-pi-mobile--right .wet-pi-main-wrap   { grid-column: 1 !important; grid-row: 1 !important; }
	.wet-pi-mobile--left  .wet-pi-thumbs-wrap,
	.wet-pi-mobile--stacked .wet-pi-thumbs-wrap { grid-column: 1 !important; grid-row: 1 !important; }
	.wet-pi-mobile--right .wet-pi-thumbs-wrap   { grid-column: 2 !important; grid-row: 1 !important; }

	.wet-pi-mobile--left  .wet-pi-thumbs-wrap,
	.wet-pi-mobile--right .wet-pi-thumbs-wrap,
	.wet-pi-mobile--stacked .wet-pi-thumbs-wrap {
		flex-direction: column !important;
		width: 100% !important;
	}
	.wet-pi-mobile--left  .wet-pi-thumbs-track,
	.wet-pi-mobile--right .wet-pi-thumbs-track,
	.wet-pi-mobile--stacked .wet-pi-thumbs-track { flex-direction: column !important; }
	.wet-pi-mobile--left  .wet-pi-thumbs-viewport,
	.wet-pi-mobile--right .wet-pi-thumbs-viewport,
	.wet-pi-mobile--stacked .wet-pi-thumbs-viewport { flex: 1 1 0 !important; min-height: 0 !important; }
}

/* ─── Products Carousel Widget ─────────────────────────────────────────────── */

.wet-carousel-wrapper {
	font-family: inherit;
}

/* ── Header ─────────────────────────────────────────────────────────────────── */

.wet-carousel-header {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}

.wet-carousel-header-text {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.wet-carousel-heading {
	color: #191919;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.3;
	margin: 0;
}

.wet-carousel-subheading {
	color: #747474;
	font-size: 14px;
	margin: 0;
}

.wet-carousel-shop-all {
	align-items: center;
	background: #ffffff;
	border: 1px solid #e0e0e0;
	border-radius: 100px;
	color: #191919;
	display: flex;
	flex-shrink: 0;
	font-size: 14px;
	font-weight: 500;
	gap: 4px;
	padding: 8px 16px;
	text-decoration: none;
	transition: background 0.2s, border-color 0.2s;
	white-space: nowrap;
}

.wet-carousel-shop-all:hover {
	background: #f5f5f5;
	border-color: #bdbdbd;
	color: #191919;
}

/* ── Shell & viewport ────────────────────────────────────────────────────────── */

.wet-carousel-shell {
	display: flex;
	flex-direction: column;
	position: relative;
}

/* Bottom-row arrows layout */
.wet-carousel-nav--bottom .wet-carousel-nav-row {
	display: flex;
	gap: 8px;
	justify-content: flex-end;
	margin-bottom: 12px;
}

/* Viewport */
.wet-carousel-viewport {
	overflow: hidden;
	position: relative; /* needed so absolute arrows sit inside */
	width: 100%;
}

.wet-carousel-track {
	display: flex;
	gap: 16px;
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: transform;
}

/* ── Arrows ──────────────────────────────────────────────────────────────────── */

.wet-carousel-nav-btn {
	align-items: center;
	background: #ffffff;
	border: none;
	border-radius: 50%;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
	color: #191919;
	cursor: pointer;
	display: flex;
	flex-shrink: 0;
	height: 36px;
	justify-content: center;
	padding: 0;
	transition: box-shadow 0.2s, opacity 0.2s, transform 0.15s;
	width: 36px;
	z-index: 3;
}

.wet-carousel-nav-btn:hover {
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
	transform: scale(1.06);
}

.wet-carousel-nav-btn:disabled {
	opacity: 0.3;
	pointer-events: none;
}

/* Sides mode: arrows float over left/right edges of viewport */
.wet-carousel-nav--sides .wet-carousel-viewport {
	padding: 0; /* no extra room needed, arrows overlap */
}

.wet-carousel-nav--sides .wet-carousel-prev,
.wet-carousel-nav--sides .wet-carousel-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.wet-carousel-nav--sides .wet-carousel-prev {
	left: 8px;
}

.wet-carousel-nav--sides .wet-carousel-next {
	right: 8px;
}

.wet-carousel-nav--sides .wet-carousel-prev:hover,
.wet-carousel-nav--sides .wet-carousel-next:hover {
	transform: translateY(-50%) scale(1.06);
}

/* ── Dots ────────────────────────────────────────────────────────────────────── */

.wet-carousel-dots {
	align-items: center;
	display: flex;
	gap: 6px;
	justify-content: center;
	margin-top: 16px;
}

.wet-carousel-dot {
	background: #d0d0d0;
	border: none;
	border-radius: 100px;
	cursor: pointer;
	flex-shrink: 0;
	height: 8px;
	padding: 0;
	transition: background 0.25s, width 0.25s;
	width: 8px;
}

.wet-carousel-dot.is-active {
	background: #191919;
	width: 24px;
}

/* ── Card ────────────────────────────────────────────────────────────────────── */

.wet-carousel-card {
	background: #ffffff;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	max-width: 260px;
	min-width: 260px;
}

/* ── Image ───────────────────────────────────────────────────────────────────── */

.wet-carousel-img {
	border-radius: 12px;
	height: 300px;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.wet-carousel-img-link {
	display: block;
	height: 100%;
	width: 100%;
}

.wet-carousel-img img {
	display: block;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
	width: 100%;
}

.wet-carousel-card:hover .wet-carousel-img img {
	transform: scale(1.04);
}

/* ── Wishlist ─────────────────────────────────────────────────────────────────── */

.wet-carousel-wishlist {
	align-items: center;
	background: rgba(255, 255, 255, 0.9);
	border: none;
	border-radius: 50%;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
	color: #747474;
	cursor: pointer;
	display: flex;
	height: 34px;
	justify-content: center;
	padding: 0;
	position: absolute;
	right: 10px;
	top: 10px;
	transition: color 0.2s, background 0.2s;
	width: 34px;
	z-index: 2;
}

.wet-carousel-wishlist:hover {
	background: #fff;
	color: #e73568;
}

.wet-carousel-wishlist--active {
	color: #e73568;
}

.wet-carousel-wishlist--active svg path {
	fill: #e73568;
}

/* ── ATC ──────────────────────────────────────────────────────────────────────── */

.wet-carousel-atc-wrap {
	align-items: center;
	bottom: 10px;
	display: flex;
	gap: 6px;
	justify-content: flex-end;
	position: absolute;
	right: 10px;
	z-index: 2;
}

.wet-carousel-atc-btn {
	align-items: center;
	background: #ffffff;
	border: none;
	border-radius: 100px;
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
	color: #191919;
	cursor: pointer;
	display: flex;
	height: 34px;
	justify-content: center;
	padding: 0;
	transition: box-shadow 0.2s, transform 0.15s;
	width: 34px;
}

.wet-carousel-atc-btn:hover {
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
	transform: scale(1.08);
}

.wet-carousel-qty-stepper {
	align-items: center;
	background: #ffffff;
	border-radius: 100px;
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
	color: #191919;
	display: none;
	height: 34px;
	overflow: hidden;
}

.wet-carousel-qty-minus,
.wet-carousel-qty-plus {
	align-items: center;
	background: transparent;
	border: none;
	color: #191919;
	cursor: pointer;
	display: flex;
	font-size: 17px;
	font-weight: 400;
	height: 34px;
	justify-content: center;
	line-height: 1;
	padding: 0 10px;
	transition: background 0.15s;
}

.wet-carousel-qty-minus:hover,
.wet-carousel-qty-plus:hover {
	background: #f0f0f0;
}

.wet-carousel-qty-val {
	font-size: 14px;
	font-weight: 600;
	min-width: 20px;
	text-align: center;
}

.wet-carousel-customize-btn {
	align-items: center;
	background: #ffffff;
	border-radius: 100px;
	bottom: 10px;
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
	color: #191919;
	display: flex;
	font-size: 13px;
	font-weight: 500;
	height: 34px;
	padding: 0 14px;
	position: absolute;
	right: 10px;
	text-decoration: none;
	transition: box-shadow 0.2s;
	z-index: 2;
}

.wet-carousel-customize-btn:hover {
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
	color: #191919;
}

/* ── Info ─────────────────────────────────────────────────────────────────────── */

.wet-carousel-info {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 10px 2px 4px;
}

.wet-carousel-title {
	color: #191919;
	display: -webkit-box;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
	overflow: hidden;
	text-decoration: none;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.wet-carousel-title:hover {
	color: var(--wet-accent);
}

.wet-carousel-price {
	color: #191919;
	font-size: 14px;
	font-weight: 600;
}

.wet-carousel-price del {
	color: #9e9e9e;
	font-weight: 400;
}

.wet-carousel-price ins {
	color: #e73568;
	text-decoration: none;
}

/* ── Responsive ─────────────────────────────────────────────────────────────── */

@media (max-width: 767px) {
	.wet-carousel-header {
		flex-wrap: wrap;
		gap: 12px;
	}

	.wet-carousel-nav--sides .wet-carousel-prev,
	.wet-carousel-nav--sides .wet-carousel-next {
		display: none;
	}

	.wet-carousel-viewport {
		overflow-x: auto;
		-ms-overflow-style: none;
		scrollbar-width: none;
	}

	.wet-carousel-viewport::-webkit-scrollbar {
		display: none;
	}

	.wet-carousel-track {
		transform: none !important;
		transition: none !important;
	}
}
