/* EK interaction hotfix: keep only the requested pointer affordance. */
body.ekcs-site-ek :is(
	.single_add_to_cart_button,
	.product-loop-button-atc,
	.ekcs-card-action,
	.ekcs-sticky-purchase__button
):not(:disabled):not([aria-disabled="true"]) {
	cursor: pointer !important;
}

.ekcs-cart-charm {
	position: fixed;
	z-index: 100020;
	display: grid;
	width: 34px;
	height: 34px;
	margin: 0;
	padding: 0;
	place-items: center;
	pointer-events: none;
	will-change: transform, opacity;
}
.ekcs-cart-charm__parcel {
	position: relative;
	display: grid;
	width: 30px;
	height: 30px;
	place-items: center;
	border: 1px solid #8b7658;
	border-radius: 3px;
	background: #f7f4ef;
	box-shadow: 0 5px 12px rgba(35,31,27,.16);
	color: #1a1714;
	font: 600 10px/1 Georgia, serif;
	letter-spacing: .04em;
	transform: rotate(45deg);
}
.ekcs-cart-charm__parcel::before,
.ekcs-cart-charm__parcel::after {
	position: absolute;
	background: #9c8a6e;
	content: "";
}
.ekcs-cart-charm__parcel::before {
	top: -1px;
	bottom: -1px;
	left: 50%;
	width: 1px;
}
.ekcs-cart-charm__parcel::after {
	top: 50%;
	right: -1px;
	left: -1px;
	height: 1px;
}
.ekcs-cart-charm__parcel > span {
	position: relative;
	z-index: 1;
	display: grid;
	width: 14px;
	height: 14px;
	place-items: center;
	border: 1px solid #9c8a6e;
	border-radius: 50%;
	background: #fffdf9;
	transform: rotate(-45deg);
}

@media (prefers-reduced-motion: reduce) {
	.ekcs-cart-charm { display: none !important; }
}

/* PDP controls: restrained lift on hover, tactile compression on press. */
body.ekcs-ek-owned-pdp .ekcs-ek-pdp__summary :is(button,.button,[role="button"]),
body.ekcs-ek-owned-pdp :is(.ekcs-owned-gallery__zoom,.ekcs-owned-gallery__prev,.ekcs-owned-gallery__next) {
	transform-origin: center;
	transition: transform .18s cubic-bezier(.2,.75,.25,1), background-color .18s ease, border-color .18s ease !important;
}
body.ekcs-ek-owned-pdp .ekcs-ek-pdp__summary :is(button,.button,[role="button"]):not(:disabled):not([aria-disabled="true"]):hover {
	transform: translateY(-2px);
}
body.ekcs-ek-owned-pdp .ekcs-ek-pdp__summary :is(button,.button,[role="button"]):not(:disabled):not([aria-disabled="true"]):active {
	transform: translateY(0) scale(.97);
	transition-duration: .08s !important;
}
body.ekcs-ek-owned-pdp .ekcs-ek-pdp__summary .ekcs-product-qty:not(:disabled):hover,
body.ekcs-ek-owned-pdp :is(.ekcs-owned-gallery__zoom,.ekcs-owned-gallery__prev,.ekcs-owned-gallery__next):not(:disabled):hover {
	transform: scale(1.07);
}
body.ekcs-ek-owned-pdp .ekcs-ek-pdp__summary .ekcs-product-qty:not(:disabled):active,
body.ekcs-ek-owned-pdp :is(.ekcs-owned-gallery__zoom,.ekcs-owned-gallery__prev,.ekcs-owned-gallery__next):not(:disabled):active {
	transform: scale(.92);
	transition-duration: .08s !important;
}

@media (prefers-reduced-motion: reduce) {
	body.ekcs-ek-owned-pdp .ekcs-ek-pdp__summary :is(button,.button,[role="button"]),
	body.ekcs-ek-owned-pdp :is(.ekcs-owned-gallery__zoom,.ekcs-owned-gallery__prev,.ekcs-owned-gallery__next) {
		transition-duration: .01ms !important;
		transform: none !important;
	}
}
