/* ===== Special Coupon ===== */
.special-coupon * {
	box-sizing: border-box;
}

.coupon-list > div {
	width: 100%;
}

.special-coupon .special-coupon__container {
	max-width: var(--sc-max-width, 800px);
	margin: 0 auto;
	padding: 0;
}

/* ----- Banner ----- */
.special-coupon .special-image {
	cursor: pointer;
}
.special-coupon .special-coupon__img {
	width: 100%;
	display: block;
}

/* ----- 展开/收起 ----- */
.special-coupon .coupon-list-wrapper {
	background-color: var(--sc-list-bg, #b3d7f4);
	overflow: hidden;
	transition: max-height 0.35s ease;
}
.special-coupon .coupon-list-wrapper.is-collapsed {
	max-height: 0;
}

/* ----- 列表 ----- */
.special-coupon .coupon-list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	padding: 24px 16px 30px;
}

/* ----- 显示切换 ----- */
.special-coupon .mobile-only {
	display: none;
}

/* ===== 桌面端卡片 ===== */
.special-coupon .coupon-item.desktop-only {
	width: 267px;
	height: 170px;
	padding-top: 14px;
	text-align: center;
	background-image: var(--sc-card-bg-pc);
	background-size: 100% 100%;
	background-repeat: no-repeat;
}
.special-coupon .coupon-item.desktop-only .coupon-condition {
	color: var(--sc-condition-color, #ffffff);
	font-size: 18px;
	line-height: 40px;
}
.special-coupon .coupon-item.desktop-only .item-title {
	font-size: 40px;
	line-height: 46px;
	color: var(--sc-amount-color, #c9e6f8);
	text-shadow: 2px 2px 2px rgba(207, 50, 96, 0.64);
	font-style: italic;
	margin-bottom: 6px;
}
.special-coupon .coupon-item.desktop-only .item-title .coupon-title {
	font-size: 54px;
}
.special-coupon .coupon-item.desktop-only .item-bottom {
	font-size: 18px;
	width: 215px;
	height: 31px;
	display: flex;
	align-items: center;
	margin: 0 auto;
	color: var(--sc-copy-color, #1b1b1b);
}
.special-coupon .coupon-item.desktop-only .item-bottom .item-code {
	flex-grow: 1;
	color: var(--sc-code-color, #333333);
	text-align: right;
	padding-right: 8px;
	white-space: nowrap;
}
.special-coupon .coupon-item.desktop-only .item-bottom .copy-code {
	width: 98px;
	height: 31px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--sc-copy-color, #1b1b1b);
}

/* 1138–1413px 之间限制列表宽度，避免换行错乱 */
@media (max-width: 1413px) and (min-width: 1138px) {
	.special-coupon .coupon-list {
		max-width: 900px;
		margin: 0 auto;
	}
}

/* ===== 移动端卡片 ===== */
@media (max-width: 768px) {
	.special-coupon .special-coupon__container {
		padding-left: 15px;
		padding-right: 15px;
	}
	.special-coupon .desktop-only {
		display: none !important;
	}
	.special-coupon .special-coupon__img.mobile-only {
		display: block;
	}
	.special-coupon .coupon-list {
		padding: 1.6vw 1.87vw;
		flex-direction: column;
		gap: 1.33vw;
	}
	.special-coupon .coupon-item.mobile-only {
		display: flex;
		width: 100%;
		height: 11.2vw;
		align-items: center;
		text-align: center;
		background-image: var(--sc-card-bg-mobile);
		background-size: 100% 100%;
		background-repeat: no-repeat;
	}
	.special-coupon .coupon-item.mobile-only .item-left {
		width: 34.7%;
		font-size: 16px;
		color: #ffffff;
		text-shadow: 2px 2px 2px rgba(207, 50, 96, 0.64);
		flex-shrink: 0;
		font-style: italic;
	}
	.special-coupon .coupon-item.mobile-only .item-left .coupon-title {
		font-size: 22px;
	}
	.special-coupon .coupon-item.mobile-only .item-right {
		display: flex;
		padding-right: 2.93vw;
		width: 65.3%;
		align-items: center;
	}
	.special-coupon .coupon-item.mobile-only .code_info {
		flex-grow: 1;
		color: #ffffff;
		font-size: 10px;
		line-height: 13px;
	}
	.special-coupon .coupon-item.mobile-only .copy-code {
		width: 17.3vw;
		height: 5.3vw;
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: center;
		color: var(--sc-copy-color, #1b1b1b);
	}
}

/* ----- 复制成功提示 ----- */
.special-coupon__toast {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) translateY(8px);
	background: rgba(0, 0, 0, 0.82);
	color: #fff;
	font-size: 14px;
	line-height: 1;
	padding: 12px 20px;
	border-radius: 6px;
	z-index: 9999;
	opacity: 0;
	pointer-events: none;
	transition:
		opacity 0.25s ease,
		transform 0.25s ease;
}
.special-coupon__toast.is-visible {
	opacity: 1;
	transform: translate(-50%, -50%);
}

/* ===== 乐天/唯品会 风格优惠券（小巧精致） ===== */
.special-coupon .jp-coupon {
	display: flex;
	align-items: stretch;
	width: 100%;
	max-width: 460px;
	margin: 0 auto;
	overflow: hidden;
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.special-coupon .jp-coupon__main {
	position: relative;
	flex: 1 1 auto;
	min-width: 0;
	padding: 20px 12px 8px;
	color: var(--jp-text-color, #fff);
	background: linear-gradient(90deg, var(--jp-main-bg-start, #ff8bb2) 0%, var(--jp-main-bg-end, #f5296e) 100%);
	-webkit-mask-image: radial-gradient(circle 6px at right 9px, transparent 6px, #000 6.5px);
	-webkit-mask-size: 100% 18px;
	-webkit-mask-repeat: repeat-y;
	mask-image: radial-gradient(circle 6px at right 9px, transparent 6px, #000 6.5px);
	mask-size: 100% 18px;
	mask-repeat: repeat-y;
}

.special-coupon .jp-coupon__topbar {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	gap: 6px;
}

.special-coupon .jp-coupon__badge {
	display: inline-flex;
	align-items: center;
	height: 18px;
	padding: 0 8px;
	font-size: 11px;
	font-weight: 700;
	line-height: 18px;
	color: var(--jp-badge-color, #a3121e);
	background: var(--jp-badge-bg, #ffca3a);
	border-radius: 14px 0 10px 0;
}

.special-coupon .jp-coupon__rule {
	padding: 2px 5px;
	font-size: 10px;
	line-height: 1;
	color: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.55);
	border-radius: 8px 8px 8px 0;
}

.special-coupon .jp-coupon__content {
	display: flex;
	align-items: center;
	gap: 8px;
}

.special-coupon .jp-coupon__amount {
	display: flex;
	flex-shrink: 0;
	align-items: baseline;
	gap: 1px;
}

.special-coupon .jp-coupon__num {
	font-size: 28px;
	font-weight: 800;
	line-height: 1;
}

.special-coupon .jp-coupon__unit {
	font-size: 12px;
	font-weight: 700;
}

.special-coupon .jp-coupon__body {
	min-width: 0;
}

.special-coupon .jp-coupon__title {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
}

.special-coupon .jp-coupon__meta {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-top: 3px;
	font-size: 10px;
	line-height: 1.1;
	opacity: 0.92;
}

.special-coupon .jp-coupon__sep {
	opacity: 0.6;
}

.special-coupon .jp-coupon__action {
	position: relative;
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	padding: 0 16px;
	background: var(--jp-action-bg, #fff);
}

.special-coupon .jp-coupon__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 64px;
	padding: 7px 14px;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
	color: var(--jp-btn-color, #fff);
	background: var(--jp-btn-bg, #f5296e);
	border-radius: 999px;
	cursor: pointer;
	text-decoration: none;
}

.special-coupon .jp-coupon.is-claimed .jp-coupon__btn,
.special-coupon .jp-coupon__btn.is-disabled {
	color: #9a9a9a;
	background: #efefef;
	cursor: default;
}

@media (max-width: 768px) {
	.special-coupon .jp-coupon {
		max-width: 100%;
		border-radius: 12px;
	}
	.special-coupon .jp-coupon__main {
		padding: 18px 10px 8px;
	}
	.special-coupon .jp-coupon__num {
		font-size: 26px;
	}
	.special-coupon .jp-coupon__title {
		font-size: 13px;
	}
	.special-coupon .jp-coupon__action {
		padding: 0 12px;
	}
	.special-coupon .jp-coupon__btn {
		min-width: 58px;
		padding: 7px 12px;
		font-size: 12px;
	}
}

@media (min-width: 769px) {
	.special-coupon .jp-coupon {
		max-width: 100%;
		min-height: 140px;
		border-radius: 18px;
		box-shadow: 0 10px 28px rgba(245, 41, 110, 0.18);
	}

	.special-coupon .jp-coupon__main {
		padding: 32px 28px 18px;
		-webkit-mask-image: radial-gradient(circle 8px at right 12px, transparent 8px, #000 8.5px);
		-webkit-mask-size: 100% 24px;
		mask-image: radial-gradient(circle 8px at right 12px, transparent 8px, #000 8.5px);
		mask-size: 100% 24px;
	}

	.special-coupon .jp-coupon__badge {
		height: 26px;
		padding: 0 12px;
		font-size: var(--jp-badge-size, 13px);
		line-height: 26px;
		border-radius: 18px 0 12px 0;
	}

	.special-coupon .jp-coupon__rule {
		padding: 3px 8px;
		font-size: 12px;
	}

	.special-coupon .jp-coupon__content {
		gap: 16px;
	}

	.special-coupon .jp-coupon__num {
		font-size: var(--jp-amount-size, 52px);
	}

	.special-coupon .jp-coupon__unit {
		font-size: var(--jp-unit-size, 20px);
	}

	.special-coupon .jp-coupon__title {
		font-size: var(--jp-title-size, 20px);
	}

	.special-coupon .jp-coupon__meta {
		gap: 8px;
		margin-top: 6px;
		font-size: var(--jp-meta-size, 13px);
	}

	.special-coupon .jp-coupon__action {
		padding: 0 36px;
	}

	.special-coupon .jp-coupon__btn {
		min-width: 108px;
		padding: 14px 28px;
		font-size: var(--jp-btn-size, 16px);
	}
}

/* ===== 焦风格优惠券（藏青金框票券） ===== */
.special-coupon .navy-coupon {
	position: relative;
	display: flex;
	align-items: stretch;
	width: 100%;
	max-width: 640px;
	margin: 0 auto;
	background: var(--nc-cream, #f4efe3);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.special-coupon .navy-coupon__main {
	position: relative;
	flex: 1 1 auto;
	min-width: 0;
	padding: 20px 16px 16px;
	text-align: center;
}

/* 藏青底 + 右侧扇形冲孔（透出米色形成珠链分隔） */
.special-coupon .navy-coupon__main::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background: var(--nc-navy, #1a2c52);
	-webkit-mask-image: radial-gradient(circle 6px at right 8px, transparent 6px, #000 6.5px);
	-webkit-mask-size: 100% 18px;
	-webkit-mask-repeat: repeat-y;
	mask-image: radial-gradient(circle 6px at right 8px, transparent 6px, #000 6.5px);
	mask-size: 100% 18px;
	mask-repeat: repeat-y;
}

/* 金色双线描边框 */
.special-coupon .navy-coupon__frame {
	position: absolute;
	inset: 8px 20px 8px 10px;
	z-index: 1;
	border: 1px solid var(--nc-gold, #c8a24d);
	border-radius: 4px;
	pointer-events: none;
}
.special-coupon .navy-coupon__frame::before {
	content: "";
	position: absolute;
	inset: 3px;
	border: 1px solid var(--nc-gold, #c8a24d);
	border-radius: 2px;
	opacity: 0.75;
}

/* 顶部缎带 */
.special-coupon .navy-coupon__ribbon-row {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-bottom: 6px;
}
.special-coupon .navy-coupon__spark {
	flex: 0 0 auto;
	color: var(--nc-gold, #c8a24d);
	font-size: 10px;
	line-height: 1;
}
.special-coupon .navy-coupon__ribbon {
	position: relative;
	flex: 0 1 auto;
	display: inline-block;
	padding: 4px 20px;
	font-size: 13px;
	font-weight: var(--nc-ribbon-weight, 600);
	line-height: 1.3;
	letter-spacing: 2px;
	white-space: nowrap;
	color: var(--nc-ribbon-color, #1a2c52);
	background: linear-gradient(180deg, var(--nc-ribbon-bg, #c9a24b) 0%, var(--nc-ribbon-bg2, #a9822f) 100%);
	clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 50%, 100% 100%, 0 100%, 10px 50%);
}

/* 金额行 */
.special-coupon .navy-coupon__amount {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 2px;
	line-height: 1;
}
.special-coupon .navy-coupon__num {
	font-family:"Noto Serif JP";
	font-size: 44px;
	font-weight: var(--nc-amount-weight, 600);
	line-height: 1;
	background: linear-gradient(180deg, var(--nc-gold-light, #f0d68c) 0%, var(--nc-gold, #c8a24d) 55%, #9c7a34 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}
.special-coupon .navy-coupon__unit {
	font-family: "Noto Serif JP";
	font-size: 22px;
	font-weight: var(--nc-unit-weight, 500);
	line-height: 1;
	background: linear-gradient(180deg, var(--nc-gold-light, #f0d68c) 0%, var(--nc-gold, #c8a24d) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}
.special-coupon .navy-coupon__off {
	font-family: "Noto Serif JP";
	font-size: 22px;
	font-weight: var(--nc-off-weight, 500);
	line-height: 1;
	color: var(--nc-off-color, #ffffff);
}

/* 底部说明 */
.special-coupon .navy-coupon__title-row {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 6px;
}
.special-coupon .navy-coupon__orn {
	flex: 0 0 auto;
	color: var(--nc-gold, #c8a24d);
	font-size: 11px;
	line-height: 1;
}
.special-coupon .navy-coupon__title {
	flex: 0 1 auto;
	font-size: 13px;
	font-weight: var(--nc-title-weight, 500);
	line-height: 1.3;
	letter-spacing: 1px;
	white-space: nowrap;
	color: var(--nc-gold, #c8a24d);
}

/* 领取区 + 按钮 */
.special-coupon .navy-coupon__action {
	position: relative;
	z-index: 1;
	flex: 0 0 32%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 10px;
	background: var(--nc-cream, #f4efe3);
}
.special-coupon .navy-coupon__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 88px;
	padding: 10px 16px;
	font-size: 16px;
	font-weight: var(--nc-btn-weight, 600);
	line-height: 1.2;
	white-space: nowrap;
	color: var(--nc-btn-color, #ffffff);
	background: linear-gradient(180deg, var(--nc-btn-bg, #ec3a6e) 0%, var(--nc-btn-bg2, #e12a5f) 100%);
	border: 1.5px solid var(--nc-btn-border, #c8a24d);
	border-radius: 10px;
	box-shadow:
		0 3px 0 rgba(200, 162, 77, 0.55),
		0 6px 12px rgba(225, 42, 95, 0.22);
	cursor: pointer;
	text-decoration: none;
}
.special-coupon .navy-coupon.is-claimed .navy-coupon__btn,
.special-coupon .navy-coupon__btn.is-disabled {
	color: #7a7a7a;
	background: #d3d3d3;
	border-color: #bcbcbc;
	box-shadow: none;
	cursor: default;
}

/* 电脑端放大：应用可调字号与更宽松内边距 */
@media (min-width: 769px) {
	.special-coupon .navy-coupon {
		max-width: 100%;
		border-radius: 18px;
		box-shadow: 0 10px 28px rgba(26, 44, 82, 0.18);
	}
	.special-coupon .navy-coupon__main {
		padding: 34px 30px 26px;
	}
	.special-coupon .navy-coupon__main::before {
		-webkit-mask-image: radial-gradient(circle 8px at right 11px, transparent 8px, #000 8.5px);
		-webkit-mask-size: 100% 24px;
		mask-image: radial-gradient(circle 8px at right 11px, transparent 8px, #000 8.5px);
		mask-size: 100% 24px;
	}
	.special-coupon .navy-coupon__frame {
		inset: 12px 28px 12px 16px;
		border-radius: 6px;
	}
	.special-coupon .navy-coupon__ribbon-row {
		gap: 16px;
		margin-bottom: 12px;
	}
	.special-coupon .navy-coupon__spark {
		font-size: 13px;
	}
	.special-coupon .navy-coupon__ribbon {
		padding: 6px 30px;
		font-size: var(--nc-ribbon-size, 20px);
		clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 50%, 100% 100%, 0 100%, 14px 50%);
	}
	.special-coupon .navy-coupon__amount {
		gap: 4px;
	}
	.special-coupon .navy-coupon__num {
		font-size: var(--nc-amount-size, 72px);
	}
	.special-coupon .navy-coupon__unit {
		font-size: var(--nc-unit-size, 40px);
	}
	.special-coupon .navy-coupon__off {
		font-size: var(--nc-off-size, 40px);
	}
	.special-coupon .navy-coupon__title-row {
		gap: 16px;
		margin-top: 12px;
	}
	.special-coupon .navy-coupon__orn {
		font-size: 14px;
	}
	.special-coupon .navy-coupon__title {
		font-size: var(--nc-title-size, 20px);
	}
	.special-coupon .navy-coupon__btn {
		min-width: 130px;
		padding: 14px 26px;
		font-size: var(--nc-btn-size, 24px);
		border-radius: 12px;
	}
}