/* Main page section 2 (Product Overview) */

.main-product-section {
	height: 1100px;
	background: url("../../img/en/v2/main/main_02.png") no-repeat right center /
		cover;
	background-color: #f5f9fc;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 600px;
}

.product-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 80%;
	width: 100%;
	margin: 0 auto;
	padding: 0 5rem;
	gap: 7.5rem;
}

.product-content {
	flex: 0 0 45%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.product-label {
	font-size: 1.75rem;
	font-weight: 600;
	color: black;
	margin: 0 0 2.5rem 0;
	letter-spacing: 0.15rem;
}

.product-title {
	margin: 0 0 4rem 0;
	font-size: 0; /* 이미지 타이틀용 필수 */
	line-height: 1;
}

.product-title img {
	display: block;
	width: 50%; /* ← 여기서 크기 조절 */
	max-width: 320px; /* ← 안전장치 */
	height: auto;
}

.product-description {
	font-size: 2.25rem;
	font-weight: 400;
	color: #4a5568;
	line-height: 1.8;
	margin: 0 0 5rem 0;
}

.product-image {
	flex: 0 0 55%;
}



/* 반응형: 태블릿 */
@media (max-width: 1024px) {
	.product-container {
		padding: 0 3.75rem;
		gap: 5rem;
	}

	.product-content {
		flex: 0 0 50%;
	}

	.product-image {
		flex: 0 0 50%;
	}

	.product-title img {
		width: 90%;
		max-width: 240px;
	}

	.product-description {
		font-size: 1.875rem;
	}
}

/* 반응형: 모바일 */
@media (max-width: 768px) {
    /* =========================================
       1. 유지되는 고정 코드
       ========================================= */

    
    .main-product-section {
        height: 78vh !important;
        width: 100%;
        padding: 3rem 0;
    }
	

    /* =========================================
       2. 요청사항 반영 수정 영역
       ========================================= */

    .product-container {
        display: flex;
        flex-direction: column;
        width: 100% !important; 
        
        /* [수정] 컨테이너 위치를 아래로 내림 (위쪽 여백 추가) */
        padding: 10vh 30px 0 30px; 
        
        align-items: flex-start !important; 
        justify-content: flex-start;
        box-sizing: border-box;
        height: 100%;
    }

    .product-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start !important;
        width: 100%;
        margin-top: 0;
    }

    .product-label {
        /* [수정] 폰트 크기 2단계 축소 (14px -> 12px) */
        font-size: 12px;
        font-weight: 700;
        color: #222;
        
        /* [수정] 로고와의 간격 좁힘 (15px -> 5px) */
        margin: 0 0 5px 0;
        
        text-align: left;
    }

    .product-title-img {
        width: 100%;
        height: 100px;
        display: flex;
        justify-content: flex-start !important;
        
        /* [수정] 설명글과의 간격 좁힘 (20px -> 10px) */
        margin-bottom: 10px;
    }

    .product-title-img img {
        /* [수정] 로고 크기 통일 및 축소 (아이폰 최적화 32px) */
        height: 32px !important; 
        
        width: 100% !important;
        object-fit: contain;
        object-position: left center;
    }

    .product-desc {
        /* [수정] 폰트 크기 2단계 축소 (16~18px -> 14px) */
        font-size: 14px; 
        
        line-height: 1.4;
        color: #333;
        
        /* [수정] 버튼과의 간격 좁힘 (40px -> 20px) */
        margin: 0 0 20px 0;
        
        text-align: left !important;
        width: 80%;
        word-break: keep-all;
    }

    .product-btn {
        /* [수정] 작아진 요소들에 맞춰 버튼 크기도 살짝 조절 */
        width: 140px !important; 
        height: 45px !important;
        
        margin-top: 0;
        background-position: left center;
    }
}
