/* ── Cart Bubble ─────────────────────────────────────────────────────────── */

.we-cart-bubble {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	line-height: 1;
	cursor: pointer;
}

.we-cart-bubble__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
}

.we-cart-bubble__icon svg {
	display: block;
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.we-cart-bubble__badge {
	position: absolute;
	top: -8px;
	right: -10px;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
	background: #d63638;
	color: #fff;
	box-sizing: border-box;
}

.we-cart-bubble__badge.is-hidden {
	display: none;
}

.we-screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

/* ── Cart Drawer ─────────────────────────────────────────────────────────── */

.we-cart-drawer {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 99999;
	display: flex;
	justify-content: flex-end;
}

.we-cart-drawer.is-open {
	pointer-events: auto;
}

/* Overlay */
.we-cart-drawer__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	opacity: 0;
	transition: opacity 0.25s ease;
	cursor: pointer;
}

.we-cart-drawer.is-open .we-cart-drawer__overlay {
	opacity: 1;
}

/* Panel */
.we-cart-drawer__panel {
	position: relative !important;
	width: 380px !important;
	max-width: 90vw !important;
	height: 100% !important;
	background: #fff !important;
	display: flex !important;
	flex-direction: column !important;
	transform: translateX(100%);
	transition: transform 0.25s ease;
	box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
	box-sizing: border-box !important;
}

.we-cart-drawer.is-open .we-cart-drawer__panel {
	transform: translateX(0);
}

/* Header */
.we-cart-drawer__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 20px;
	border-bottom: 1px solid #e0e0e0;
	flex-shrink: 0;
}

.we-cart-drawer__title {
	margin: 0;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.3;
}

.we-cart-drawer__close {
	background: none;
	border: none;
	padding: 4px 8px;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	color: #555;
	border-radius: 4px;
	transition: color 0.15s ease;
}

.we-cart-drawer__close:hover {
	color: #111;
}

/* Body */
.we-cart-drawer__body {
	flex: 1;
	overflow-y: auto;
	padding: 12px 20px;
	position: relative;
}

.we-cart-drawer__body.is-loading {
	opacity: 0.45;
	pointer-events: none;
}

.we-cart-drawer__empty {
	text-align: center;
	color: #888;
	padding: 40px 0;
	margin: 0;
	font-size: 14px;
}

/* Item */
.we-cart-drawer__item {
	display: flex !important;
	flex-direction: row !important;
	align-items: center !important;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid #f0f0f0;
	width: 100% !important;
	box-sizing: border-box !important;
}

.we-cart-drawer__item:last-child {
	border-bottom: none;
}

.we-cart-drawer__item-image {
	flex-shrink: 0;
	width: 128px;
	height: 64px;
	display: block;
	border-radius: 4px;
	overflow: hidden;
	
}

.we-cart-drawer__item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.we-cart-drawer__item-info {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.we-cart-drawer__item-name {
	font-size: 14px;
	font-weight: 500;
	color: #111;
	text-decoration: none;
	line-height: 1.3;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.we-cart-drawer__item-name:hover {
	text-decoration: none;
}

.we-cart-drawer__item-price {
	font-size: 13px;
	color: #555;
}

.we-cart-drawer__item-remove {
	flex-shrink: 0;
	background: none;
	border: none;
	padding: 4px 6px;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	color: #aaa;
	border-radius: 4px;
	transition: color 0.15s ease;
}

.we-cart-drawer__item-remove:hover {
	color: #d63638;
	
}

/* Footer */
.we-cart-drawer__footer {
	padding: 16px 20px;
	border-top: 1px solid #e0e0e0;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.we-cart-drawer__subtotal {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 15px;
	font-weight: 600;
}

.we-cart-drawer__footer > div:last-child {
	display: flex;
	gap: 8px;
}

.we-cart-drawer__btn {
	display: block;
	flex: 1;
	text-align: center;
	padding: 12px 16px;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.15s ease, color 0.15s ease;
}

.we-cart-drawer__btn--primary {
	background: #0066cc;
	color: #fff;
	border-radius: 24px;
}

.we-cart-drawer__btn--primary:hover {
	background: #1f3cc6;
	color: #fff;
	border-radius: 24px;
}

.we-cart-drawer__btn--secondary {
	background: #fff;
	color: #0066cc;
	border: 1px solid #0066cc;
	border-radius: 24px;
}

.we-cart-drawer__btn--secondary:hover {
	background: #0099ff;
	color: #fff;
	border: 1px solid #0099ff;
	border-radius: 24px;
}

/* Prevent body scroll when drawer open */
body.we-drawer-is-open {
	overflow: hidden;
}
