/* Bundle Frontend Styles */
.pc-bundle-frontend {
	display: block;
	width: 100%;
	clear: both;
	border: 1px solid #d5d5d5;
	border-radius: 8px;
	padding: 24px;
	margin: 28px 0;
	background: #fdfdfd;
	box-sizing: border-box;
	box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.pc-bundle-title {
	font-size: 18px;
	font-weight: 700;
	color: #1f323a;
	margin: 0 0 16px;
	padding-bottom: 12px;
	border-bottom: 1px solid #e8e8e8;
}

.pc-bundle-item-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.pc-bundle-sub-item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 10px 0;
	border-bottom: 1px solid #f0f0f0;
	position: relative;
}

.pc-bundle-sub-item:last-child {
	border-bottom: none;
}

/* Checkmark indicator */
.pc-bundle-sub-item::before {
	content: '\2713';
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	min-width: 20px;
	background: #1f323a;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	border-radius: 50%;
	margin-right: 2px;
	flex-shrink: 0;
}

.pc-bundle-sub-image img {
	width: 60px;
	height: 60px;
	object-fit: cover;
	border-radius: 4px;
	border: 1px solid #e0e0e0;
}

.pc-bundle-sub-info {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.pc-bundle-sub-name {
	font-size: 14px;
	color: #474747;
}

.pc-bundle-sub-name a {
	color: #1f323a;
	text-decoration: none;
}

.pc-bundle-sub-name a:hover {
	color: #000;
	text-decoration: underline;
}

.pc-bundle-sub-qty {
	font-size: 12px;
	color: #999;
	background: #f0f0f0;
	padding: 2px 8px;
	border-radius: 10px;
}

.pc-bundle-sub-price {
	font-size: 14px;
	font-weight: 600;
	color: #474747;
	white-space: nowrap;
}

.pc-bundle-total {
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px solid #e8e8e8;
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.pc-bundle-add-to-cart {
	width: 100%;
	margin-top: 12px !important;
}

.pc-bundle-total-label {
	font-size: 16px;
	font-weight: 700;
	color: #1f323a;
}

.pc-bundle-total-price {
	font-size: 20px;
	font-weight: 700;
	color: #1f323a;
}

.pc-bundle-original-price {
	font-size: 14px;
	color: #999;
	text-decoration: line-through;
}

.pc-bundle-discount-badge {
	font-size: 12px;
	font-weight: 600;
	color: #fff;
	background: #d63638;
	padding: 3px 10px;
	border-radius: 3px;
}

/* Order bundle display */
.pc-order-bundle-items ul {
	margin: 4px 0 0 16px;
	list-style: disc;
}

.pc-order-bundle-items li {
	font-size: 13px;
	color: #555;
}

/* Responsive */
@media (max-width: 768px) {
	.pc-bundle-frontend {
		padding: 14px;
		margin: 20px 0;
	}

	.pc-bundle-sub-item {
		flex-wrap: wrap;
	}
}
