.cp-banner {
	max-width: 600px;
	margin: 20px auto;
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
	border: 2px solid transparent;
	background-clip: padding-box;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08), 0 0 0 2px #ff6b6b;
	transition: all 0.3s ease;
	cursor: pointer;
	text-decoration: none;
	color: inherit;
	display: block;
	position: relative;
}

.cp-banner:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12), 0 0 0 3px #ff4757;
}

.cp-banner-inner {
	display: flex;
	align-items: center;
	padding: 20px;
	gap: 20px;
}

.cp-image-container {
	flex-shrink: 0;
	width: 120px;
	height: 120px;
	background: #ffffff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	position: relative;
}

.cp-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.cp-banner:hover .cp-image {
	transform: scale(1.05);
}

.cp-content {
	flex: 1;
	min-width: 0;
}

.cp-title {
	font-size: 16px;
	font-weight: 600;
	color: #2d3748;
	margin-bottom: 8px;
	line-height: 1.4;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.cp-price {
	font-size: 20px;
	font-weight: 700;
	color: #ff6b6b;
	margin-bottom: 12px;
}

.cp-cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: linear-gradient(135deg, #ff6b6b, #ff5252);
	color: white;
	padding: 8px 16px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	animation: buttonPulse 2s ease-in-out infinite;
}

.cp-cta::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	animation: shine 3s ease-in-out infinite;
}

@keyframes buttonPulse {
	0%, 100% { 
		box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
		transform: scale(1);
	}
	50% { 
		box-shadow: 0 4px 16px rgba(255, 107, 107, 0.5);
		transform: scale(1.02);
	}
}

@keyframes shine {
	0% { left: -100%; }
	50% { left: 100%; }
	100% { left: 100%; }
}

.cp-banner:hover .cp-cta {
	background: linear-gradient(135deg, #ff5252, #ff4444);
	transform: scale(1.05);
	box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
	animation: none;
}

.cp-banner:hover .cp-cta::before {
	animation: none;
	left: 100%;
}

.cp-badge {
	position: absolute;
	top: 8px;
	right: 8px;
	background: #ff6b6b;
	color: white;
	font-size: 10px;
	font-weight: 600;
	padding: 4px 8px;
	border-radius: 4px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.cp-arrow {
	transition: transform 0.3s ease;
	display: inline-block;
	animation: arrowFloat 2.5s ease-in-out infinite;
}

.cp-banner:hover .cp-arrow {
	transform: translateX(4px);
	animation: bounce 0.6s ease infinite alternate;
}

@keyframes bounce {
	0% { transform: translateX(4px); }
	100% { transform: translateX(8px); }
}

@keyframes arrowFloat {
	0%, 100% { transform: translateX(0px); }
	50% { transform: translateX(3px); }
}

@media (prefers-reduced-motion: reduce) {
	.cp-banner {
		transition: box-shadow 0.2s ease;
	}
	
	.cp-banner:hover {
		transform: none;
		transition: box-shadow 0.2s ease;
	}
	
	.cp-cta {
		animation: none;
		transition: background-color 0.2s ease, box-shadow 0.2s ease;
	}
	
	.cp-cta::before {
		animation: none;
		display: none;
	}
	
	.cp-banner:hover .cp-cta {
		animation: none;
		transform: none;
	}
	
	.cp-banner:hover .cp-cta::before {
		animation: none;
	}
	
	.cp-arrow {
		animation: none;
		transition: none;
	}
	
	.cp-banner:hover .cp-arrow {
		animation: none;
		transform: none;
	}
	
	.cp-image {
		transition: none;
	}
	
	.cp-banner:hover .cp-image {
		transform: none;
	}
}

@media (max-width: 768px) {
	.cp-banner {
		max-width: 95%;
		margin: 15px auto;
	}

	.cp-banner-inner {
		padding: 18px;
		gap: 18px;
	}

	.cp-image-container {
		width: 100px;
		height: 100px;
	}

	.cp-title {
		font-size: 15px;
	}

	.cp-price {
		font-size: 19px;
	}
}

@media (max-width: 480px) {
	.cp-banner {
		max-width: 100%;
		margin: 10px;
		border-radius: 8px;
	}

	.cp-banner-inner {
		padding: 15px;
		gap: 15px;
	}

	.cp-image-container {
		width: 80px;
		height: 80px;
	}

	.cp-title {
		font-size: 14px;
		-webkit-line-clamp: 3;
	}

	.cp-price {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.cp-cta {
		font-size: 13px;
		padding: 8px 12px;
		border-radius: 5px;
	}

	.cp-badge {
		font-size: 9px;
		padding: 3px 6px;
		top: 6px;
		right: 6px;
	}
	
	.cp-banner:hover {
		transform: none;
	}

	.cp-banner:active {
		transform: scale(0.98);
		transition: transform 0.1s ease;
	}
}
	a.cp-banner + p > a.cp-banner:only-child {
    display: none;
}



.banner-container {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-bottom: 20px;
}

.banner-container a {
	text-decoration: none;
	color: inherit;
}

.product-banner {
	width: 700px;
	height: 270px;
	background: white;
	border-radius: 20px;
	overflow: hidden;
	border: 3px solid #7a8ede;
	box-shadow: 0 1px 10px #7a8ede;
	position: relative;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.product-image {
	width: 100%;
	height: 150px;
	object-fit: cover;
	object-position: center;
	display: block;
}

.sale-badge {
	position: absolute;
	top: 15px;
	left: 15px;
	width: 70px;
	height: 28px;
	background: linear-gradient(135deg, #ff416c, #ff4b2b);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: bold;
	color: white;
	box-shadow: 0 2px 8px rgba(255, 65, 108, 0.3);
}

.banner-content {
	padding: 10px 20px 0px 20px;
	position: relative;
	height: calc(100% - 180px - 32px);
}

.product-name {
	font-size: 20px;
	font-weight: bold;
	color: #2c3e50;
	margin-bottom: 10px;
	line-height: 1.2;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	max-width: 100%;
}

.price-container {
	display: flex;
	align-items: baseline;
	gap: 10px;
	margin-bottom: 10px;
}

.original-price {
	font-size: 16px;
	color: #95a5a6;
	text-decoration: line-through;
}

.discount-price {
	font-size: 26px;
	font-weight: bold;
	color: #e74c3c;
}

.discount-badge {
	background: linear-gradient(135deg, #fd79a8, #fdcb6e);
	color: white;
	font-size: 14px;
	font-weight: bold;
	padding: 4px 8px;
	border-radius: 12px;
	white-space: nowrap;
}

.cta-button {
	position: absolute;
	bottom: -30px;
	right: 10px;
	width: 160px;
	height: 40px;
	background: linear-gradient(135deg, #667eea, #764ba2);
	border: none;
	border-radius: 17px;
	color: white;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
	overflow: hidden;
}

/* 반짝이는 효과 추가 */
.cta-button::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -100%;
	width: 100%;
	height: 200%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.3),
		rgba(255, 255, 255, 0.5),
		rgba(255, 255, 255, 0.3),
		transparent
	);
	transform: skewX(-25deg);
	animation: shine 3s infinite;
	pointer-events: none;
}

/* 펄스 효과 (살짝 커졌다 작아지는 효과) */
.cta-button::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 17px;
	box-shadow: 0 0 20px rgba(102, 126, 234, 0.6);
	opacity: 0;
	animation: pulse 2s infinite;
	pointer-events: none;
}

@keyframes shine {
	0% {
		left: -100%;
	}
	20% {
		left: 100%;
	}
	100% {
		left: 100%;
	}
}

@keyframes pulse {
	0%, 100% {
		opacity: 0;
		transform: scale(1);
	}
	50% {
		opacity: 1;
		transform: scale(1.05);
	}
}

.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
	animation: buttonGlow 1.5s infinite alternate;
}

@keyframes buttonGlow {
	from {
		box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
	}
	to {
		box-shadow: 0 6px 30px rgba(102, 126, 234, 0.7);
	}
}

.cta-button:active {
	transform: translateY(0);
}

/* 반응형 디자인 */
@media (max-width: 480px) {
	.product-banner {
		width: 100%;
		max-width: 350px;
		height: 180px;
	}
	
	.product-image {
		height: 80px;
	}
	
	.product-name {
		font-size: 18px;
	}
	.original-price {
		display: none;
	}
	
	.discount-price {
		font-size: 15px;
	}
	
	.discount-badge {
		display: none;
	}
	
	.cta-button {
		width: 130px;
		height: 36px;		
		font-size: 14px;
		bottom: -60px;
	}
}