.candy-shop .shop-load-more-area {
	margin: 34px 0 14px;
	text-align: center;
	clear: both;
}

.candy-shop button.js-shop-load-more,
.candy-shop .shop-load-more-area button,
.candy-shop .shop-load-more-area .js-shop-load-more {
	background:
		linear-gradient(135deg, #ff4b6e 0%, #ff5f7f 48%, #ff7894 100%) !important;
	color: #ffffff !important;
	border: 1px solid rgba(255, 255, 255, 0.18) !important;
	border-radius: 999px !important;
	padding: 14px 30px !important;
	min-height: 50px !important;
	font-weight: 800 !important;
	font-size: 15px !important;
	letter-spacing: 0.02em;
	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	box-shadow:
		0 12px 24px rgba(255, 75, 110, 0.22),
		0 4px 10px rgba(255, 107, 138, 0.12),
		inset 0 1px 0 rgba(255, 255, 255, 0.24),
		inset 0 -10px 18px rgba(191, 34, 77, 0.12) !important;
	cursor: pointer !important;
	transition:
		transform 0.22s ease,
		box-shadow 0.22s ease,
		opacity 0.22s ease,
		filter 0.22s ease,
		border-color 0.22s ease !important;
	will-change: transform, opacity;
	appearance: none !important;
	-webkit-appearance: none !important;
	position: relative;
	overflow: hidden;
	isolation: isolate;
}

.candy-shop button.js-shop-load-more::before,
.candy-shop .shop-load-more-area button::before,
.candy-shop .shop-load-more-area .js-shop-load-more::before {
	content: "";
	position: absolute;
	inset: 1px;
	border-radius: inherit;
	background:
		linear-gradient(
			180deg,
			rgba(255, 255, 255, 0.24) 0%,
			rgba(255, 255, 255, 0.1) 38%,
			rgba(255, 255, 255, 0) 100%
		);
	opacity: 0.95;
	pointer-events: none;
	z-index: 0;
}

.candy-shop button.js-shop-load-more::after,
.candy-shop .shop-load-more-area button::after,
.candy-shop .shop-load-more-area .js-shop-load-more::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: -32%;
	width: 34%;
	background: linear-gradient(
		120deg,
		rgba(255, 255, 255, 0) 0%,
		rgba(255, 255, 255, 0.18) 50%,
		rgba(255, 255, 255, 0) 100%
	);
	transform: skewX(-20deg) translateX(-180%);
	transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
	pointer-events: none;
	z-index: 0;
}

.candy-shop button.js-shop-load-more:hover,
.candy-shop .shop-load-more-area .js-shop-load-more:hover {
	transform: translateY(-2px);
	box-shadow:
		0 16px 30px rgba(255, 75, 110, 0.28),
		0 6px 14px rgba(255, 107, 138, 0.16),
		inset 0 1px 0 rgba(255, 255, 255, 0.26),
		inset 0 -10px 18px rgba(191, 34, 77, 0.14) !important;
	border-color: rgba(255, 255, 255, 0.22) !important;
	filter: saturate(1.04) brightness(1.02);
	color: #ffffff !important;
}

.candy-shop button.js-shop-load-more:hover::after,
.candy-shop .shop-load-more-area .js-shop-load-more:hover::after {
	transform: skewX(-20deg) translateX(420%);
}

.candy-shop .shop-load-more-area .js-shop-load-more.is-loading {
	opacity: 0.78;
	pointer-events: none;
}

.candy-shop .shop-load-more-area .js-shop-load-more-status {
	margin-top: 12px;
	font-size: 14px;
	line-height: 1.45;
	opacity: 0.78;
}

.candy-shop ul.products li.product.product-skeleton {
	position: relative;
	pointer-events: none;
	overflow: hidden;
}

.candy-shop ul.products li.product.product-skeleton > * {
	visibility: hidden;
}

.candy-shop ul.products li.product.product-skeleton::before {
	content: "";
	position: absolute;
	inset: 18px 18px auto 18px;
	height: 210px;
	border-radius: 14px;
	background: linear-gradient(
		90deg,
		rgba(0, 0, 0, 0.04) 0%,
		rgba(0, 0, 0, 0.08) 50%,
		rgba(0, 0, 0, 0.04) 100%
	);
	background-size: 200% 100%;
	animation: shopSkeletonShimmer 1.25s ease-in-out infinite;
}

.candy-shop ul.products li.product.product-skeleton::after {
	content: "";
	position: absolute;
	left: 18px;
	right: 34%;
	top: 248px;
	height: 14px;
	border-radius: 999px;
	background: linear-gradient(
		90deg,
		rgba(0, 0, 0, 0.04) 0%,
		rgba(0, 0, 0, 0.08) 50%,
		rgba(0, 0, 0, 0.04) 100%
	);
	background-size: 200% 100%;
	animation: shopSkeletonShimmer 1.25s ease-in-out infinite;
}

@keyframes shopSkeletonShimmer {
	0% {
		background-position: 200% 0;
	}
	100% {
		background-position: -200% 0;
	}
}

.candy-shop ul.products li.product.is-newly-inserted {
	opacity: 0;
	transform: translateY(18px) scale(0.985);
	will-change: transform, opacity;
}

.candy-shop ul.products li.product.is-newly-inserted.is-visible {
	opacity: 1;
	transform: translateY(0) scale(1);
	transition:
		opacity var(--shop-load-more-duration, 520ms) ease,
		transform var(--shop-load-more-duration, 520ms) cubic-bezier(0.22, 1, 0.36, 1);
}

.candy-shop-toast {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 999999;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	max-width: min(360px, calc(100vw - 32px));
	padding: 14px 16px;
	border-radius: 16px;
	background: rgba(31, 31, 31, 0.96);
	color: #ffffff;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	opacity: 0;
	transform: translateY(14px) scale(0.98);
	pointer-events: none;
	transition:
		opacity 260ms ease,
		transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.candy-shop-toast.is-visible {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.candy-shop-toast__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 999px;
	background: #08a05c;
	color: #ffffff;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	flex: 0 0 auto;
}

.candy-shop-toast__text {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	color: #ffffff;
}

.shop-cart-bump {
	animation: shopCartBump 460ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes shopCartBump {
	0% {
		transform: scale(1);
	}
	35% {
		transform: scale(1.12);
	}
	100% {
		transform: scale(1);
	}
}

.shop-cart-count-bump {
	animation: shopCartCountBump 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes shopCartCountBump {
	0% {
		transform: scale(1);
	}
	35% {
		transform: scale(1.22);
	}
	100% {
		transform: scale(1);
	}
}

.candy-shop .woocommerce-notices-wrapper {
	position: fixed;
	left: 50%;
	bottom: 24px;
	transform: translateX(-50%);
	z-index: 999998;
	width: min(680px, calc(100vw - 32px));
	pointer-events: none;
}

.candy-shop .woocommerce-notices-wrapper .woocommerce-message,
.candy-shop .woocommerce-notices-wrapper .woocommerce-error,
.candy-shop .woocommerce-notices-wrapper .woocommerce-info {
	margin: 0 0 10px !important;
	border-radius: 14px !important;
	box-shadow: 0 16px 32px rgba(0, 0, 0, 0.14) !important;
	opacity: 1;
	transform: translateY(0);
	transition: opacity 240ms ease, transform 240ms ease !important;
	pointer-events: auto;
}

.candy-shop .woocommerce-notices-wrapper .is-auto-hiding {
	opacity: 0 !important;
	transform: translateY(8px) !important;
}

@media (max-width: 767px) {
	.candy-shop-toast {
		right: 16px;
		bottom: 16px;
		padding: 13px 14px;
		border-radius: 14px;
	}

	.candy-shop .woocommerce-notices-wrapper {
		bottom: 16px;
		width: calc(100vw - 20px);
	}
}

@media (prefers-reduced-motion: reduce) {
	.candy-shop button.js-shop-load-more,
	.candy-shop .shop-load-more-area .js-shop-load-more,
	.candy-shop ul.products li.product.is-newly-inserted,
	.candy-shop ul.products li.product.is-newly-inserted.is-visible,
	.candy-shop-toast,
	.candy-shop-toast.is-visible,
	.shop-cart-bump,
	.shop-cart-count-bump {
		transition: none !important;
		transform: none !important;
		animation: none !important;
	}

	.candy-shop ul.products li.product.product-skeleton::before,
	.candy-shop ul.products li.product.product-skeleton::after {
		animation: none;
	}
}

.products.is-archive-loading {
	position: relative;
}

.custom-filter-toolbar.is-archive-loading,
.shop-filter-toolbar.is-archive-loading,
.archive-toolbar.is-archive-loading {
	pointer-events: none;
	opacity: 0.72;
	transition: opacity 0.2s ease;
}

.shop-load-more.is-loading,
.js-shop-load-more.is-loading {
	pointer-events: none;
	opacity: 0.7;
}

.product--empty {
	grid-column: 1 / -1;
}

body.candy-shop .woocommerce-before-shop-loop::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient(
		135deg,
		rgba(255,255,255,0.34),
		rgba(255,255,255,0.10)
	);
	pointer-events: none;
}

body.candy-shop .woocommerce-before-shop-loop > * {
	position: relative;
	z-index: 1;
}

body.admin-bar.candy-shop .woocommerce-before-shop-loop {
	top: 122px !important;
}

body.candy-shop .woocommerce-result-count {
	margin: 0 !important;
	flex: 0 0 auto !important;
	white-space: nowrap !important;
}

body.candy-shop .candy-shop-toolbar-wrap {
	margin: 0 !important;
	flex: 1 1 auto !important;
	display: flex !important;
	justify-content: flex-end !important;
}

body.candy-shop .candy-shop-toolbar {
	display: flex !important;
	align-items: center !important;
	gap: 12px !important;
	flex-wrap: wrap !important;
}

body.candy-shop .site,
body.candy-shop .site-main,
body.candy-shop .content-area,
body.candy-shop .woocommerce,
body.candy-shop .elementor,
body.candy-shop .elementor-section,
body.candy-shop .elementor-container,
body.candy-shop .elementor-column,
body.candy-shop .elementor-widget-wrap,
body.candy-shop .elementor-widget-container {
	overflow: visible !important;
}

body.candy-shop.candy-quick-view-open {
	overflow: hidden;
}

body.candy-shop .candy-quick-view-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: grid;
	place-items: center;
	padding: 24px 16px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition:
		opacity 320ms ease,
		visibility 0s linear 520ms;
}

body.candy-shop .candy-quick-view-modal.is-open,
body.candy-shop .candy-quick-view-modal.is-closing {
	visibility: visible;
}

body.candy-shop .candy-quick-view-modal.is-open {
	opacity: 1;
	pointer-events: auto;
	transition:
		opacity 320ms ease,
		visibility 0s linear 0s;
}

body.candy-shop .candy-quick-view-modal.is-closing {
	opacity: 0;
	pointer-events: none;
	transition:
		opacity 360ms ease,
		visibility 0s linear 360ms;
}

body.candy-shop .candy-quick-view-modal__backdrop {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(
			circle at top,
			rgba(255, 255, 255, 0.12),
			rgba(255, 255, 255, 0) 42%
		),
		rgba(17, 24, 39, 0.36);
	backdrop-filter: blur(0px) saturate(1);
	-webkit-backdrop-filter: blur(0px) saturate(1);
	opacity: 0;
	transition:
		opacity 360ms ease,
		backdrop-filter 440ms ease,
		-webkit-backdrop-filter 440ms ease;
}

body.candy-shop .candy-quick-view-modal.is-open .candy-quick-view-modal__backdrop {
	opacity: 1;
	backdrop-filter: blur(9px) saturate(1.05);
	-webkit-backdrop-filter: blur(9px) saturate(1.05);
}

body.candy-shop .candy-quick-view-modal.is-closing .candy-quick-view-modal__backdrop {
	opacity: 0;
	backdrop-filter: blur(0px) saturate(1);
	-webkit-backdrop-filter: blur(0px) saturate(1);
}

body.candy-shop .candy-quick-view-modal__dialog {
	position: relative;
	width: min(980px, calc(100vw - 32px));
	max-height: min(calc(100vh - 48px), 900px);
	margin: 0 auto;
	background:
		linear-gradient(
			180deg,
			rgba(255, 255, 255, 0.96) 0%,
			rgba(255, 250, 252, 0.95) 42%,
			rgba(248, 244, 251, 0.96) 100%
		);
	border: 1px solid rgba(255, 255, 255, 0.6);
	border-radius: 24px;
	box-shadow:
		0 28px 70px rgba(0, 0, 0, 0.18),
		0 10px 28px rgba(255, 75, 110, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.82),
		inset 0 -22px 34px rgba(255, 255, 255, 0.12);
	overflow: auto;
	opacity: 0;
	transform: translate3d(0, 36px, 0) scale(0.962);
	transform-origin: center center;
	transition:
		transform 680ms cubic-bezier(0.16, 1, 0.3, 1),
		opacity 360ms ease,
		min-height 360ms cubic-bezier(0.16, 1, 0.3, 1),
		box-shadow 320ms ease;
	will-change: transform, opacity;
	isolation: isolate;
}

body.candy-shop .candy-quick-view-modal__dialog::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background:
		linear-gradient(
			180deg,
			rgba(255, 255, 255, 0.36) 0%,
			rgba(255, 255, 255, 0.12) 34%,
			rgba(255, 255, 255, 0.04) 100%
		);
	pointer-events: none;
	z-index: 0;
}

body.candy-shop .candy-quick-view-modal__dialog::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background:
		radial-gradient(
			circle at top right,
			rgba(255, 107, 138, 0.12),
			rgba(255, 107, 138, 0) 42%
		),
		radial-gradient(
			circle at bottom left,
			rgba(255, 75, 110, 0.07),
			rgba(255, 75, 110, 0) 40%
		);
	pointer-events: none;
	z-index: 0;
}

body.candy-shop .candy-quick-view-modal.is-open .candy-quick-view-modal__dialog {
	transform: translate3d(0, 0, 0) scale(1);
	opacity: 1;
}

body.candy-shop .candy-quick-view-modal.is-closing .candy-quick-view-modal__dialog {
	transform: translate3d(0, 18px, 0) scale(0.985);
	opacity: 0;
}

body.candy-shop .candy-quick-view-modal__dialog.is-settling {
	overflow: hidden;
}

body.candy-shop .candy-quick-view-modal__close {
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 3;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid rgba(255, 255, 255, 0.52);
	border-radius: 999px;
	background:
		linear-gradient(
			180deg,
			rgba(255, 255, 255, 0.8) 0%,
			rgba(255, 245, 247, 0.7) 100%
		);
	color: #d93c63;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.82),
		0 10px 20px rgba(17, 24, 39, 0.08);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	transition:
		transform 0.22s ease,
		box-shadow 0.22s ease,
		border-color 0.22s ease,
		background 0.22s ease;
}

body.candy-shop .candy-quick-view-modal__close:hover {
	transform: translateY(-1px) scale(1.02);
	border-color: rgba(255, 107, 138, 0.34);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.86),
		0 14px 24px rgba(255, 75, 110, 0.12);
}

body.candy-shop .candy-quick-view-modal__content {
	padding: 32px;
	position: relative;
	min-height: 320px;
	z-index: 1;
}

body.candy-shop .candy-quick-view-modal__content.is-loading {
	display: flex;
	align-items: center;
	justify-content: center;
}

body.candy-shop .candy-quick-view-modal__stage {
	opacity: 0;
	transform: translateY(22px) scale(0.992);
	transform-origin: center top;
	transition:
		opacity 480ms ease,
		transform 680ms cubic-bezier(0.16, 1, 0.3, 1);
	will-change: opacity, transform;
}

body.candy-shop .candy-quick-view-modal__content.is-ready .candy-quick-view-modal__stage {
	opacity: 1;
	transform: translateY(0) scale(1);
}

body.candy-shop .candy-quick-view-modal__content.is-swapping .candy-quick-view-modal__stage {
	opacity: 0;
	transform: translateY(14px) scale(0.995);
}

body.candy-shop .candy-quick-view {
	display: grid;
	grid-template-columns: minmax(280px, 430px) minmax(320px, 1fr);
	gap: 32px;
	align-items: start;
}

body.candy-shop .candy-quick-view__media {
	position: relative;
	overflow: hidden;
	border-radius: 20px;
	background:
		linear-gradient(
			180deg,
			rgba(255, 255, 255, 0.74) 0%,
			rgba(255, 247, 250, 0.68) 48%,
			rgba(246, 241, 249, 0.74) 100%
		);
	border: 1px solid rgba(255, 255, 255, 0.56);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.82),
		inset 0 -12px 22px rgba(255, 255, 255, 0.12),
		0 10px 28px rgba(17, 24, 39, 0.05);
}

body.candy-shop .candy-quick-view__media::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background:
		radial-gradient(
			circle at top,
			rgba(255, 255, 255, 0.52),
			rgba(255, 255, 255, 0) 56%
		);
	pointer-events: none;
	z-index: 0;
}

body.candy-shop .candy-quick-view__media img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 20px;
	transform: scale(1.05) translateY(10px);
	transform-origin: center center;
	opacity: 0.96;
	transition:
		transform 920ms cubic-bezier(0.16, 1, 0.3, 1),
		opacity 320ms ease,
		filter 360ms ease;
	will-change: transform, opacity;
	position: relative;
	z-index: 1;
}

body.candy-shop .candy-quick-view-modal__content.is-ready .candy-quick-view__media img {
	transform: scale(1.1) translateY(0);
	opacity: 1;
	filter: saturate(1.04) contrast(1.01);
}

body.candy-shop .candy-quick-view__summary {
	transform: translateY(12px);
	opacity: 0.96;
	transition:
		transform 660ms cubic-bezier(0.16, 1, 0.3, 1),
		opacity 320ms ease;
}

body.candy-shop .candy-quick-view-modal__content.is-ready .candy-quick-view__summary {
	transform: translateY(0);
	opacity: 1;
}

body.candy-shop .candy-quick-view__title {
	margin: 0 0 10px;
	font-size: 30px;
	line-height: 1.18;
	letter-spacing: -0.02em;
	color: #15151a;
}

body.candy-shop .candy-quick-view__price {
	margin-bottom: 14px;
	font-size: 21px;
	font-weight: 800;
	line-height: 1.3;
}

body.candy-shop .candy-quick-view__excerpt {
	margin-bottom: 20px;
	color: #4b5563;
	line-height: 1.65;
}

body.candy-shop .candy-quick-view__cart form.cart {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

body.candy-shop .candy-quick-view__cart .quantity {
	display: inline-flex;
	align-items: stretch;
	border: 1px solid rgba(255, 255, 255, 0.56);
	border-radius: 14px;
	overflow: hidden;
	background:
		linear-gradient(
			180deg,
			rgba(255, 255, 255, 0.86) 0%,
			rgba(255, 255, 255, 0.72) 100%
		);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.8),
		0 6px 16px rgba(17, 24, 39, 0.04);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

body.candy-shop .candy-quick-view__cart .quantity input.qty {
	width: 56px;
	height: 46px;
	border: 0 !important;
	box-shadow: none !important;
	text-align: center;
	padding: 0 !important;
	margin: 0 !important;
	background: transparent;
	-moz-appearance: textfield;
	appearance: textfield;
}

body.candy-shop .candy-quick-view__cart .quantity input.qty::-webkit-outer-spin-button,
body.candy-shop .candy-quick-view__cart .quantity input.qty::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

body.candy-shop .candy-quick-view__qty-btn {
	width: 42px;
	height: 46px;
	border: 0;
	background:
		linear-gradient(
			180deg,
			rgba(255, 245, 247, 0.96) 0%,
			rgba(255, 236, 241, 0.9) 100%
		);
	color: #d93c63;
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

body.candy-shop .candy-quick-view__qty-btn:hover {
	background:
		linear-gradient(
			180deg,
			rgba(255, 236, 241, 1) 0%,
			rgba(255, 226, 233, 0.96) 100%
		);
	color: #c52f56;
}

body.candy-shop .candy-quick-view__qty-btn:active {
	transform: scale(0.96);
}

body.candy-shop .candy-quick-view__submit,
body.candy-shop .candy-quick-view__view-product,
body.candy-shop .candy-quick-view__cart .single_add_to_cart_button {
	min-height: 46px;
}

body.candy-shop .candy-quick-view__cart .single_add_to_cart_button,
body.candy-shop .candy-quick-view__cart .button.alt,
body.candy-shop .candy-quick-view__submit {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	align-self: flex-start !important;
	width: auto !important;
	min-width: 0 !important;
	padding: 13px 22px !important;
	min-height: 46px !important;
	margin-top: 0 !important;
	border: 1px solid rgba(255, 255, 255, 0.18) !important;
	border-radius: 999px !important;
	background:
		linear-gradient(135deg, #ff4b6e 0%, #ff5f7f 48%, #ff7894 100%) !important;
	color: #ffffff !important;
	font-size: 14.5px !important;
	font-weight: 800 !important;
	letter-spacing: 0.02em !important;
	line-height: 1 !important;
	text-align: center !important;
	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
	box-shadow:
		0 12px 24px rgba(255, 75, 110, 0.22),
		0 4px 10px rgba(255, 107, 138, 0.12),
		inset 0 1px 0 rgba(255, 255, 255, 0.24),
		inset 0 -10px 18px rgba(191, 34, 77, 0.12) !important;
	transition:
		transform 0.22s ease,
		box-shadow 0.22s ease,
		filter 0.22s ease,
		background 0.22s ease,
		border-color 0.22s ease !important;
	position: relative;
	overflow: hidden;
	isolation: isolate;
}

body.candy-shop .candy-quick-view__cart .single_add_to_cart_button::before,
body.candy-shop .candy-quick-view__cart .button.alt::before,
body.candy-shop .candy-quick-view__submit::before {
	content: "";
	position: absolute;
	inset: 1px;
	border-radius: inherit;
	background:
		linear-gradient(
			180deg,
			rgba(255, 255, 255, 0.24) 0%,
			rgba(255, 255, 255, 0.1) 38%,
			rgba(255, 255, 255, 0) 100%
		);
	opacity: 0.95;
	pointer-events: none;
	z-index: 0;
}

body.candy-shop .candy-quick-view__cart .single_add_to_cart_button::after,
body.candy-shop .candy-quick-view__cart .button.alt::after,
body.candy-shop .candy-quick-view__submit::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: -32%;
	width: 34%;
	background: linear-gradient(
		120deg,
		rgba(255, 255, 255, 0) 0%,
		rgba(255, 255, 255, 0.18) 50%,
		rgba(255, 255, 255, 0) 100%
	);
	transform: skewX(-20deg) translateX(-180%);
	transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
	pointer-events: none;
	z-index: 0;
}

body.candy-shop .candy-quick-view__cart .single_add_to_cart_button:hover,
body.candy-shop .candy-quick-view__cart .button.alt:hover,
body.candy-shop .candy-quick-view__submit:hover {
	transform: translateY(-2px);
	color: #ffffff !important;
	border-color: rgba(255, 255, 255, 0.22) !important;
	box-shadow:
		0 16px 30px rgba(255, 75, 110, 0.28),
		0 6px 14px rgba(255, 107, 138, 0.16),
		inset 0 1px 0 rgba(255, 255, 255, 0.26),
		inset 0 -10px 18px rgba(191, 34, 77, 0.14) !important;
	filter: saturate(1.04) brightness(1.02);
}

body.candy-shop .candy-quick-view__cart .single_add_to_cart_button:hover::after,
body.candy-shop .candy-quick-view__cart .button.alt:hover::after,
body.candy-shop .candy-quick-view__submit:hover::after {
	transform: skewX(-20deg) translateX(420%);
}

body.candy-shop .candy-quick-view__cart .single_add_to_cart_button.is-added-feedback,
body.candy-shop .candy-quick-view__cart .button.alt.is-added-feedback,
body.candy-shop .candy-quick-view__submit.is-added-feedback {
	background: linear-gradient(135deg, #08a05c 0%, #1bb56f 52%, #2ccc82 100%) !important;
	border-color: rgba(255, 255, 255, 0.18) !important;
	box-shadow:
		0 12px 24px rgba(8, 160, 92, 0.24),
		0 4px 10px rgba(32, 191, 120, 0.12),
		inset 0 1px 0 rgba(255, 255, 255, 0.22),
		inset 0 -10px 18px rgba(7, 122, 71, 0.12) !important;
	transform: translateY(-2px);
}

body.candy-shop .candy-quick-view__cart .single_add_to_cart_button.is-resetting,
body.candy-shop .candy-quick-view__cart .button.alt.is-resetting,
body.candy-shop .candy-quick-view__submit.is-resetting {
	transition:
		background 220ms ease,
		box-shadow 220ms ease,
		transform 220ms ease,
		color 220ms ease,
		border-color 220ms ease !important;
}

body.candy-shop .candy-quick-view__cart .single_add_to_cart_button.is-added-feedback::before,
body.candy-shop .candy-quick-view__cart .button.alt.is-added-feedback::before,
body.candy-shop .candy-quick-view__submit.is-added-feedback::before {
	content: "";
	position: absolute;
	inset: 1px;
	border-radius: inherit;
	background:
		linear-gradient(
			180deg,
			rgba(255, 255, 255, 0.26) 0%,
			rgba(255, 255, 255, 0.1) 38%,
			rgba(255, 255, 255, 0) 100%
		);
	opacity: 1;
	pointer-events: none;
	z-index: 0;
}

body.candy-shop .candy-quick-view__cart .single_add_to_cart_button.is-added-feedback::after,
body.candy-shop .candy-quick-view__cart .button.alt.is-added-feedback::after,
body.candy-shop .candy-quick-view__submit.is-added-feedback::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: -32%;
	width: 34%;
	background: linear-gradient(
		120deg,
		rgba(255,255,255,0) 0%,
		rgba(255,255,255,0.22) 50%,
		rgba(255,255,255,0) 100%
	);
	transform: skewX(-20deg) translateX(-180%);
	animation: candyButtonSheenSweep 560ms ease;
	pointer-events: none;
	z-index: 0;
}

body.candy-shop .candy-quick-view-modal__loading,
body.candy-shop .candy-quick-view-modal__error {
	width: 100%;
	padding: 40px 12px;
	text-align: center;
}

body.candy-shop .candy-quick-view-modal__loading {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 240px;
	color: #4b5563;
	font-weight: 600;
}

body.candy-shop .candy-quick-view-modal__loading::before {
	content: "";
	width: 20px;
	height: 20px;
	margin-right: 10px;
	border-radius: 999px;
	border: 2px solid rgba(255, 75, 110, 0.18);
	border-top-color: rgba(255, 75, 110, 0.9);
	animation: candyQuickViewSpin 0.8s linear infinite;
}

body.candy-shop .candy-quick-view__cart .single_add_to_cart_button.is-added-feedback::before,
body.candy-shop .candy-quick-view__cart .button.alt.is-added-feedback::before,
body.candy-shop .candy-quick-view__submit.is-added-feedback::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		120deg,
		rgba(255,255,255,0) 0%,
		rgba(255,255,255,0.22) 45%,
		rgba(255,255,255,0) 100%
	);
	transform: translateX(-130%);
	animation: candyButtonSheen 520ms ease;
	pointer-events: none;
}

body.candy-shop .candy-quick-view-modal__loading,
body.candy-shop .candy-quick-view-modal__error {
	width: 100%;
	padding: 40px 12px;
	text-align: center;
}

body.candy-shop .candy-quick-view-modal__loading {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 240px;
	color: #4b5563;
	font-weight: 600;
}

body.candy-shop .candy-quick-view-modal__loading::before {
	content: "";
	width: 20px;
	height: 20px;
	margin-right: 10px;
	border-radius: 999px;
	border: 2px solid rgba(255, 75, 110, 0.18);
	border-top-color: rgba(255, 75, 110, 0.9);
	animation: candyQuickViewSpin 0.8s linear infinite;
}

@keyframes candyQuickViewSpin {
	to {
		transform: rotate(360deg);
	}
}

body.candy-shop .candy-shop-actions {
	display: flex !important;
	align-items: center !important;
	gap: 10px !important;
	flex-wrap: wrap !important;
	width: 100% !important;
	order: 4 !important;
}

body.candy-shop .candy-shop-actions > .button,
body.candy-shop .candy-shop-actions > a.button,
body.candy-shop .candy-shop-actions > button.button,
body.candy-shop .candy-shop-actions > a.add_to_cart_button,
body.candy-shop .candy-shop-actions > a.ajax_add_to_cart,
body.candy-shop .candy-shop-actions > .candy-quick-view__trigger {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: auto !important;
	min-width: 0 !important;
	margin: 0 !important;
	float: none !important;
	clear: none !important;
	position: static !important;
	left: auto !important;
	top: auto !important;
	opacity: 1 !important;
	transform: none !important;
	pointer-events: auto !important;
	align-self: flex-start !important;
	font-size: 14px !important;
	font-weight: 800 !important;
	padding: 12px 20px !important;
	min-height: 44px !important;
	line-height: 1 !important;
}

body.candy-shop .candy-shop-actions .candy-quick-view__trigger {
	margin-right: 0 !important;
}

body.candy-shop ul.products li.product > .candy-shop-actions {
	width: 100% !important;
	clear: none !important;
}

body.candy-shop ul.products li.product a.added_to_cart {
	display: none !important;
}

body.candy-shop ul.products li.product {
	border-color: rgba(231, 220, 236, 0.92) !important;
}

body.candy-shop ul.products li.product:hover {
	border-color: rgba(255, 107, 138, 0.18) !important;
}

body.candy-shop .woocommerce-before-shop-loop {
	position: sticky !important;
	top: 90px !important;
	z-index: 999 !important;

	background: rgba(248, 246, 251, 0.34) !important;
	backdrop-filter: blur(22px) saturate(1.35) !important;
	-webkit-backdrop-filter: blur(22px) saturate(1.35) !important;

	border: 1px solid rgba(255, 255, 255, 0.52) !important;
	border-radius: 18px !important;

	box-shadow:
		0 12px 30px rgba(15, 23, 42, 0.07),
		0 4px 14px rgba(255, 75, 110, 0.05),
		inset 0 1px 0 rgba(255, 255, 255, 0.72) !important;

	padding: 12px 16px 28px !important;
	margin-bottom: 0 !important;

	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 20px !important;
	flex-wrap: wrap !important;
}

@media (max-width: 782px) {
	body.admin-bar.candy-shop .woocommerce-before-shop-loop {
		top: 126px !important;
	}
}

@media (max-width: 768px) {
	body.candy-shop .woocommerce-before-shop-loop {
		flex-direction: column !important;
		align-items: stretch !important;
	}

	body.candy-shop .candy-shop-toolbar-wrap {
		justify-content: flex-start !important;
		width: 100% !important;
	}
}

@media (max-width: 767px) {
	body.candy-shop .candy-quick-view-modal {
		padding: 8px;
	}

	body.candy-shop .candy-quick-view-modal__dialog {
		width: calc(100vw - 16px);
		max-height: calc(100vh - 16px);
		border-radius: 16px;
	}

	body.candy-shop .candy-quick-view-modal__content {
		padding: 20px;
		min-height: 260px;
	}

	body.candy-shop .candy-quick-view {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	body.candy-shop .candy-quick-view__cart form.cart {
		align-items: stretch;
	}

	body.candy-shop .candy-quick-view__cart .quantity {
		width: auto;
	}

	body.candy-shop .candy-quick-view__cart .single_add_to_cart_button {
		flex: 0 0 auto;
	}
}

@media (prefers-reduced-motion: reduce) {
	body.candy-shop .candy-quick-view-modal,
	body.candy-shop .candy-quick-view-modal__backdrop,
	body.candy-shop .candy-quick-view-modal__dialog,
	body.candy-shop .candy-quick-view-modal__content,
	body.candy-shop .candy-quick-view-modal__close,
	body.candy-shop .candy-quick-view-modal__loading::before,
	body.candy-shop .candy-quick-view-modal__stage,
	body.candy-shop .candy-quick-view-modal__content.is-ready .candy-quick-view-modal__stage,
	body.candy-shop .candy-quick-view-modal__content.is-swapping .candy-quick-view-modal__stage,
	body.candy-shop .candy-quick-view-modal__dialog.is-settling,
	body.candy-shop .candy-quick-view__qty-btn,
	body.candy-shop .candy-quick-view__media img,
	body.candy-shop .candy-quick-view__summary,
	body.candy-shop .woocommerce-notices-wrapper .woocommerce-message,
	body.candy-shop .woocommerce-notices-wrapper .woocommerce-error,
	body.candy-shop .woocommerce-notices-wrapper .woocommerce-info {
		transition: none !important;
		transform: none !important;
		animation: none !important;
	}
}

/* glossy surface */
body.candy-shop .woocommerce-before-shop-loop::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background:
		linear-gradient(
			180deg,
			rgba(255, 255, 255, 0.4) 0%,
			rgba(255, 255, 255, 0.16) 34%,
			rgba(255, 255, 255, 0.04) 100%
		);
	pointer-events: none;
	z-index: 0;
}

/* soft pink glass glow */
body.candy-shop .woocommerce-before-shop-loop::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background:
		radial-gradient(
			circle at top right,
			rgba(255, 107, 138, 0.12),
			rgba(255, 107, 138, 0.00) 42%
		),
		radial-gradient(
			circle at bottom left,
			rgba(255, 75, 110, 0.08),
			rgba(255, 75, 110, 0.00) 40%
		);
	pointer-events: none;
	z-index: 0;
}

/* keep toolbar content above glass layers */
body.candy-shop .woocommerce-before-shop-loop > * {
	position: relative;
	z-index: 1;
}

/* glossy surface */
body.candy-shop .woocommerce-before-shop-loop::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background:
		linear-gradient(
			180deg,
			rgba(255, 255, 255, 0.42) 0%,
			rgba(255, 255, 255, 0.16) 38%,
			rgba(255, 255, 255, 0.06) 100%
		);
	pointer-events: none;
}

/* soft pink glass glow */
body.candy-shop .woocommerce-before-shop-loop::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background:
		radial-gradient(
			circle at top right,
			rgba(255, 107, 138, 0.10),
			rgba(255, 107, 138, 0.00) 42%
		),
		radial-gradient(
			circle at bottom left,
			rgba(255, 75, 110, 0.08),
			rgba(255, 75, 110, 0.00) 40%
		);
	pointer-events: none;
}

/* keep toolbar content above glass layers */
body.candy-shop .woocommerce-before-shop-loop > * {
	position: relative;
	z-index: 1;
}

/* =========================================
   INFINITE SCROLL – KEEP TRIGGER, HIDE UI
========================================= */

body.candy-shop .shop-load-more-area {
	position: relative !important;
	margin: 0 !important;
	padding: 0 !important;
	height: 1px !important;
	min-height: 1px !important;
	overflow: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

body.candy-shop .shop-load-more-area .js-shop-load-more,
body.candy-shop .shop-load-more-area .js-shop-load-more-status {
	display: block !important;
	visibility: hidden !important;
	opacity: 0 !important;
	height: 0 !important;
	min-height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	overflow: hidden !important;
	pointer-events: none !important;
}

/* Empty search state – larger message */
body.candy-shop .candy-shop-empty-search__text--large {
	font-size: 22px;
	line-height: 1.5;
	font-weight: 600;
}

/* Premium empty search state */
body.candy-shop .candy-shop-empty-search {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 48px 24px;
	min-height: 230px;
	border-radius: 22px;
	background:
		linear-gradient(
			180deg,
			rgba(255, 255, 255, 0.78) 0%,
			rgba(255, 248, 251, 0.72) 48%,
			rgba(247, 243, 250, 0.76) 100%
		);
	border: 1px solid rgba(231, 220, 236, 0.92);
	box-shadow:
		0 18px 38px rgba(17, 24, 39, 0.06),
		0 6px 18px rgba(255, 75, 110, 0.05),
		inset 0 1px 0 rgba(255, 255, 255, 0.72),
		inset 0 -18px 32px rgba(255, 255, 255, 0.16);
	backdrop-filter: blur(12px) saturate(1.08);
	-webkit-backdrop-filter: blur(12px) saturate(1.08);
}

body.candy-shop .candy-shop-empty-search__text--large {
	margin: 0 0 22px;
	font-size: 22px;
	line-height: 1.5;
	font-weight: 700;
	color: #374151;
	max-width: 760px;
}

body.candy-shop .candy-shop-empty-search__actions {
	display: flex;
	align-items: center;
	justify-content: center;
}

body.candy-shop .candy-shop-empty-search__back {
	min-width: 140px;
}

body.candy-shop .product--empty {
	grid-column: 1 / -1;
	list-style: none;
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
}

body.candy-shop .product--empty::before,
body.candy-shop .product--empty::after {
	display: none !important;
	content: none !important;
}

@media (max-width: 767px) {
	body.candy-shop .candy-shop-empty-search {
		padding: 34px 18px;
		min-height: 190px;
		border-radius: 18px;
	}

	body.candy-shop .candy-shop-empty-search__text--large {
		font-size: 18px;
		line-height: 1.45;
	}
}

/* Quick View button – white style */
body.candy-shop .candy-shop-actions .candy-shop-btn--secondary {
	background: #ffffff;
	color: #111827;
	border: 1px solid rgba(0, 0, 0, 0.06);

	box-shadow:
		0 6px 14px rgba(0, 0, 0, 0.06),
		inset 0 1px 0 rgba(255, 255, 255, 0.6);

	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

/* Hover */
body.candy-shop .candy-shop-actions .candy-shop-btn--secondary:hover {
	background: #f9fafb;
	transform: translateY(-1px);
}

/* Mini cart scroll area spacing */
body .elementor-menu-cart__products {
	padding-bottom: 140px; /* creates space above buttons */
}

/* Cross-sell section – move up */
body .elementor-menu-cart__footer .woocommerce-mini-cart__cross-sells,
body .elementor-menu-cart__footer .cross-sells {
	margin-top: -20px;
	margin-bottom: 20px;
}

/* Optional: tighten cross-sell card spacing */
body .elementor-menu-cart__footer .cross-sells li {
	margin-bottom: 10px;
}

/* =========================================================
   QUICK VIEW BUTTON - FORCE WHITE STYLE ON SHOP + HOME
   ========================================================= */

.candy-shop-actions .candy-shop-btn--secondary.candy-quick-view__trigger,
.candy-shop-actions > .candy-quick-view__trigger,
.candy-shop-actions > button.candy-shop-btn--secondary,
.candy-shop-actions > .button.candy-shop-btn--secondary {
	background:
		linear-gradient(
			180deg,
			rgba(255, 255, 255, 0.92) 0%,
			rgba(255, 248, 251, 0.88) 100%
		) !important;
	color: #d93c63 !important;
	border: 1px solid rgba(255, 213, 222, 0.8) !important;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.82),
		0 8px 18px rgba(17, 24, 39, 0.06),
		0 4px 12px rgba(255, 75, 110, 0.05) !important;
	text-shadow: none !important;
	filter: none !important;
}

.candy-shop-actions .candy-shop-btn--secondary.candy-quick-view__trigger::before,
.candy-shop-actions > .candy-quick-view__trigger::before,
.candy-shop-actions > button.candy-shop-btn--secondary::before,
.candy-shop-actions > .button.candy-shop-btn--secondary::before {
	background:
		linear-gradient(
			180deg,
			rgba(255, 255, 255, 0.6) 0%,
			rgba(255, 255, 255, 0.18) 100%
		) !important;
	opacity: 1 !important;
}

.candy-shop-actions .candy-shop-btn--secondary.candy-quick-view__trigger::after,
.candy-shop-actions > .candy-quick-view__trigger::after,
.candy-shop-actions > button.candy-shop-btn--secondary::after,
.candy-shop-actions > .button.candy-shop-btn--secondary::after {
	display: none !important;
	content: none !important;
}

.candy-shop-actions .candy-shop-btn--secondary.candy-quick-view__trigger:hover,
.candy-shop-actions > .candy-quick-view__trigger:hover,
.candy-shop-actions > button.candy-shop-btn--secondary:hover,
.candy-shop-actions > .button.candy-shop-btn--secondary:hover {
	background:
		linear-gradient(
			180deg,
			rgba(255, 255, 255, 0.98) 0%,
			rgba(255, 245, 247, 0.94) 100%
		) !important;
	color: #c52f56 !important;
	border-color: rgba(255, 107, 138, 0.34) !important;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.88),
		0 12px 22px rgba(255, 75, 110, 0.08) !important;
	transform: translateY(-1px) !important;
	filter: none !important;
}

