/* Sticky Add-to-Cart — bară fixă jos, doar mobil (≤767px), pagina de produs.
   Tokeni: galben #FFD14D, charcoal #1E1E1E, coral #E95C20 (preț redus). */

.cioco-sticky-atc {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9990; /* sub lightbox-ul PhotoSwipe (10000+), peste conținut */
	display: none;
	align-items: center;
	gap: 12px;
	padding: 10px 16px;
	padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
	background: #fff;
	box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.12);
	transform: translateY(100%);
	transition: transform 0.25s ease;
}

.cioco-sticky-atc.is-visible {
	transform: translateY(0);
}

.cioco-sticky-atc__price {
	flex: 0 1 auto;
	min-width: 0;
	font-weight: 700;
	font-size: 18px;
	line-height: 22px;
	color: #1e1e1e;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* la reducere: nou coral, vechi tăiat mic gri (ca în buy-box) */
.cioco-sticky-atc__price ins { text-decoration: none; color: #e95c20; }
.cioco-sticky-atc__price del {
	font-weight: 400;
	font-size: 13px;
	color: #8f8f8f;
}

/* clona CTA-ului din buy-box (style.css #brxe-019d40 .single_add_to_cart_button):
   galben + text charcoal centrat + pătrat navy cu sac crem lipit dreapta */
.cioco-sticky-atc__button {
	position: relative;
	box-sizing: border-box;
	flex: 1 1 auto;
	height: 44px;
	margin: 0;
	padding: 0 56px 0 12px;   /* 44px pătratul + spațiu */
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: none;
	border-radius: 0;
	background: #ffd14d;
	color: #1e1e1e;
	font-weight: 700;
	font-size: 13px;
	line-height: 18px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	cursor: pointer;
}

.cioco-sticky-atc__button::after {
	content: "";
	position: absolute;
	top: 0; right: 0; bottom: 0;
	width: 44px;
	background: #174078 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F2EFDA' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 2 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4z'/%3E%3Cline x1='3' y1='6' x2='21' y2='6'/%3E%3Cpath d='M16 10a4 4 0 0 1-8 0'/%3E%3C/svg%3E") center / 20px 20px no-repeat;
}

.cioco-sticky-atc__button:active { background: #f4c02f; }

@media (max-width: 767px) {
	.cioco-sticky-atc { display: flex; }
}
