/* Image Showcase Section */
.image-showcase-section {
	max-width: 1400px;
	margin: 0 auto;
	padding: 3rem 0;
}

.showcase-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 1rem;
	text-align: center;
}

.showcase-container {
	background: #fff;
	padding: 2rem 0;
	border: 1px solid #e0e0e0;
}

.showcase-box {
	background: #fff;
	overflow: hidden;
	transition: all 0.3s ease;
	width: 100%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.showcase-image-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
}

.showcase-image-placeholder img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}


.standard-section {
	max-width: 1400px;
	margin: 0 auto;
	padding: 3rem 0;
}

.standard-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 3rem;
	text-align: center;
}

/* 사이즈 가이드 컨테이너 */
.size-guide-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	background: white;
	overflow: hidden;
}

/* 왼쪽: 제품 이미지 섹션 */
.product-image-section {
	position: relative;
	overflow: hidden;
	background: #2a2a2a;
}

.product-main-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	min-height: 500px;
}

/* 오른쪽: 사이즈 가이드 섹션 */
.size-guide-section {
	background: linear-gradient(135deg, #8fae87 0%, #9db896 100%);
	padding: 4rem 3rem;
	color: white;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* 가이드 헤더 */
.guide-header {
	margin-bottom: 2rem;
	position: relative;
}

.guide-header h3 {
	font-size: 2rem;
	font-weight: 700;
	margin: 0;
	color: white;
}

.arrow-left,
.arrow-right {
	font-size: 1.5rem;
	color: rgba(255, 255, 255, 0.6);
	margin-right: 0.5rem;
}

/* 가이드 설명 */
.guide-description {
	background: white;
	color: #333;
	padding: 1.5rem 2rem;
	border-radius: 12px;
	margin-bottom: 2rem;
	position: relative;
}

.guide-description::before {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 30px;
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid white;
}

.guide-description p {
	margin: 0;
	line-height: 1.8;
	font-size: 1rem;
}

/* 사이즈 옵션들 */
.size-options {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.size-option {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 1.5rem;
	align-items: center;
}

.size-info {
	align-self: center;
}

/* 사이즈 샘플 바 */
.size-sample {
	height: 60px;
	border-radius: 6px;
	/*background: linear-gradient(90deg, #d4c4a8 0%, #b8a88e 50%, #9d8f7a 100%);*/
	background-image: url('../../assets/images/prod_sort/prod_sort_02.jpg');
	background-size: contain;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
	flex-shrink: 0;
}
.size-sample2 {
	height: 60px;
	border-radius: 6px;
	/*background: linear-gradient(90deg, #d4c4a8 0%, #b8a88e 50%, #9d8f7a 100%);*/
	background-image: url('../../assets/images/prod_sort/prod_sort_03.jpg');
	background-size: contain;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
	flex-shrink: 0;
}

.size-sample.size-970 {
	width: 200px;
	height:45px
}

.size-sample2.size-870 {
	width: 175px;
	height: 90px;
}

.size-sample.size-125 {
	width: 125px;
}

/* 사이즈 정보 */
.size-info {
	display: flex;
	flex-direction: column;
	gap: 0rem;
}

.size-name {
	font-size: 1.2rem;
	font-weight: 700;
	color: white;
	display: block;
}

.size-spec {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.9);
	display: block;
	line-height: 1.6;
}

.size-note {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.8);
}


@media (max-width: 1024px) {
	.size-guide-container {
		grid-template-columns: 1fr;
	}

	.product-image-section {
		min-height: 400px;
	}

	.size-guide-section {
		padding: 3rem 2rem;
	}

	.guide-header h3 {
		font-size: 1.6rem;
	}

	.size-option {
		grid-template-columns: 250px 1fr;
	}

	.size-sample {
		height: 45px;
	}

	.size-sample.size-190 {
		width: 160px;
	}

	.size-sample.size-165 {
		width: 140px;
	}

	.size-sample.size-125 {
		width: 105px;
	}
}

@media (max-width: 768px) {
	.showcase-title {
		font-size: 2rem;
		margin-bottom: 2rem;
	}

	.standard-title {
		font-size: 2rem;
		margin-bottom: 2rem;
	}

	.size-guide-section {
		padding: 2.5rem 1.5rem;
	}

	.guide-header h3 {
		font-size: 1.4rem;
	}

	.guide-description {
		padding: 1.2rem 1.5rem;
		font-size: 0.95rem;
	}

	.size-option {
		grid-template-columns: 160px 1fr;
	}

	.size-sample {
		height: 45px;
	}

	.size-sample.size-970 {
		width: 90%;
	}

	.size-sample.size-870 {
		width: 80%;
	}
	.size-sample2.size-870 {
		width: 80%;
	}

	.size-sample.size-125 {
		width: 90px;
	}

	.size-name {
		font-size: 1rem;
	}

	.size-spec {
		font-size: 0.85rem;
	}
}

@media (max-width: 480px) {
	.image-showcase-section {
		padding: 2rem 0.5rem;
	}

	.showcase-title {
		font-size: 1.8rem;
		margin-bottom: 1.5rem;
	}

	.standard-section {
		padding: 2rem 0;
	}

	.standard-title {
		font-size: 1.8rem;
		margin-bottom: 1.5rem;
	}

	.product-image-section {
		min-height: 200px;
	}

	.size-guide-section {
		padding: 2rem 1rem;
	}

	.guide-header h3 {
		font-size: 1.2rem;
	}

	.arrow-left,
	.arrow-right {
		font-size: 1.2rem;
	}

	.guide-description {
		padding: 1rem;
		font-size: 0.9rem;
	}

	.guide-description p br {
		display: none;
	}

	.size-options {
		gap: 1rem;
	}

	.size-option {
		grid-template-columns: 110px 1fr;
		gap: 0.8rem;
		align-items: center;
	}

	.size-sample {
		height: 40px;
	}

	.size-sample.size-970 {
		width: 100%;
		height: 40px;
	}

	.size-sample.size-870 {
		width: 90%;
		height: 80px;
	}
	.size-sample2.size-870 {
		width: 90%;
		height: 80px;
	}

	.size-sample.size-125 {
		width: 65px;
	}

	.size-name {
		font-size: 0.9rem;
	}

	.size-spec {
		font-size: 0.75rem;
	}

	.size-note {
		font-size: 0.7rem;
	}
}

/* 제품 테이블 스타일 */
.product-table-section {
    padding: 0;
}

.product-table {
    width: 70%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 0 auto;
}

.product-table th {
    background: #e8f5e8;
    color: #333;
    font-weight: 600;
    padding: 15px 20px;
    text-align: center;
    border: 1px solid #ddd;
    font-size: 16px;
}

.product-table td {
    padding: 10px 20px;
    text-align: center;
    border: 1px solid #ddd;
    font-size: 14px;
    color: #333;
    background: white;
}

.wood-style-header,
.wood-style-cell {
    background: #f8f9fa;
}

.stone-style-header,
.stone-style-cell {
    background: #fafafa;
}

.product-table tr:hover {
    background: #fafafa;
}

.product-table tr:hover .wood-style-cell,
.product-table tr:hover .stone-style-cell {
    background: #fafafa;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .product-table-section {
        padding: 0;
    }
    .product-table {
    	width: 90%;
    }
    
    .product-table th,
    .product-table td {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .product-table th {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .product-table-section {
        padding: 0;
    }
.product-table {
	width: 100%;
}
    
    .product-table th,
    .product-table td {
        padding: 10px 12px;
        font-size: 12px;
    }
    
    .product-table th {
        font-size: 13px;
    }
}