/**
 * WooCommerce — 加入购物车右下角提示卡片
 */

.hec-cart-toast-wrap {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 100050;
	max-width: calc(100vw - 40px);
	width: 380px;
	pointer-events: none;
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.hec-cart-toast-wrap * {
	box-sizing: border-box;
}

.hec-cart-toast {
	pointer-events: auto;
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
	overflow: hidden;
	opacity: 0;
	transform: translateX(24px);
	transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.hec-cart-toast.is-visible {
	opacity: 1;
	transform: translateX(0);
}

/* 成功条：薄荷绿 */
.hec-cart-toast__header {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 16px;
	background: #d8f3e4;
	border-radius: 14px 14px 0 0;
}

.hec-cart-toast__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #22a55a;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	flex-shrink: 0;
}

.hec-cart-toast__title {
	margin: 0;
	font-size: 15px;
	font-weight: 600;
	color: #166534;
	letter-spacing: 0.01em;
}

/* 商品区 */
.hec-cart-toast__body {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	padding: 16px 18px;
}

.hec-cart-toast__thumb {
	flex-shrink: 0;
	width: 72px;
	height: 72px;
	border-radius: 10px;
	background: #f4f4f5;
	overflow: hidden;
}

.hec-cart-toast__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hec-cart-toast__info {
	min-width: 0;
	flex: 1;
}

.hec-cart-toast__name {
	margin: 0 0 6px;
	font-size: 15px;
	font-weight: 700;
	color: #111;
	line-height: 1.35;
}

.hec-cart-toast__price {
	margin: 0 0 4px;
	font-size: 14px;
	font-weight: 500;
	color: #3d4f5f;
}

.hec-cart-toast__attrs {
	margin: 0;
	font-size: 12px;
	line-height: 1.4;
	color: #6b7280;
}

/* 按钮 */
.hec-cart-toast__actions {
	display: flex;
	gap: 10px;
	padding: 0 18px 18px;
}

.hec-cart-toast__btn {
	flex: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 14px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	text-align: center;
	transition: opacity 0.2s ease, transform 0.15s ease;
	border: none;
	cursor: pointer;
}

.hec-cart-toast__btn:hover {
	opacity: 0.92;
	text-decoration: none;
}

.hec-cart-toast__btn:active {
	transform: scale(0.98);
}

.hec-cart-toast__btn--cart {
	background: #1f2937;
	color: #fff;
}

.hec-cart-toast__btn--checkout {
	background: #e5e7eb;
	color: #111;
}

@media (max-width: 480px) {
	.hec-cart-toast-wrap {
		right: 12px;
		bottom: 12px;
		width: calc(100vw - 24px);
	}

	.hec-cart-toast__actions {
		flex-direction: column;
	}
}
