.plco-cart-wrap {
	position: relative;
	display: inline-block;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

.plco-cart-icon-btn {
	position: relative;
	background: none;
	border: none;
	font-size: 22px;
	cursor: pointer;
	padding: 6px;
	line-height: 1;
}

.plco-cart-badge {
	position: absolute;
	top: -2px;
	right: -6px;
	background: #F6C500;
	color: #14161A;
	font-size: 11px;
	font-weight: 700;
	min-width: 18px;
	height: 18px;
	border-radius: 9px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 4px;
}

.plco-cart-panel {
	position: absolute;
	top: calc(100% + 10px);
	right: 0;
	width: 320px;
	max-width: 90vw;
	background: #fff;
	border: 1px solid #E7E2D6;
	border-radius: 12px;
	box-shadow: 0 12px 30px rgba(0,0,0,0.14);
	padding: 18px;
	z-index: 9999;
	display: none;
	text-align: left;
}
.plco-cart-panel.plco-open { display: block; }

.plco-cart-panel-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.plco-cart-panel-head h4 { margin: 0; font-size: 15px; font-weight: 700; color: #000 !important; }
.plco-cart-close { background: none; border: none; font-size: 20px; cursor: pointer; color: #79756A; line-height: 1; }

.plco-cart-items-list { max-height: 260px; overflow-y: auto; margin-bottom: 14px; }
.plco-cart-empty { font-size: 13px; color: #79756A; text-align: center; padding: 20px 0; margin: 0; }

.plco-cart-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 0;
	border-bottom: 1px solid #F1EEE6;
}
.plco-cart-item:last-child { border-bottom: none; }
.plco-cart-item img { width: 44px; height: 28px; object-fit: cover; border-radius: 5px; border: 1px solid #E7E2D6; flex-shrink: 0; background: #fff; }
.plco-cart-item-info { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.plco-cart-item-reg { font-size: 13px; font-weight: 700; letter-spacing: .5px; color: #17181B; }
.plco-cart-item-meta { font-size: 11px; color: #79756A; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.plco-cart-item-price { font-size: 13px; font-weight: 700; white-space: nowrap; color: #17181B; }
.plco-cart-item-remove { background: none; border: none; color: #b3261e; font-size: 18px; cursor: pointer; line-height: 1; padding: 0 2px; }

.plco-cart-panel-footer { border-top: 1px solid #E7E2D6; padding-top: 14px; }
.plco-cart-total-row { display: flex; justify-content: space-between; font-size: 14px; font-weight: 700; margin-bottom: 12px; color: #17181B; }
.plco-cart-checkout-btn { display: flex; text-decoration: none; }

/* Re-used inside the checkout page's own order-summary sidebar */
.plco-cart-section { border-top: 1px solid #E7E2D6; margin-top: 18px; padding-top: 18px; }
.plco-cart-section-title { font-size: 13px; font-weight: 700; margin: 0 0 10px; color: #000 !important; }
.plco-order-summary .plco-cart-items-list { max-height: none; }

/* Mobile responsiveness for the header cart dropdown */
@media (max-width: 480px) {
	.plco-cart-panel {
		position: fixed;
		top: auto;
		bottom: 0;
		left: 0;
		right: 0;
		width: 100%;
		max-width: 100%;
		border-radius: 16px 16px 0 0;
		max-height: 80vh;
		overflow-y: auto;
	}
}
