/* ===== MINI-CART DRAWER ===== */
.pc-mini-cart-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.5);
	z-index: 9999;
	opacity: 0;
	transition: opacity 0.3s ease;
}
.pc-mini-cart-overlay.active {
	display: block;
	opacity: 1;
}
.pc-mini-cart-panel {
	position: fixed;
	top: 0;
	right: -420px;
	width: 400px;
	max-width: 90vw;
	height: 100vh;
	background: #fff;
	z-index: 10000;
	display: flex;
	flex-direction: column;
	transition: right 0.35s cubic-bezier(0.22, 1, 0.36, 1);
	box-shadow: -4px 0 24px rgba(0,0,0,0.12);
}
.pc-mini-cart-panel.open {
	right: 0;
}
.pc-mini-cart-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 24px;
	border-bottom: 1px solid #e0e0e0;
	flex-shrink: 0;
}
.pc-mini-cart-header h3 {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	color: #2b2b2b;
}
.pc-mini-cart-close {
	width: 32px;
	height: 32px;
	border: none;
	background: none;
	cursor: pointer;
	font-size: 24px;
	color: #999;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: background 0.15s, color 0.15s;
}
.pc-mini-cart-close:hover {
	background: #f5f5f5;
	color: #2b2b2b;
}
.pc-mini-cart-items {
	flex: 1;
	overflow-y: auto;
	padding: 16px 24px;
}
.pc-mini-cart-empty {
	text-align: center;
	padding: 48px 24px;
	color: #999;
}
.pc-mini-cart-empty svg {
	margin-bottom: 16px;
	opacity: 0.4;
}
.pc-mini-cart-empty p {
	font-size: 14px;
	margin: 0;
}
.pc-mini-cart-item {
	display: flex;
	gap: 16px;
	padding: 16px 0;
	border-bottom: 1px solid #f0f0f0;
	align-items: flex-start;
}
.pc-mini-cart-item:last-child {
	border-bottom: none;
}
.pc-mini-cart-item-thumb {
	width: 72px;
	height: 72px;
	flex-shrink: 0;
	border-radius: 6px;
	overflow: hidden;
	background: #f7f7f7;
	border: 1px solid #e0e0e0;
}
.pc-mini-cart-item-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.pc-mini-cart-item-info {
	flex: 1;
	min-width: 0;
}
.pc-mini-cart-item-name {
	font-size: 13px;
	font-weight: 600;
	color: #2b2b2b;
	line-height: 1.3;
	margin-bottom: 4px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.pc-mini-cart-item-name a {
	color: inherit;
	text-decoration: none;
}
.pc-mini-cart-item-name a:hover {
	text-decoration: underline;
}
.pc-mini-cart-item-meta {
	font-size: 11px;
	color: #999;
	margin-bottom: 6px;
}
.pc-mini-cart-item-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.pc-mini-cart-item-qty {
	font-size: 12px;
	color: #666;
}
.pc-mini-cart-item-price {
	font-size: 13px;
	font-weight: 600;
	color: #323232;
}
.pc-mini-cart-footer {
	padding: 20px 24px;
	border-top: 1px solid #e0e0e0;
	flex-shrink: 0;
}
.pc-mini-cart-subtotal {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 16px;
	font-size: 15px;
}
.pc-mini-cart-subtotal-label {
	color: #666;
}
.pc-mini-cart-subtotal-amount {
	font-weight: 700;
	color: #2b2b2b;
}
.pc-mini-cart-footer .pc-btn {
	width: 100%;
	justify-content: center;
	margin-bottom: 8px;
}
.pc-mini-cart-footer .pc-btn-secondary {
	background: #fff !important;
	color: #2b2b2b !important;
	border-color: #e0e0e0 !important;
}
.pc-mini-cart-footer .pc-btn-secondary:hover {
	background: #f5f5f5 !important;
}

@media (max-width: 480px) {
	.pc-mini-cart-panel {
		width: 100vw;
		max-width: 100vw;
		right: -100vw;
	}
	.pc-mini-cart-header {
		padding: 16px 20px;
	}
	.pc-mini-cart-items {
		padding: 12px 20px;
	}
	.pc-mini-cart-footer {
		padding: 16px 20px;
	}
}
