/* 상품상세 쿠폰 스트립 + 바텀시트 목록 (셸는 bottom-sheet.css) */

.product-coupon-strip {
	display: none;
	margin: 12px 0 0;
	padding: 12px 14px;
	border-radius: 12px;
	background: #f7f7f7;
	border: 1px solid #eee;
}

.product-coupon-strip.is-visible {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	cursor: pointer;
}

.product-coupon-strip.is-static {
	cursor: default;
}

.product-coupon-strip__left {
	min-width: 0;
	flex: 1 1 auto;
}

.product-coupon-strip__badge {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	color: #c45c26;
	margin-bottom: 4px;
}

.product-coupon-strip__title {
	font-size: 14px;
	font-weight: 700;
	color: #222;
	line-height: 1.35;
	word-break: keep-all;
}

.product-coupon-strip__desc {
	margin-top: 2px;
	font-size: 12px;
	color: #777;
	line-height: 1.4;
}

.product-coupon-strip__action {
	flex: 0 0 auto;
	padding: 8px 12px;
	border-radius: 999px;
	border: 0;
	background: #222;
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
}

.product-coupon-strip.is-owned .product-coupon-strip__action {
	background: transparent;
	color: #666;
	border: 1px solid #ddd;
}

.product-coupon-sheet-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.product-coupon-sheet-item {
	position: relative;
	padding: 16px;
	border-radius: 12px;
	background: #fff;
	border: 1px solid #eee;
}

.product-coupon-sheet-item.download-issued,
.product-coupon-sheet-item.is-owned {
	background: #fafafa;
}

.product-coupon-sheet-item .discount {
	font-size: 20px;
	font-weight: 700;
	color: #222;
	margin: 0 0 6px;
}

.product-coupon-sheet-item .discount .discount-max {
	display: inline-block;
	margin-left: 6px;
	font-size: 12px;
	font-weight: 500;
	color: #888;
}

.product-coupon-sheet-item .tit {
	font-size: 14px;
	font-weight: 600;
	color: #333;
	margin: 0 0 6px;
	word-break: keep-all;
}

.product-coupon-sheet-item .desc {
	font-size: 12px;
	color: #888;
	margin: 0 0 10px;
	line-height: 1.4;
}

.product-coupon-sheet-item .desc .usage-period {
	display: block;
}

.product-coupon-sheet-item .gray-bg {
	display: flex;
	justify-content: space-between;
	gap: 8px;
	padding: 8px 10px;
	border-radius: 8px;
	background: #f3f3f3;
	font-size: 12px;
	color: #666;
	margin-bottom: 10px;
}

.product-coupon-sheet-item .coupon-download-btn {
	width: 100%;
	height: 40px;
	border: 0;
	border-radius: 10px;
	background: #222;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
}

.product-coupon-sheet-item .coupon-download-btn:disabled {
	background: #cfcfcf;
	color: #fff;
}

.product-coupon-sheet-empty {
	padding: 32px 12px;
	text-align: center;
	color: #888;
	font-size: 14px;
}
