/**
 * Sticky Add to Bag bar (single product).
 */

.aura-sticky-atc {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10050;
	padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
	background: #ffffff;
	box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
	transform: translateY(110%);
	opacity: 0;
	pointer-events: none;
	transition: transform 0.28s ease, opacity 0.28s ease;
}

.aura-sticky-atc:not([hidden]) {
	transform: translateY(0);
	opacity: 1;
	pointer-events: auto;
}

.aura-sticky-atc__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	width: 100%;
	min-height: 52px;
	margin: 0;
	padding: 14px 20px;
	border: 0;
	border-radius: 0;
	background: #1a1c1c;
	color: #ffffff;
	font-family: "Montserrat", sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.2;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.15s ease;
}

.aura-sticky-atc__btn:hover,
.aura-sticky-atc__btn:focus-visible {
	background: #2e2a2a;
	outline: none;
}

.aura-sticky-atc__btn:active {
	transform: scale(0.99);
}

.aura-sticky-atc__label,
.aura-sticky-atc__sep,
.aura-sticky-atc__price {
	color: inherit;
	font: inherit;
	letter-spacing: inherit;
	text-transform: uppercase;
}

.aura-sticky-atc__price,
.aura-sticky-atc__price .amount,
.aura-sticky-atc__price .woocommerce-Price-amount,
.aura-sticky-atc__price bdi {
	color: inherit !important;
	font: inherit !important;
	font-weight: 700 !important;
}

.aura-sticky-atc__price del,
.aura-sticky-atc__price del .amount {
	opacity: 0.65;
	font-size: 0.9em;
	margin-right: 0.35em;
}

.aura-sticky-atc__price ins {
	text-decoration: none;
	background: transparent;
}

/* Space so content isn't covered when the bar is visible */
body.aura-sticky-atc-visible.single-product {
	padding-bottom: 72px;
}

/* Highlight prompt on variation / size picker */
.aura-sticky-atc-highlight {
	position: relative;
	outline: 2px solid #1a1c1c;
	outline-offset: 6px;
	border-radius: 2px;
	animation: aura-sticky-atc-pulse 1.2s ease 2;
}

.aura-sticky-atc-prompt {
	margin: 0 0 10px;
	padding: 8px 12px;
	background: #1a1c1c;
	color: #ffffff;
	font-family: "Montserrat", sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	line-height: 1.4;
}

@keyframes aura-sticky-atc-pulse {
	0%,
	100% {
		outline-color: #1a1c1c;
	}
	50% {
		outline-color: #7a5761;
	}
}

@media (min-width: 1000px) {
	.aura-sticky-atc {
		padding-inline: max(12px, calc((100vw - 1296px) / 2 + 12px));
	}

	.aura-sticky-atc__btn {
		max-width: 560px;
		margin-inline: auto;
	}
}
