/* ============ 确认页/购物车页推荐区（mercarica_core 渲染）============ */
.merc-reco-section {
	margin: 40px 0 20px;
}
.merc-reco-title {
	font-size: 20px;
	font-weight: 700;
	color: var(--merc-chocolat);
	margin-bottom: 16px;
}
.merc-reco-track {
	display: flex;
	gap: 15px;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 4px 15px 10px;
}
.merc-reco-card {
	flex: 0 0 210px;
	background: #ffffff;
	border-radius: 8px;
	box-shadow: none;
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.merc-reco-card:hover {
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.35);
	transform: translateY(-1px);
}

/* ============ RecentlyViewed 横滑 ============ */

/* ============ 详情页关联商品横滑 ============ */
.merc-product-related {
	margin: 40px 0 20px;
}
.merc-related-title {
	margin-bottom: 16px;
}
.merc-related-track {
	display: flex;
	gap: 14px;
	overflow-x: auto;
	padding: 4px 15px 10px;
}
.merc-related-card {
	flex: 0 0 180px;
	background: #ffffff;
	border-radius: 8px;
	box-shadow: none;
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.merc-related-card:hover {
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.35);
	transform: translateY(-1px);
}
.merc-related-link {
	display: block;
	color: inherit;
	text-decoration: none;
}
.merc-related-link:hover {
	color: inherit;
	text-decoration: none;
}
.merc-related-img {
	background: var(--merc-img-bg, #F5F5F5);
	border-radius: 8px;
	display: block;
	overflow: hidden;
	padding: 8px;
	margin: 6px 6px 0;
	box-sizing: border-box;
}
.merc-related-img img {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: contain;
	border-radius: 8px;
}
.merc-related-name {
	display: block;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.35;
	margin: 2px 12px 4px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 38px;
	color: var(--merc-chocolat);
}
.merc-related-price {
	display: block;
	font-size: 18px;
	font-weight: 800;
	margin: 0 12px 8px;
	color: var(--merc-chocolat);
}
.merc-related-format {
	display: block;
	font-size: 12px;
	color: #8a857c;
	margin: 0 12px 4px;
}
.merc-related-add {
	height: 39px !important;
	font-size: 15px;
	line-height: 39px;
	margin: 0 14px 14px !important;
	width: calc(100% - 28px) !important;
	box-sizing: border-box;
}

/* ============ 首页未登录提示条（Mercadona 风格）============ */
.merc-login-hint {
	align-items: center;
	background: #f4f1ec;
	border-radius: 10px;
	display: flex;
	gap: 12px;
	justify-content: center;
	margin: 16px 0 0;
	padding: 12px 20px;
}
.merc-login-hint__text {
	color: var(--merc-text);
	font-size: 14px;
}
.merc-login-hint__btn {
	background: #e2ded6;
	border-radius: 8px;
	color: var(--merc-text);
	font-size: 14px;
	font-weight: 700;
	padding: 8px 18px;
	text-decoration: underline;
	white-space: nowrap;
}
.merc-login-hint__btn:hover {
	color: var(--merc-hover);
}

/* ============ 首页 Hero ============ */
.merc-hero {
	background: linear-gradient(135deg, #faf6f0 0%, #f3e9db 100%);
	border-radius: 12px;
	margin: 20px 0 28px;
	overflow: hidden;
}
.merc-hero__inner {
	padding: 48px 40px;
}
.merc-hero__title {
	color: var(--merc-chocolat);
	font-size: 30px;
	font-weight: 800;
	margin: 0 0 10px;
}
.merc-hero__sub {
	color: #6b675f;
	font-size: 15px;
	margin: 0;
	max-width: 520px;
}

/* ============ 首页区块标题 ============ */
.merc-section-header {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin: 0 0 16px;
}
.merc-section-heading {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.merc-section-title {
	color: var(--merc-chocolat);
	font-size: 22px;
	font-weight: 800;
	margin: 0;
}
.merc-section-sub {
	color: #8a857c;
	font-size: 14px;
	margin: 0;
}
.merc-section-link {
	color: var(--merc-hover);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
}
.merc-section-link:hover {
	text-decoration: underline;
}
.merc-home-block {
	margin-bottom: 40px;
	min-width: 0;
	max-width: 100%;
}

/* 首页商品横滑（Mercadona 首页商品区） */

/* hero 按钮(定稿 v2: 白底绿描边,hover 绿底白字) */
.merc-hero__btn {
	background: #fff;
	border: 1.5px solid var(--merc-add);
	border-radius: 20px;
	color: var(--merc-add);
	display: inline-block;
	font-size: 15px;
	font-weight: 700;
	margin-top: 20px;
	padding: 12px 28px;
	text-decoration: none;
	transition: background 0.2s, color 0.2s;
}
.merc-hero__btn:hover {
	background: var(--merc-add);
	color: #fff;
	text-decoration: none;
}

/* ============ 首页分栏横幅图（Mercadona 风格） ============ */
.merc-home-banner {
	display: block;
	margin-bottom: 16px;
	overflow: hidden;
	border-radius: 12px;
}
.merc-home-banner img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 12px;
}
.merc-home-banner:hover img {
	opacity: 0.96;
}
