/* ============================================
   Event Page
   ============================================ */

.event-page {
	margin-top: 155px;
	padding-bottom: 100px;
	min-height: 60vh;
}

.event-page .container {
	max-width: 680px;
	margin: 0 auto;
	padding: 0 20px;
}


/* 이벤트 카드 목록 */
.event-card-list {
	display: flex;
	flex-direction: column;
	gap: 60px;
	padding-top: 60px;
}

.event-card:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

/* 카테고리 + 시술명 헤더 */
.event-card-header {
	margin-bottom: 16px;
}

.event-cat-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: #999;
	margin-bottom: 6px;
}

.event-cat-badge::before,
.event-cat-badge::after {
	content: '■';
	font-size: 8px;
	color: #ccc;
}

.event-card-title {
	font-size: 24px;
	font-weight: 700;
	color: #111;
	line-height: 1.3;
}

.event-card-desc {
	font-size: 14px;
	margin-top: 4px;
}


/* 대표 이미지 */
.event-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #f0f0f0;
    position: relative;
}

.event-thumb img,
.event-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.event-thumb .video-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

.event-thumb .video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.event-thumb .video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    background: url(/assets/img/Icon_videoPlay.svg) no-repeat center center;
    background-size: cover;
    border: none;
    cursor: pointer;
    z-index: 2;
}

.event-thumb .video-play-btn.hidden {
    opacity: 0;
    pointer-events: none;
}

/* 이벤트 기간 배지 바 */
.event-badge-bar {
	background: #b6858c;
	color: #fff;
	font-size: 12px;
	padding: 10px 16px;
	letter-spacing: 0.3px;
	line-height: 1.5;
}

/* 가격표 */
.event-price-wrap {
	padding: 10px 16px 4px;
}

.event-price-item {
	border-bottom: 1px solid #e0e0e0;
	padding: 18px 0;
}

.event-price-item:last-child {
	border-bottom: none;
}

.event-price-row {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 16px;
}

.event-price-left {
	flex: 1;
	min-width: 0;
}

.event-price-name {
	display: block;
	font-size: 15px;
	font-weight: 600;
	color: #222;
	line-height: 1.4;
	word-break: keep-all;
}

.event-price-desc {
	display: block;
	font-size: 12px;
	color: #888;
	margin-top: 4px;
	line-height: 1.5;
}

.event-price-note {
	display: block;
	font-size: 11px;
	color: #bbb;
	margin-top: 6px;
}

.event-price-right {
	flex-shrink: 0;
	text-align: right;
}

.event-origin-price {
	display: block;
	font-size: 12px;
	color: #bbb;
	text-decoration: line-through;
	margin-bottom: 2px;
}

.event-sale-price {
	display: block;
	font-size: 20px;
	font-weight: 700;
	color: #222;
}

.event-sale-price small {
	font-size: 13px;
	font-weight: 400;
}

/* 버튼 영역 */
.event-price-btns {
	display: flex;
	margin-top: 12px;
}

.event-btn {
    display: block;
    width: 100%;
    padding: 10px 0;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    border: none;
    font-family: inherit;
    transition: background 0.2s, color 0.2s;
}

.event-btn-outline {
	background: #fff;
	color: #555;
	border: 1px solid #ccc;
}

.event-btn-outline:hover {
	background: #b6858c;
	color: #fff;
	border-color: #b6858c;
}

.event-btn-primary {
	background: #111;
	color: #fff;
}

.event-btn-primary:hover {
	background: #333;
}


/* 이벤트 없음 상태 */
.event-empty {
	text-align: center;
	padding: 80px 20px;
	color: #aaa;
	font-size: 15px;
}

/* 디테일 페이지 */
.event-detail-back {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: #888;
	text-decoration: none;
	padding: 20px 0 0;
}

.event-detail-back:hover { color: #111; }

/* 반응형 */

/* 태블릿 */
@media (max-width: 1024px) {
	.event-page .container {
		max-width: 100%;
		padding: 0 30px;
	}

	.event-card-list {
		gap: 50px;
		padding-top: 32px;
	}

	.event-card-title { font-size: 22px; }
}

/* 모바일 */
@media (max-width: 768px) {
	.event-page {
		margin-top: 120px;
		padding-bottom: 60px;
	}

	.event-page .container {
		padding: 0 16px;
	}

	.event-card-list {
		gap: 40px;
		padding-top: 24px;
	}

	.event-card-header { margin-bottom: 12px; }

	.event-card-title { font-size: 20px; }

	.event-card-desc { font-size: 13px; }

	.event-badge-bar {
		font-size: 11px;
		padding: 9px 14px;
	}

	.event-price-wrap {
		padding: 8px 12px 2px;
	}

	.event-price-item { padding: 14px 0; }

	.event-price-name { font-size: 14px; }

	.event-price-desc { font-size: 11px; }

	.event-origin-price { font-size: 11px; }

	.event-sale-price { font-size: 17px; }

	.event-sale-price small { font-size: 12px; }

	.event-btn {
		font-size: 12px;
		padding: 10px 0;
	}
}

/* 소형 모바일 */
@media (max-width: 480px) {
	.event-page { margin-top: 110px; }

	.event-card-title { font-size: 18px; }

	.event-thumb-overlay .ov-title { font-size: 18px; }

	.event-price-row { gap: 10px; }

	.event-price-name { font-size: 13px; }

	.event-sale-price { font-size: 16px; }
}
