@charset "utf-8";

.goodsWrap {
	padding-left: 16px;
	padding-right: 16px;
}

/* 슬라이드 컨테이너 - 수정된 디자인 */
.cb-howto-connect-slider-container {
	position: relative;
	/* max-width: 1200px; */
	margin: 0 auto 40px auto;
	background: #ffffff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	border: 1px solid #f0f0f0;
	height: 500px; /* 고정 높이 설정 */
}

.cb-howto-connect-slider-wrapper {
	position: relative;
	width: 500%; /* 5개 슬라이드 = 500% (원본 3개 + 복제 2개) */
	height: 100%;
	display: flex;
	transition: transform 0.5s ease-in-out;
}

.cb-howto-connect-slide {
	width: 20%; /* 각 슬라이드가 전체의 1/5 */
	padding: 60px 60px 100px;
	text-align: center;
	height: 100%;
	position: relative;
	flex-shrink: 0;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* 슬라이드별 은은한 색상 테마 */
.cb-howto-connect-slide:nth-child(1),
.cb-howto-connect-slide:nth-child(4) {
	background: linear-gradient(135deg, #f8fffc 0%, #e8fff5 100%);
	color: #333;
}

.cb-howto-connect-slide:nth-child(2),
.cb-howto-connect-slide:nth-child(5) {
	background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
	color: #333;
}

.cb-howto-connect-slide:nth-child(3) {
	background: linear-gradient(135deg, #f8ffff 0%, #e8f8ff 100%);
	color: #333;
}

.cb-howto-connect-slide-icon {
	font-size: 4rem;
	margin-bottom: 30px;
	color: #667eea;
}

.cb-howto-connect-slide h2 {
	font-size: 2.8rem;
	margin-bottom: 25px;
	font-weight: 700;
	color: #333;
}

.cb-howto-connect-slide p {
	font-size: 1.3rem;
	line-height: 1.6;
	/* margin-bottom: 40px; */
	color: #666;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.cb-howto-connect-slide-features {
	display: flex;
	justify-content: center;
	gap: 40px;
	margin-top: 30px;
}

.cb-howto-connect-slide-feature {
	text-align: center;
}

.cb-howto-connect-slide-feature i {
	font-size: 2.5rem;
	margin-bottom: 15px;
	display: block;
	color: #667eea;
}

.cb-howto-connect-slide-feature span {
	font-size: 1.1rem;
	font-weight: 500;
	color: #333;
}

/* 네비게이션 */
.cb-howto-connect-nav {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 12px;
}

.cb-howto-connect-nav-dot {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: rgba(102, 126, 234, 0.3);
	cursor: pointer;
	transition: all 0.3s ease;
}

.cb-howto-connect-nav-dot.active {
	background: #667eea;
	transform: scale(1.2);
}

/* 화살표 네비게이션 */
.cb-howto-connect-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: transparent;
	border: none;
	color: rgba(102, 126, 234, 0.7);
	font-size: 1.2rem;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
}

.cb-howto-connect-arrow:hover {
	background: rgba(102, 126, 234, 0.2);
	transform: translateY(-50%) scale(1.1);
}

.cb-howto-connect-arrow.prev {
	left: 30px;
}

.cb-howto-connect-arrow.next {
	right: 30px;
}

/* 추가 정보 섹션 */
.cb-howto-connect-info-section {
	background: white;
	border-radius: 20px;
	padding: 70px 40px 50px;
	margin-bottom: 40px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.cb-howto-connect-info-section h2 {
	text-align: center;
	color: #333;
	font-size: 2.2rem;
	margin-bottom: 40px;
	font-weight: 700;
}

.cb-howto-connect-feature-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr); /* PC에서 3열로 고정 */
	gap: 30px;
	margin-bottom: 10px;
}

.cb-howto-connect-feature-card {
	background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
	border-radius: 15px;
	padding: 30px;
	text-align: center;
	transition: all 0.3s ease;
	border: 1px solid #e0e8ff;
}

.cb-howto-connect-feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.cb-howto-connect-feature-card i {
	font-size: 3rem;
	color: #667eea;
	margin-bottom: 20px;
}

.cb-howto-connect-feature-card h3 {
	color: #333;
	font-size: 1.4rem;
	margin-bottom: 15px;
	font-weight: 600;
}

.cb-howto-connect-feature-card p {
	color: #666;
	line-height: 1.6;
	margin: 0;
}

/* 하단 CTA 섹션 */
.cb-howto-connect-cta-section {
	text-align: center;
	margin-top: 40px;
	padding: 40px;
	background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
	border-radius: 20px;
}

.cb-howto-connect-cta-section h3 {
	color: #667eea;
	font-size: 1.8rem;
	margin-bottom: 20px;
	font-weight: 700;
}

.cb-howto-connect-cta-section p {
	color: #666;
	font-size: 1.2rem;
	margin-bottom: 30px;
}

/* 버튼 */
.cb-howto-connect-buttons {
	margin-top: 30px;
	display: flex;
	gap: 25px;
	justify-content: center;
}

.cb-howto-connect-btn {
	padding: 18px 35px;
	border: 2px solid #667eea;
	background: transparent;
	color: #667eea;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.cb-howto-connect-btn:hover {
	background: #667eea;
	color: white;
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.cb-howto-connect-btn.primary {
	background: #667eea;
	color: white;
}

.cb-howto-connect-btn.primary:hover {
	background: #5a5fcf;
	color: white;
}

/* 반응형 */
@media (max-width: 768px) {
	.cb-howto-connect-slider-container {
		height: 450px;
	}

	.cb-howto-connect-slide {
		padding: 10px 20px 70px;
	}

	.cb-howto-connect-slide h2 {
		font-size: 2rem;
	}

	.cb-howto-connect-slide p {
		font-size: 1rem;
		/* margin-bottom: 30px; */
	}

	.cb-howto-connect-slide-icon {
		font-size: 2.5rem;
		margin-bottom: 20px;
	}

	.cb-howto-connect-slide-features {
		gap: 30px;
	}

	.cb-howto-connect-slide-feature i {
		font-size: 2rem;
		margin-bottom: 10px;
	}

	.cb-howto-connect-slide-feature span {
		font-size: 0.9rem;
	}

	.cb-howto-connect-arrow {
		width: 45px;
		height: 45px;
		font-size: 1rem;
	}

	.cb-howto-connect-arrow.prev {
		left: 15px;
	}

	.cb-howto-connect-arrow.next {
		right: 15px;
	}

	.cb-howto-connect-info-section {
		padding: 50px 20px 30px;
	}

	/* 모바일에서 1행에 1개씩 표시 */
	.cb-howto-connect-feature-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.cb-howto-connect-buttons {
		flex-direction: column;
		align-items: center;
		gap: 15px;
	}

	.cb-howto-connect-btn {
		width: 200px;
		justify-content: center;
	}
}
