/* 쿠폰 사용(등록) 모달 — coupon.js 에서 마크업 주입 */
.coupon-modal{
	position: fixed; inset: 0; z-index: 1200;
	display: flex; align-items: center; justify-content: center;
	padding: 20px;
}
.coupon-modal[hidden]{ display: none; }

.coupon-modal-dim{
	position: absolute; inset: 0;
	background: rgba(15, 33, 29, 0.55);
}

.coupon-modal-card{
	position: relative;
	width: 100%; max-width: 420px;
	padding: 34px 28px 28px;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 26px 60px rgba(0, 0, 0, 0.28);
}

.coupon-modal-close{
	position: absolute; top: 14px; right: 16px;
	width: 34px; height: 34px;
	color: #888; font-size: 22px; line-height: 1;
	background: none; border: none; border-radius: 8px;
	cursor: pointer;
}
.coupon-modal-close:hover{ color: #333; background: #f2f4f3; }

.coupon-modal-head{ text-align: center; margin-bottom: 22px; }
.coupon-tag{
	display: inline-flex; align-items: center; gap: 6px;
	margin-bottom: 12px; padding: 6px 14px;
	color: #148a4e; font-size: 0.82rem; font-weight: 800;
	background: #e7f6ee; border-radius: 999px;
}
.coupon-title{
	margin: 0 0 8px;
	color: #1a1e22; font-size: 1.35rem; font-weight: 800; line-height: 1.35;
}
.coupon-sub{
	margin: 0; color: #7c8580; font-size: 0.92rem; font-weight: 500; line-height: 1.55;
}

.coupon-form{ display: flex; flex-direction: column; gap: 16px; }
.coupon-field{ display: flex; flex-direction: column; gap: 7px; }
.coupon-field label{ color: #33453f; font-size: 0.88rem; font-weight: 700; }
.coupon-field .req{ color: #d23b32; }
.coupon-field input{
	height: 52px; padding: 0 16px;
	color: #1a1e22; font-size: 1.2rem; font-weight: 800; letter-spacing: 3px; text-align: center;
	font-family: "Courier New", monospace; text-transform: uppercase;
	background: #f7f9f8;
	border: 1px solid #dfe4e2; border-radius: 12px;
	outline: none;
	transition: border-color .15s, background .15s;
}
.coupon-field input::placeholder{ color: #aab2ae; font-weight: 600; letter-spacing: 1px; font-family: inherit; }
.coupon-field input:focus{ border-color: #1aa45e; background: #fff; box-shadow: 0 0 0 3px rgba(26, 164, 94, 0.12); }

.coupon-submit{
	height: 52px; margin-top: 4px;
	color: #fff; font-size: 1.02rem; font-weight: 800;
	background: linear-gradient(120deg, #1aa45e, #0b8c7c);
	border: none; border-radius: 12px;
	cursor: pointer;
	transition: opacity .15s, transform .1s;
}
.coupon-submit:hover{ opacity: 0.94; }
.coupon-submit:active{ transform: translateY(1px); }
.coupon-submit:disabled{ opacity: 0.6; cursor: default; }

.coupon-foot{ margin: 2px 0 0; color: #aab2ae; font-size: 0.82rem; font-weight: 500; text-align: center; }

@media (max-width: 480px){
	.coupon-modal-card{ padding: 30px 20px 24px; }
	.coupon-title{ font-size: 1.2rem; }
	.coupon-field input{ font-size: 1.05rem; letter-spacing: 2px; }
}
