/* Sticky Add to Cart - minimal styling */
.satc-bar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	background: #fff;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
	border-top: 1px solid rgba(0, 0, 0, 0.06);
	transform: translateY(100%);
	transition: transform 0.25s ease-out;
	will-change: transform;
	pointer-events: none;
	font-family: var(--et_global_body_font, inherit);
}

.satc-bar.is-visible {
	transform: translateY(0);
	pointer-events: auto;
}

.satc-bar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	max-width: 1500px;
	margin: 0 auto;
	padding: 12px 24px;
}

.satc-bar__info {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	min-width: 0;
	gap: 2px;
}

.satc-bar__title {
	font-size: 15px;
	font-weight: 600;
	line-height: 1.3;
	color: #333;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.satc-bar__price {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--gcid-primary-color, #2ea3f2);
}

.satc-bar__price del {
	opacity: 0.5;
	font-weight: 400;
	margin-right: 6px;
	color: inherit;
}

.satc-bar__price ins {
	text-decoration: none;
}

.satc-bar__variation {
	flex: 0 1 220px;
	min-width: 140px;
}

.satc-bar__select {
	width: 100%;
	padding: 10px 12px;
	font-size: 14px;
	font-family: inherit;
	line-height: 1.2;
	border: 1px solid rgba(0, 0, 0, 0.15);
	border-radius: 4px;
	background: #fff;
	color: #333;
	cursor: pointer;
}

.satc-bar__select:focus {
	outline: none;
	border-color: var(--gcid-primary-color, #2ea3f2);
	box-shadow: 0 0 0 2px rgba(46, 163, 242, 0.15);
}

.satc-bar__btn {
	flex: 0 0 auto;
	padding: 12px 26px;
	font-size: 20px;
	font-weight: 600;
	font-family: inherit;
	line-height: 1;
	border: none;
	border-radius: 4px;
	background: var(--gcid-primary-color, #2ea3f2);
	color: #fff;
	cursor: pointer;
	transition: opacity 0.15s ease, transform 0.05s ease;
}

.satc-bar__btn:hover {
	opacity: 0.9;
}

.satc-bar__btn:active {
	transform: scale(0.98);
}

.satc-bar__btn[disabled] {
	opacity: 0.5;
	cursor: not-allowed;
}

/* Mobiel: titel + prijs op rij 1, knop full-width op rij 2 */
@media (max-width: 768px) {
	.satc-bar__inner {
		display: grid;
		grid-template-columns: 1fr auto;
		grid-template-areas:
			"info info"
			"variation variation"
			"button button";
		gap: 8px 12px;
		padding: 10px 14px;
	}

	.satc-bar__info {
		grid-area: info;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
	}

	.satc-bar__title {
		font-size: 14px;
		flex: 1 1 auto;
	}

	.satc-bar__price {
		font-size: 15px;
		flex: 0 0 auto;
		text-align: right;
	}

	.satc-bar__variation {
		grid-area: variation;
		flex: 1 1 100%;
	}

	.satc-bar__btn {
		grid-area: button;
		width: 100%;
		padding: 13px 16px;
		font-size: 15px;
	}
}
