/* =========================================================
   Agoda Coupon Card Plugin CSS
   원본 인터랙션 느낌을 유지한 재사용용 스타일
   ========================================================= */

@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css');

.agoda-coupon-card-wrap,
.agoda-coupon-card-wrap * {
	box-sizing: border-box;
	font-family: 'Pretendard Variable', 'Pretendard', 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
}

.agoda-coupon-card-wrap {
	background: transparent;
	color: #222222;
	line-height: 1.5;
	word-break: keep-all;
}

.agoda-coupon-card-wrap img {
	max-width: 100%;
	height: auto;
	display: block;
}

.agoda-coupon-card-wrap button {
	border: 0;
	background: none;
	padding: 0;
	cursor: pointer;
}

.agoda-coupon-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.agoda-coupon {
	display: flex;
	align-items: center;
	gap: 28px;
	padding: 24px 22px;
	background: #efefef;
	border-radius: 12px;
}

.agoda-coupon-logo {
	width: 130px;
	min-width: 130px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.agoda-coupon-logo img {
	width: 100%;
	max-width: 128px;
}

.agoda-coupon-info {
	flex: 1 1 auto;
	min-width: 0;
}

.agoda-coupon-info h4 {
	margin: 0 0 8px;
	font-size: 25px;
	font-weight: 800;
	line-height: 1.25;
	color: #111111;
	letter-spacing: -0.03em;
}

.agoda-coupon-desc-main {
	margin: 0 0 8px;
	font-size: 17px;
	font-weight: 800;
	color: #06a13f;
}

.agoda-coupon-desc-sub {
	margin: 0;
	font-size: 14px;
	font-weight: 600;
	color: #808080;
}

.agoda-coupon-btn-area {
	position: relative;
	width: 235px;
	min-width: 235px;
	height: 44px;
	border: 1px dashed #18b85b;
	border-radius: 4px;
	background: #ffffff;
	overflow: hidden;
	cursor: pointer;
}

.agoda-coupon-btn-area > span {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 18px;
	font-size: 15px;
	font-weight: 700;
	color: #788089;
	background: #ffffff;
	z-index: 1;
	user-select: none;
}

.agoda-coupon-btn-area > button[name="button"] {
	position: absolute;
	top: 0;
	left: 0;
	width: 145px;
	height: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #08973d;
	color: #ffffff;
	font-size: 15px;
	font-weight: 800;
	z-index: 3;
	transition: width 0.18s ease, background 0.18s ease;
	white-space: nowrap;
}

.agoda-coupon-btn-area:hover > button[name="button"],
.agoda-coupon-btn-area:focus-within > button[name="button"] {
	width: 100%;
	background: #078d39;
}

.agoda-coupon-btn-area.open,
.agoda-coupon-btn-area.copy {
	padding-right: 86px;
	background:
		linear-gradient(to bottom, #18b85b 50%, rgba(255,255,255,0) 0) right 86px top / 1px 6px repeat-y,
		#ffffff;
}

.agoda-coupon-btn-area.open > button[name="button"],
.agoda-coupon-btn-area.copy > button[name="button"] {
	display: none;
}

.agoda-coupon-btn-area.open > span {
	justify-content: flex-start;
	padding-left: 42px;
	padding-right: 94px;
	color: #6f7680;
	font-weight: 700;
}

.agoda-coupon-btn-area.copy > span {
	justify-content: flex-start;
	padding-left: 42px;
	padding-right: 94px;
	color: #202020;
	font-weight: 700;
}

.agoda-coupon-btn-area.open::before {
	content: "";
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
	height: 12px;
	border: 2px solid #8d8d8d;
	border-radius: 2px;
	background: #ffffff;
	z-index: 2;
}

.agoda-coupon-btn-area.open > span::before {
	content: "";
	position: absolute;
	left: 18px;
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
	height: 12px;
	border: 2px solid #8d8d8d;
	border-radius: 2px;
	background: #ffffff;
	z-index: 2;
	opacity: 0.75;
}

.agoda-coupon-btn-area.open::after {
	content: "복사하기";
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 14px;
	font-weight: 800;
	color: #10a84d;
	z-index: 2;
	white-space: nowrap;
}

.agoda-coupon-btn-area.copy {
	border-style: solid;
	border-color: #18b85b;
}

.agoda-coupon-btn-area.copy::before {
	content: "✓";
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	line-height: 15px;
	text-align: center;
	border: 2px solid #18b85b;
	border-radius: 50%;
	color: #18b85b;
	font-size: 11px;
	font-weight: 900;
	background: #ffffff;
	z-index: 2;
}

.agoda-coupon-btn-area.copy::after {
	content: "복사완료!";
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 14px;
	font-weight: 800;
	color: #18b85b;
	z-index: 2;
	white-space: nowrap;
}

@media (max-width: 991px) {
	.agoda-coupon {
		flex-direction: column;
		align-items: stretch;
		gap: 18px;
	}

	.agoda-coupon-logo {
		width: 100%;
		min-width: 0;
		justify-content: center;
	}

	.agoda-coupon-logo img {
		width: 120px;
		max-width: 120px;
		margin-left: auto;
		margin-right: auto;
	}

	.agoda-coupon-info {
		width: 100%;
	}

	.agoda-coupon-btn-area {
		width: 100%;
		min-width: 0;
		height: 44px;
	}

	.agoda-coupon-btn-area > button[name="button"] {
		width: calc(100% - 86px);
	}

	.agoda-coupon-btn-area.open,
	.agoda-coupon-btn-area.copy {
		padding-right: 86px;
		background:
			linear-gradient(to bottom, #18b85b 50%, rgba(255,255,255,0) 0) right 86px top / 1px 6px repeat-y,
			#ffffff;
	}

	.agoda-coupon-btn-area.open > span,
	.agoda-coupon-btn-area.copy > span {
		padding-left: 42px;
		padding-right: 94px;
	}
}

@media (max-width: 767px) {
	.agoda-coupon {
		gap: 16px;
		padding: 18px;
		border-radius: 10px;
	}

	.agoda-coupon-logo img {
		width: 110px;
		max-width: 110px;
	}

	.agoda-coupon-info h4 {
		font-size: 21px;
	}

	.agoda-coupon-desc-main {
		font-size: 15px;
	}

	.agoda-coupon-desc-sub {
		font-size: 13px;
	}

	.agoda-coupon-btn-area {
		height: 42px;
	}

	.agoda-coupon-btn-area > span {
		font-size: 14px;
	}

	.agoda-coupon-btn-area > button[name="button"] {
		width: calc(100% - 78px);
		font-size: 14px;
	}

	.agoda-coupon-btn-area.open,
	.agoda-coupon-btn-area.copy {
		padding-right: 80px;
		background:
			linear-gradient(to bottom, #18b85b 50%, rgba(255,255,255,0) 0) right 80px top / 1px 6px repeat-y,
			#ffffff;
	}

	.agoda-coupon-btn-area.open > span,
	.agoda-coupon-btn-area.copy > span {
		padding-left: 38px;
		padding-right: 86px;
	}

	.agoda-coupon-btn-area.open::after,
	.agoda-coupon-btn-area.copy::after {
		font-size: 12px;
		right: 9px;
	}
}
