/* 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-family: "Red Hat Display", sans-serif;
	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-family: "Jost", sans-serif;
	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-family: "Jost", sans-serif;
	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-family: "Red Hat Display", sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: #1f323a;
}

.pc-bundle-total-price {
	font-family: "Jost", sans-serif;
	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;
}

/* Inline-extracted minified rules appended from bundle.php */
.pc-bundle-frontend{display:block;width:100%;clear:both;border:1px solid #e8e8e8;border-radius:4px;padding:18px 22px;margin:32px 0 24px!important;background:#fff;box-sizing:border-box}
.pc-bundle-item-list{list-style:none;margin:0 0 14px;padding:0}
.pc-bundle-sub-item{display:flex;align-items:center;gap:10px;padding:5px 0}
.pc-bundle-sub-item::before{content:'\2713';display:inline-flex;align-items:center;justify-content:center;width:18px;height:18px;min-width:18px;background:#333;color:#fff;font-size:11px;font-weight:700;border-radius:50%;flex-shrink:0}
.pc-bundle-sub-image{display:none}
.pc-bundle-sub-info{flex:1;display:flex;align-items:center;gap:6px;min-width:0}
.pc-bundle-sub-name{font-size:14px;color:#333}
.pc-bundle-sub-name a{color:#333;text-decoration:none;font-weight:500}
.pc-bundle-sub-name a:hover{color:#000;text-decoration:underline}
.pc-bundle-sub-qty{font-size:12px;color:#888;margin-left:2px}
.pc-bundle-sub-price{font-size:14px;font-weight:600;color:#222;white-space:nowrap;margin-left:auto}
.pc-bundle-total{padding-top:14px;border-top:1px solid #eee;display:flex;align-items:center;gap:8px;flex-wrap:wrap}
.pc-bundle-total-label{font-weight:700;font-size:14px;color:#333}
.pc-bundle-total-price{font-weight:700;font-size:20px;color:#222}
.pc-bundle-original-price{font-size:14px;color:#bbb;text-decoration:line-through}
.pc-bundle-discount-badge{font-size:12px;font-weight:600;color:#fff;background:#c00;padding:2px 8px;border-radius:3px}
.pc-bundle-add-to-cart{width:100%;margin-top:12px!important}
.pc-bundle-title{display:none}

/* Responsive */
@media (max-width: 768px) {
	.pc-bundle-frontend {
		padding: 14px;
		margin: 20px 0;
	}

	.pc-bundle-sub-item {
		flex-wrap: wrap;
	}

	.pc-bundle-total {
		flex-direction: column;
		align-items: flex-start;
	}
}
