/* ================================================
   Product card — shared base for carousel + shop grid
   ================================================ */
.custom-product-card {
	list-style: none;
	margin-bottom: 16px;
	position: relative;
	cursor: pointer;
	display: flex;
	align-items: stretch;
	height: 100%;
}

.custom-product-card:hover {
	z-index: 9999;
}

.product-card-container {
	position: relative;
	background: #fff;
	border-radius: 8px;
	border: 0;
	transition: box-shadow 0.25s ease;
	width: 100%;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.product-card-content {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
}

/* ——— Hover: updated shadow (0 4px 6.3px 0 25% alpha) ——— */
.custom-product-card:hover .product-card-container,
.custom-product-card.kdc-is-hovered .product-card-container {
	box-shadow: 0 4px 6.3px 0 rgba(0, 0, 0, 0.25);
}

/* When hover panel is active, remove bottom shadow/radius from card to merge with panel */
.custom-product-card.kdc-hover-portal-active .product-card-container,
.custom-product-card.kdc-is-hovered .product-card-container {
	border-radius: 8px 8px 0 0;
	/* Clip bottom shadow so it doesn't bleed into the hover block.
	   -30px allows room for side/top shadow blur to show. 0px cuts perfectly at the seam. */
	clip-path: inset(-30px -30px 0px -30px);
	z-index: 10001;
}

/* ── Details block (sku / price / title / button) ── */
.details-container {
	display: flex;
	flex-direction: column;
	gap: 24px;
	padding: 10px;
	flex: 1 1 auto;
}

.details-container .product-card-cta {
	margin-top: auto;
}

.product-details {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

/* ── Badges ── */
.product-badges {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 10;
	display: flex;
	flex-direction: column;
	gap: 5px;
	align-items: flex-start;
}

.badge {
	padding: 4px 10px;
	border-radius: 20px;
	color: #fff;
	font-size: 11px;
	font-weight: bold;
	text-transform: uppercase;
	display: inline-flex;
	align-self: flex-start;
	line-height: 1.2;
}

.badge.new {
	background: linear-gradient(90deg, #FF56A3 0%, #899FFF 100%);
}

.badge.hit {
	background: linear-gradient(90deg, #F765A8 0%, #F4C508 100%);
}

.badge.sale {
	background: var(--global-palette1);
	color: #fff;
}

/* ── Wishlist ── */
.wishlist-icon {
	position: absolute;
	top: 10px;
	right: 10px;
	color: #535455;
	width: 22px;
	cursor: pointer;
	z-index: 10;
	background: transparent;
	border: 0;
	padding: 0;
	box-shadow: none;
}

.wishlist-icon:hover,
.wishlist-icon:focus {
	background: transparent;
	border: 0;
	padding: 0;
	box-shadow: none;
	color: var(--global-palette2);
}

.wishlist-icon svg {
	display: block;
}

.wishlist-icon:hover svg path,
.wishlist-icon:focus svg path {
	stroke: currentColor;
}

.wishlist-icon.is-active {
	color: var(--global-palette2);
}

.wishlist-icon.is-active svg path {
	fill: var(--global-palette2);
	stroke: var(--global-palette2);
}

/* ── Image ── */
.product-image-container {
	height: 300px;
	position: relative;
	margin-bottom: 15px;
	overflow: hidden;
	border-radius: 8px;
	background: #F6F7FB;
}

.product-image-container picture,
.product-image-container img {
	height: 100%;
	display: block;
}

.product-image-container img {
	object-fit: cover;
	object-position: center top;
}

.image-default,
.image-hover {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.image-default {
	opacity: 1;
	transition: opacity 0.3s ease;
	background: #F6F7FB;
}

.image-hover {
	opacity: 0;
	transition: opacity 0.3s ease;
	background: #F6F7FB;
}

.custom-product-card:hover .image-hover {
	opacity: 1;
}

.product-image-action-icon {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease, visibility 0.2s ease;
	pointer-events: auto;
	z-index: 5;
	border: 0;
	padding: 0;
	background: transparent;
	cursor: pointer;
}

.product-image-action-icon:hover {
	box-shadow: none;
	background: transparent;
}

.custom-product-card:hover .product-image-action-icon {
	opacity: 1;
	visibility: visible;
}

.product-image-action-icon:focus-visible {
	outline: 2px solid var(--global-palette2);
	outline-offset: 4px;
	border-radius: 999px;
}

/* ── Sku / title / price ── */
.sku {
	font-size: 12px;
	color: #888;
	display: block;
}

.product-title {
	font-size: 14px;
	font-weight: normal;
	margin: 0 !important;
	padding: 0;
	line-height: 1.4;
}

.price-wrapper {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 0;
}

.price-wrapper .current-price {
	font-size: 24px;
	font-weight: bold;
	color: var(--global-palette3);
	line-height: 1.1;
}

.price-old-row {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.old-price {
	font-size: 14px;
	color: #6D7482;
	text-decoration: line-through;
	font-weight: normal;
}

/* Legacy price markup (del / ins) still produced by some WC fragments. */
.price-wrapper del {
	font-size: 14px;
	color: #6D7482;
	text-decoration: line-through;
	font-weight: normal;
}

.price-wrapper ins {
	text-decoration: none;
}

/* ── Hover panel (carousel cards only) ── */
.product-actions-hover {
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	background: #fff;
	padding: 0 10px 10px 10px;
	border-radius: 0 0 8px 8px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-6px);
	transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
	z-index: 9999;
	/* Base shadow for inline panel */
	box-shadow: 0 4px 6.3px 0 rgba(0, 0, 0, 0.25);
}

.custom-product-card:hover .product-actions-hover {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/* Style for the PORTAL clone of the hover panel */
.kadence-child-hover-portal .product-actions-hover {
	border-radius: 0 0 8px 8px;
	box-shadow: 0 4px 6.3px 0 rgba(0, 0, 0, 0.25);
	/* Clip TOP shadow to merge with card. 0px at top, -30px elsewhere. */
	clip-path: inset(0px -30px -30px -30px);
}

/* Hover portal (JS-managed clone) */
.kadence-child-hover-portal {
	position: absolute;
	z-index: 2147483647;
	pointer-events: auto;
}

.kadence-child-hover-portal .product-actions-hover {
	position: static;
	opacity: 1 !important;
	visibility: visible !important;
	transform: none !important;
	z-index: auto;
}

.custom-product-card.kdc-hover-portal-active .product-actions-hover {
	opacity: 0 !important;
	visibility: hidden !important;
	pointer-events: none !important;
}

/* Shop cards: no hover panel at all. */
.custom-product-card.is-shop-card .product-actions-hover,
.custom-product-card.is-shop-card:hover .product-actions-hover {
	display: none !important;
}

.custom-product-card.is-shop-card:hover .product-card-container {
	border-radius: 8px !important;
}

/* ── Hover panel contents ── */
.product-attributes {
	margin-bottom: 20px;
	padding-top: 15px;
}

.attr-row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 8px;
	font-size: 13px;
	line-height: 1.2;
}

.attr-label {
	color: #888;
	flex-shrink: 0;
}

.attr-value {
	color: #000;
	text-align: right;
	font-weight: 500;
}

.attr-value a {
	text-decoration: none;
	color: inherit;
}

.btn-one-click {
	background: transparent;
	border: 1px solid #000;
	color: #000;
	width: 100%;
	padding: 10px;
	border-radius: 8px;
	cursor: pointer;
	font-weight: bold;
	font-size: 14px;
	margin-top: 8px;
}

/* ── Card CTA (add to cart on card, always visible) ── */
.product-card-cta {
	display: flex;
	flex-direction: column;
	gap: 8px;
	white-space: nowrap;
}

/* Shared gradient/pink button — also used for QV and shop card. */
.shop-gradient-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 10px;
	border-radius: 6px;
	background: #FFE5E5;
	color: var(--global-palette5) !important;
	font-size: 14px;
	font-weight: 500;
	border: 0;
	cursor: pointer;
	text-decoration: none;
	box-sizing: border-box;
	transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
	box-shadow: none;
}

.shop-gradient-btn:hover,
.shop-gradient-btn:focus {
	background: var(--global-palette2);
	color: var(--global-palette9) !important;
	box-shadow: none;
	text-decoration: none;
}

.shop-gradient-btn svg {
	flex-shrink: 0;
}

.shop-gradient-btn.kdc-btn-added,
.btn-add-to-cart.kdc-btn-added {
	opacity: 0.85;
	pointer-events: none;
}

.added_to_cart {
	display: none !important;
}

.splide__list,
.splide__track,
.custom-product-card {
	overflow: visible !important;
}

/* ================================================
   Quick view modal
   ================================================ */
body.kadence-child-qv-open {
	overflow: hidden;
}

body.kdc-size-modal-open {
	overflow: hidden;
}

.kdc-card-size-source[hidden],
.kdc-size-modal[hidden] {
	display: none !important;
}

.kdc-size-modal {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
}

.kdc-size-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.35);
}

.kdc-size-modal__dialog {
	position: relative;
	width: min(420px, calc(100vw - 32px));
	background: #fff;
	border-radius: 8px;
	padding: 20px 18px;
	box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.kdc-size-modal__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 18px;
}

.kdc-size-modal__title {
	color: var(--global-palette5);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
}

.kdc-size-modal__close {
	width: 28px;
	height: 28px;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: #282727;
	padding: 7px;
	cursor: pointer;
	box-shadow: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.kdc-size-modal__close:hover,
.kdc-size-modal__close:focus {
	background: transparent;
	color: var(--global-palette5);
	box-shadow: none;
}

.kdc-size-modal__close svg {
	display: block;
}

.kdc-size-modal .kdc-card-var-attrs {
	display: grid;
	gap: 12px;
}

.kdc-size-modal .kdc-card-var-attr__options {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.kdc-size-modal .kdc-card-var-btn {
	min-width: 42px;
	height: 38px;
	padding: 0 14px;
	border: 1px solid transparent;
	border-radius: 8px;
	background: #F8F8FA;
	color: var(--global-palette5);
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	cursor: pointer;
	box-shadow: none;
}

.kdc-size-modal .kdc-card-var-btn:hover,
.kdc-size-modal .kdc-card-var-btn:focus,
.kdc-size-modal .kdc-card-var-btn.is-active {
	background: #fff;
	border-color: #DCE2EE;
	color: var(--global-palette5);
	box-shadow: none;
}

.kdc-size-modal .kdc-card-var-btn.is-out-of-stock,
.kdc-size-modal .kdc-card-var-btn:disabled {
	color: #B8C0CC;
	background: #F8F8FA;
	border-color: transparent;
	cursor: not-allowed;
	opacity: 1;
}

.kadence-child-qv[hidden] {
	display: none !important;
}

.kadence-child-qv {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
}

.kadence-child-qv__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.35);
}

.kadence-child-qv__dialog {
	position: relative;
	width: min(1100px, calc(100vw - 24px));
	max-height: calc(100vh - 24px);
	background: #fff;
	border-radius: 14px;
	overflow: auto;
	padding: 20px 30px;
	box-shadow: 0 24px 72px rgba(0, 0, 0, 0.25);
}

.kadence-child-qv__close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 28px;
	height: 28px;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: #282727;
	font-size: 0;
	line-height: 0;
	cursor: pointer;
	padding: 10px;
	z-index: 1;
}

.kadence-child-qv__close:hover,
.kadence-child-qv__close:focus {
	background: transparent;
	color: var(--global-palette5);
}

.kadence-child-qv__close svg {
	display: block;
}

.kadence-child-qv__grid {
	display: grid;
	grid-template-columns: minmax(320px, 1fr) minmax(360px, 1.1fr);
	gap: 26px;
	align-items: start;
}

.kadence-child-qv__left {
	position: relative;
}

.kadence-child-qv__badges {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 3;
	display: flex;
	flex-direction: column;
	gap: 6px;
	align-items: flex-start;
}

.kadence-child-qv__slide {
	border-radius: 14px;
	overflow: hidden;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 360px;
	border: 0;
}

.kadence-child-qv__img {
	width: 100%;
	height: 100% !important;
	object-fit: contain;
	display: block;
}

.kadence-child-qv__thumbs {
	display: flex;
	gap: 10px;
	margin-top: 12px;
	overflow-x: auto;
	padding-bottom: 4px;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.kadence-child-qv__thumbs::-webkit-scrollbar {
	display: none;
}

.kadence-child-qv__thumb {
	flex: 0 0 auto;
	width: 74px;
	height: 74px;
	border-radius: 10px;
	border: 1px solid var(--global-palette4);
	background: var(--global-palette9);
	padding: 6px;
	cursor: pointer;
}

.kadence-child-qv__thumb.is-active {
	border-color: var(--global-palette5);
	background-color: var(--global-palette9);
}

.kadence-child-qv__thumb:hover {
	background: var(--global-palette9);
	border-color: var(--global-palette2);
}

.kadence-child-qv__thumb:focus,
.kadence-child-qv__thumb:hover {
	box-shadow: none;
}

.kadence-child-qv__thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.kadence-child-qv__title-wrap {
	margin: 0 0 10px 0;
	font-size: 20px;
	line-height: 1.15;
}

.kadence-child-qv__title {
	color: inherit;
	text-decoration: none;
	display: inline-block;
	font-size: inherit;
	line-height: inherit;
}

.kadence-child-qv__title:hover,
.kadence-child-qv__title:focus {
	color: var(--global-palette2);
	text-decoration: none;
}

.kadence-child-qv__meta-row {
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
	color: var(--global-palette4);
	font-size: 12px;
	margin-top: 16px;
}

.kadence-child-qv__meta-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--global-palette4);
	font-size: 12px;
}

.kadence-child-qv__reviews svg,
.kadence-child-qv__meta-item svg {
	color: var(--global-palette4);
}

.kadence-child-qv__price {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	margin: 0;
}

.kadence-child-qv__price-current {
	font-size: 28px;
	font-weight: 700;
	color: var(--global-palette3);
}

.kadence-child-qv__price-old {
	font-size: 16px;
	color: #6D7482;
	text-decoration: line-through;
}

.kadence-child-qv__section-title {
	font-size: 14px;
	font-weight: 700;
	margin: 0 0 16px;
	color: var(--global-palette5);
}

.kadence-child-qv__attrs {
	display: grid;
	gap: 8px;
	margin-bottom: 0;
}

.kadence-child-qv__attr {
	display: grid;
	grid-template-columns: 140px 1fr;
	gap: 14px;
}

.kadence-child-qv__attr-label {
	color: #8F8F8F;
	font-size: 14px;
}

.kadence-child-qv__attr-value {
	color: var(--global-palette5);
	font-size: 14px;
	text-align: right;
}

.kadence-child-qv__actions {
	display: grid;
	gap: 6px;
	margin: 0;
}

.kadence-child-qv__actions .btn-add-to-cart,
.kadence-child-qv__actions .btn-one-click {
	width: 100%;
	border-radius: 10px;
	padding: 10px !important;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: 14px;
	margin-bottom: 0;
}

.kadence-child-qv__actions .btn-one-click {
	background: #fff;
	border: 1px solid #111;
	color: #111;
}

.kadence-child-qv__actions .btn-add-to-cart:hover,
.kadence-child-qv__actions .btn-add-to-cart:focus,
.kadence-child-qv__actions .btn-one-click:hover,
.kadence-child-qv__actions .btn-one-click:focus {
	box-shadow: none;
}

.kadence-child-qv__actions .btn-add-to-cart:hover,
.kadence-child-qv__actions .btn-add-to-cart:focus {
	border-color: var(--global-palette2);
}

.kadence-child-qv__actions .btn-one-click:hover,
.kadence-child-qv__actions .btn-one-click:focus {
	border-color: var(--global-palette2);
	background: var(--global-palette2);
	color: var(--global-palette9);
}

.kadence-child-qv__stock {
	color: #535455;
}

.kadence-child-qv__stock-in,
.kadence-child-qv__stock-out {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
}

.kadence-child-qv__stock-in {
	color: #17A34B;
}

.kadence-child-qv__stock svg {
	display: block;
}

.kadence-child-qv__right {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.kadence-child-qv__bottom {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

/* Card add-to-cart button used in QV (fallback) */
.btn-add-to-cart {
	background-color: var(--global-palette3) !important;
	color: var(--global-palette9) !important;
	width: 100%;
	padding: 12px !important;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-bottom: 10px;
	font-size: 14px;
}

.btn-add-to-cart:hover {
	background-color: var(--global-palette2) !important;
	color: var(--global-palette9) !important;
}

/* ================================================
   Product carousel shortcode
   ================================================ */
.kadence-child-carousel {
	position: relative;
	width: 100%;
}

.kadence-child-carousel__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
}

.kadence-child-carousel__title {
	font-size: 18px;
	font-weight: 700;
}

.kadence-child-carousel__viewport {
	position: relative;
	overflow: visible;
}

.kadence-child-carousel__track {
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	padding: 4px;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.kadence-child-carousel__track::-webkit-scrollbar {
	display: none;
}

.kadence-child-carousel__list.products {
	display: flex;
	gap: 4px;
	flex-wrap: nowrap;
	margin: 0;
	padding: 0;
	list-style: none;
	overflow: visible;
	align-items: stretch;
}

.kadence-child-carousel__list.products > li {
	flex: 0 0 calc((100% - 7px) / 4);
	scroll-snap-align: start;
	display: flex;
	align-items: stretch;
}

.kadence-child-carousel__list.products > li.custom-product-card {
	width: 100%;
	display: flex;
	flex-direction: column;
	height: auto; /* Allow flex stretch from UL to determine height */
}

.kadence-child-carousel__list.products > li.custom-product-card .product-card-container {
	height: 100%;
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
}

.kadence-child-carousel__nav {
	position: absolute;
	top: 40%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	border-radius: 999px;
	border: 0;
	background: #FDDBDB;
	color: var(--global-palette2);
	font-size: 24px;
	cursor: pointer;
	z-index: 99999;
}

.kadence-child-carousel__nav.is-hidden {
	display: none;
}

.kadence-child-carousel__nav--prev {
	left: 22px;
	transform: translate(-70%, -50%);
}

.kadence-child-carousel__nav--next {
	right: 22px;
	transform: translate(70%, -50%);
}

.kadence-child-carousel__nav:disabled {
	opacity: 0.35;
	cursor: default;
}

.kadence-child-carousel__empty {
	padding: 12px 16px;
	background: #fff;
	border: 1px dashed #e0e0e0;
	border-radius: 10px;
	color: #535455;
	min-width: 260px;
}

/* ================================================
   Product Grid shortcode — [kadence_child_product_grid]
   ================================================ */
.kadence-child-product-grid.products {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
	align-items: stretch;
}

.kadence-child-product-grid.products > .custom-product-card {
	height: 100%;
}

.kadence-child-product-grid.products .product-image-container {
	height: 200px;
}

/* ================================================
   Pagination
   ================================================ */
.kadence-child-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 32px;
	flex-wrap: wrap;
}

.kadence-child-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	padding: 10px;
	border-radius: 8px;
	text-decoration: none;
	color: var(--global-palette5);
	line-height: 1;
	min-width: 38px;
	transition: background 0.2s ease;
}

.kadence-child-pagination .page-numbers:hover {
	background: #E9E7E7;
	text-decoration: none;
}

.kadence-child-pagination .page-numbers.current {
	background: #E9E7E7;
	border-radius: 8px;
}

.kadence-child-pagination .page-numbers.dots {
	pointer-events: none;
	background: none;
}

.kadence-child-pagination .page-numbers.prev {
	margin-right: 16px;
}

.kadence-child-pagination .page-numbers.next {
	margin-left: 16px;
}

.kadence-child-pagination .page-numbers svg {
	display: block;
}

/* ================================================
   Media queries
   ================================================ */

/* Disable hover panel on touch devices. */
@media (hover: none), (pointer: coarse) {
	.custom-product-card .product-actions-hover,
	.custom-product-card:hover .product-actions-hover {
		opacity: 0 !important;
		visibility: hidden !important;
		pointer-events: none !important;
	}

	.kadence-child-hover-portal {
		display: none !important;
	}
}

@media (max-width: 1024px) {
	.kadence-child-qv__grid {
		grid-template-columns: 1fr;
	}

	.kadence-child-qv__right {
		gap: 20px;
	}

	.kadence-child-qv__bottom {
		gap: 18px;
	}

	.kadence-child-carousel__list.products > li {
		flex-basis: calc((100% - 7px) / 3);
	}

	.kadence-child-product-grid.products {
		grid-template-columns: repeat(3, 1fr);
	}

	.kadence-child-qv__slide {
		height: 300px;
	}

	.kadence-child-qv__thumbs {
		justify-content: center;
	}

	.kadence-child-qv__thumb {
		width: 54px;
		height: 54px;
	}
}

@media (max-width: 768px) {
	.product-image-container,
	.kadence-child-product-grid.products .product-image-container {
		height: 250px;
	}

	.kdc-size-modal {
		align-items: flex-end;
		padding: 0;
	}

	.kdc-size-modal__dialog {
		width: 100%;
		max-width: none;
		border-radius: 8px 8px 0 0;
		padding: 22px 18px 24px;
		box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.18);
	}

	.kdc-size-modal__title {
		font-size: 18px;
	}

	.kadence-child-qv__dialog {
		width: calc(100vw - 32px);
		max-width: calc(100vw - 32px);
		max-height: calc(100vh - 32px);
		padding: 20px 16px;
		border-radius: 14px;
	}

	.kadence-child-qv__close {
		top: 12px;
		right: 12px;
	}

	.kadence-child-qv__grid {
		gap: 16px;
	}

	.kadence-child-qv__right {
		gap: 16px;
	}

	.kadence-child-qv__bottom {
		gap: 16px;
	}

	.kadence-child-qv__slide {
		height: 216px;
	}

	.kadence-child-qv__thumbs {
		gap: 8px;
		margin-top: 10px;
	}

	.kadence-child-qv__thumb {
		width: 44px;
		height: 44px;
		border-radius: 8px;
		padding: 4px;
	}

	.kadence-child-qv__title-wrap {
		font-size: 16px;
		margin-bottom: 8px;
	}

	.kadence-child-qv__meta-row {
		gap: 14px;
		margin-top: 10px;
	}

	.kadence-child-qv__price-current {
		font-size: 24px;
	}

	.kadence-child-qv__price-old {
		font-size: 14px;
	}

	.kadence-child-qv__section-title {
		margin-bottom: 12px;
	}

	.kadence-child-qv__attr {
		grid-template-columns: 110px 1fr;
		gap: 10px;
	}

	.kadence-child-qv__attr-label,
	.kadence-child-qv__attr-value {
		font-size: 13px;
	}

	.kadence-child-qv__actions {
		gap: 8px;
	}

	.kadence-child-qv__actions .btn-add-to-cart,
	.kadence-child-qv__actions .btn-one-click {
		padding: 12px !important;
		font-size: 14px;
	}

	.kadence-child-carousel__list.products > li {
		flex-basis: calc((100% - 0px) / 2);
	}

	.kadence-child-product-grid.products {
		grid-template-columns: repeat(2, 1fr);
	}
}
