/* Elush Bundles — front-end (bundle box). Astra-friendly, theme-overridable. */

.elush-boxes {
	margin: 20px 0;
}
.elush-box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
	padding: 18px;
	margin: 0 0 16px;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 1px 3px rgba( 0, 0, 0, 0.04 );
}
.elush-box-products {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 10px;
	flex: 1 1 60%;
}
.elush-box-product {
	position: relative;
	width: 120px;
	text-align: center;
}
.elush-box-thumb img {
	width: 100%;
	height: auto;
	border-radius: 10px;
	display: block;
}
.elush-box-badge {
	position: absolute;
	top: 6px;
	left: 6px;
	z-index: 2;
	background: #e02b2b;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 4px;
	text-transform: uppercase;
}
.elush-box-name {
	margin-top: 8px;
	font-size: 13px;
	line-height: 1.3;
}
.elush-box-price {
	font-weight: 700;
	margin-top: 4px;
}
.elush-box-qty {
	font-weight: 400;
	color: #6b7280;
}
.elush-box-role {
	display: inline-block;
	margin: 6px 0 0;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.04em;
	padding: 1px 6px;
	border-radius: 3px;
}
.elush-box-role-buy {
	background: #eef2ff;
	color: #3730a3;
}
.elush-box-role-get {
	background: #e6f4ea;
	color: #1e7e34;
}
.elush-box-offer {
	font-size: 20px;
	font-weight: 800;
	color: #1e7e34;
}
.elush-box-plus {
	align-self: center;
	font-size: 26px;
	font-weight: 700;
	color: #111827;
	padding: 0 2px;
}
.elush-box-summary {
	flex: 1 1 240px;
	text-align: right;
	min-width: 220px;
}
.elush-box-desc {
	color: #4b5563;
	font-size: 14px;
	line-height: 1.5;
	margin-bottom: 12px;
}
.elush-box-was {
	color: #9ca3af;
	text-decoration: line-through;
	margin-right: 8px;
}
.elush-box-now {
	font-size: 26px;
	font-weight: 800;
	color: #111827;
}
.elush-box-pricing {
	margin-bottom: 12px;
}
.elush-box-add {
	display: inline-block;
}
.elush-box-form {
	margin: 0;
}

.elush-bundles-grid {
	display: grid;
	gap: 16px;
}
.elush-bundles-grid.elush-cols-2 { grid-template-columns: repeat( 2, 1fr ); }
.elush-bundles-grid.elush-cols-3 { grid-template-columns: repeat( 3, 1fr ); }
.elush-bundles-grid.elush-cols-4 { grid-template-columns: repeat( 4, 1fr ); }

@media ( max-width: 768px ) {
	.elush-box {
		flex-direction: column;
		align-items: stretch;
	}
	.elush-box-summary {
		text-align: left;
	}
	.elush-bundles-grid { grid-template-columns: 1fr; }
}
