.bundle-builder-container {
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	background: #fff;
	max-width: 800px;
	margin: 0 auto 30px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0,0,0,0.06);
	transition: all 0.3s ease;
}
.bundle-accordion-header {
	background: #fff;
	color: #333;
	padding: 20px 25px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background 0.3s ease;
	border-left: 4px solid #C21D2E;
}
.bundle-accordion-header:hover {
	background: #fdfdfd;
}
.bundle-accordion-left {
	display: flex;
	align-items: center;
	gap: 15px;
}
.bundle-accordion-icons {
	display: flex;
	gap: -5px;
}
.bundle-icon {
	width: 40px;
	height: 40px;
	background: #f8f8f8;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #333;
	border: 2px solid #fff;
	margin-left: -10px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.bundle-icon:first-child {
	margin-left: 0;
}
.bundle-icon svg {
	width: 20px;
	height: 20px;
}
.bundle-accordion-text {
	display: flex;
	flex-direction: column;
}
.bundle-accordion-title {
	margin: 0;
	font-size: 1.4em;
	font-weight: 700;
	color: #111;
}
.bundle-accordion-subtitle {
	font-size: 0.9em;
	color: #666;
	margin-top: 5px;
}
.bundle-accordion-right {
	display: flex;
	align-items: center;
	gap: 15px;
}
.bundle-accordion-badge {
	font-size: 0.75em;
	font-weight: bold;
	padding: 4px 10px;
	border-radius: 20px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.bundle-accordion-badge.style-grey {
	background: #f1f1f1;
	color: #333;
}
.bundle-accordion-badge.style-red {
	background: #fff0f0;
	color: #C21D2E;
}
.bundle-accordion-btn {
	background: #C21D2E;
	color: #FFF6F6;
	border: none;
	padding: 8px 15px;
	border-radius: 4px;
	font-weight: bold;
	cursor: pointer;
	transition: background 0.3s ease;
}
.bundle-accordion-btn:hover {
	background: #A71928;
	color: #FFF6F6;
}
.bundle-accordion-icon {
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	align-items: center;
	color: #666;
}
.bundle-accordion-closed .bundle-accordion-icon {
	transform: rotate(-90deg);
}
.bundle-accordion-body {
	display: grid;
	grid-template-rows: 1fr;
	transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.bundle-accordion-closed .bundle-accordion-body {
	grid-template-rows: 0fr;
}
.bundle-builder-inner {
	overflow: hidden;
}
.bundle-builder-inner-content {
	padding: 25px;
}
.bundle-group-section {
	margin-bottom: 25px;
	padding-bottom: 20px;
	border-bottom: 1px solid #eee;
}
.bundle-group-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}
.bundle-group-title {
	font-size: 1.2em;
	font-weight: bold;
}
.bundle-group-status {
	font-size: 0.9em;
	color: #666;
}
.bundle-group-status.complete {
	color: #2e7d32;
	font-weight: bold;
}
.bundle-products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: 15px;
	max-height: 50vh;
	overflow-y: auto;
	padding-right: 10px; /* Space for the scrollbar */
	padding-bottom: 10px;
}
/* Custom scrollbar for a cleaner look */
.bundle-products-grid::-webkit-scrollbar {
	width: 6px;
}
.bundle-products-grid::-webkit-scrollbar-track {
	background: #f1f1f1; 
	border-radius: 4px;
}
.bundle-products-grid::-webkit-scrollbar-thumb {
	background: #c1c1c1; 
	border-radius: 4px;
}
.bundle-products-grid::-webkit-scrollbar-thumb:hover {
	background: #a8a8a8; 
}
.bundle-product-card {
	border: 1px solid #ddd;
	border-radius: 5px;
	padding: 10px;
	text-align: center;
	cursor: pointer;
	transition: all 0.2s;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.bundle-product-card:hover {
	border-color: #999;
}
.bundle-product-card.selected {
	border-color: #1976d2;
	background: #e3f2fd;
	box-shadow: 0 0 0 1px #1976d2;
}
.bundle-product-card img {
	max-width: 100%;
	height: auto;
	margin-bottom: 10px;
}
.bundle-product-title {
	font-size: 0.9em;
	margin-bottom: 5px;
	line-height: 1.2;
}
.bundle-product-price {
	font-weight: bold;
	color: #444;
}
.bundle-footer {
	text-align: right;
	padding: 15px 10px;
	position: sticky;
	bottom: 0;
	background: #fff;
	border-top: 1px solid #eee;
	box-shadow: 0 -4px 10px rgba(0,0,0,0.02);
	z-index: 10;
	margin-top: 20px;
}
.bundle-add-to-cart-btn {
	text-transform: none;
	background: #C21D2E;
	color: #FFF6F6;
	border: none;
	padding: 12px 25px;
	font-size: 1.1em;
	border-radius: 4px;
	cursor: pointer;
	font-weight: bold;
	transition: background 0.3s ease;
}
.bundle-add-to-cart-btn:hover:not(:disabled) {
	background: #A71928;
}
.bundle-add-to-cart-btn:disabled {
	background: #ccc;
	cursor: not-allowed;
}
.bundle-loading, .bundle-error {
	text-align: center;
	padding: 20px;
}
.bundle-error {
	color: #d32f2f;
}
