.lshop-bulk-wrap {
	margin: 1rem 0 1.5rem;
	padding: .75rem 1rem;
	border: 1px dashed #ddd;
	border-radius: 8px;
	background: #fafafa;
	max-width: 100%;
	box-sizing: border-box;
}

.lshop-bulk-label {
	font-size: .8rem;
	text-transform: uppercase;
	letter-spacing: .05em;
	margin-bottom: .5rem;
	opacity: .75;
}

.lshop-bulk-boxes {
	display: flex;
	gap: .75rem;
	flex-wrap: wrap;
	max-width: 100%;
}

.lshop-bulk-box {
	flex: 1 1 0;
	min-width: 0;
	padding: .9rem 1rem;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	cursor: pointer;
	background: #fff;
	transition: box-shadow .15s ease, border-color .15s ease, transform .15s ease, background .15s ease;
	font-size: .9rem;
	box-sizing: border-box;
}

.lshop-bulk-box__header {
	font-weight: 700;
	margin-bottom: .4rem;
	font-size: .9rem;
}

.lshop-bulk-box__body {
	font-size: .85rem;
	line-height: 1.4;
}

.lshop-bulk-box__text {
	margin-bottom: .35rem;
}

.lshop-bulk-price-row {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	column-gap: .5rem;
	row-gap: .1rem;
	min-width: 0;
	margin: .3rem 0 .5rem;
}

/*
 * Hinnad on teadlikult tugevalt scope'itud LSHOP komponendi alla.
 * Mõned teemad kasutavad globaalseid reegleid nagu .amount { font-size: 22px; },
 * mis muidu kirjutaksid wc_price() loodud sisemise elemendi suuruse üle.
 */
.lshop-bulk-wrap .lshop-bulk-price-new {
	display: inline-block;
	font-size: .95rem !important;
	font-weight: 700 !important;
	line-height: 1.25 !important;
	color: inherit !important;
	white-space: nowrap;
}

.lshop-bulk-wrap .lshop-bulk-price-old {
	display: inline-block;
	font-size: .8rem !important;
	font-weight: 400 !important;
	line-height: 1.25 !important;
	color: inherit !important;
	text-decoration: line-through;
	opacity: .7;
	white-space: nowrap;
}

.lshop-bulk-wrap .lshop-bulk-price-new .woocommerce-Price-amount,
.lshop-bulk-wrap .lshop-bulk-price-new .amount,
.lshop-bulk-wrap .lshop-bulk-price-new .woocommerce-Price-currencySymbol,
.lshop-bulk-wrap .lshop-bulk-price-old .woocommerce-Price-amount,
.lshop-bulk-wrap .lshop-bulk-price-old .amount,
.lshop-bulk-wrap .lshop-bulk-price-old .woocommerce-Price-currencySymbol {
	font-size: inherit !important;
	font-weight: inherit !important;
	line-height: inherit !important;
	color: inherit !important;
	letter-spacing: normal !important;
}

.lshop-bulk-add-button {
	display: inline-block;
	margin-top: .1rem;
	padding: .35rem .8rem;
	border-radius: 999px;
	border: 1px solid #000;
	background: #000;
	color: #fff;
	font-size: .8rem;
	text-transform: uppercase;
	letter-spacing: .05em;
	cursor: pointer;
	transition: background .15s ease, color .15s ease;
}

.lshop-bulk-add-button:hover {
	background: #fff;
	color: #000;
}

.lshop-bulk-popular-footer {
	margin-top: .4rem;
}

.lshop-bulk-badge-popular {
	font-size: .78rem;
	padding: 2px 6px 2px 4px;
	border-radius: 999px;
	border: 1px solid #27ae60;
	display: inline-flex;
	align-items: center;
	gap: .3rem;
	background: linear-gradient(135deg, #e3f9e5, #c8f3d0);
	color: #145a32;
	white-space: nowrap;
}

.lshop-bulk-badge-popular .fa-star {
	font-size: .85rem;
	color: #27ae60;
}

.lshop-bulk-box.active {
	border-color: #000;
	box-shadow: 0 0 0 1px #000;
}

.lshop-bulk-box.is-popular {
	background: linear-gradient(135deg, #fff9e6, #ffe7c2);
	border-color: #f0b400;
	box-shadow: 0 4px 12px rgba(0,0,0,.06);
	transform: translateY(-1px);
}

.lshop-bulk-box.is-popular.active {
	box-shadow: 0 0 0 1px #f0b400, 0 6px 14px rgba(0,0,0,.08);
}

@media (max-width: 768px) {
	.lshop-bulk-wrap {
		padding-left: .75rem;
		padding-right: .75rem;
	}

	.lshop-bulk-boxes {
		flex-wrap: nowrap;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scroll-snap-type: x mandatory;
		padding-bottom: .4rem;
	}

	.lshop-bulk-box {
		flex: 0 0 42%;
		max-width: 260px;
		margin-top: 10px;
		scroll-snap-align: start;
	}

	.lshop-bulk-boxes::-webkit-scrollbar {
		height: 4px;
	}

	.lshop-bulk-boxes::-webkit-scrollbar-thumb {
		background: rgba(0,0,0,.15);
		border-radius: 1px;
	}
}
