/* 전체 페이지 스타일 */
body {
	background-color: #f7f9fc;
	font-family: 'Noto Sans KR', sans-serif;
	color: #333;
}

/* 헤더 섹션 스타일 */
.site-header {
	background: linear-gradient(135deg, #2c3e50 0%, #4ca1af 100%);
	color: white;
	padding: 1.5rem 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.site-header:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
	opacity: 0.8;
}

.site-header h1 {
	font-weight: 700;
	font-size: 1.8rem;
	position: relative;
	z-index: 2;
}

/* 제품 상세 섹션 */
.product-details {
	background-color: white;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.08);
	padding: 2rem;
	margin: 2rem 0;
}

.product-image-container {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #f5f5f5;
	border-radius: 10px;
	padding: 1rem;
	margin-bottom: 1.5rem;
}

.product-image {
	max-width: 100%;
	max-height: 400px;
	object-fit: contain;
}

.product-title {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #2c3e50;
}

.product-price {
	font-size: 1.5rem;
	font-weight: 700;
	color: #e74c3c;
	margin-bottom: 1rem;
}

.product-meta {
	display: flex;
	align-items: center;
	margin-bottom: 0.5rem;
	color: #7f8c8d;
}

.product-meta i {
	margin-right: 0.4rem;
	font-size: 1rem;
	color: #3498db;
}

.product-info-label {
	font-weight: 600;
	color: #555;
	margin-right: 0.5rem;
}

.category-badge {
	display: inline-block;
	background-color: #3498db;
	color: white;
	padding: 0.25rem 0.75rem;
	border-radius: 20px;
	font-size: 0.85rem;
	margin-right: 0.5rem;
	margin-bottom: 0.5rem;
}

.buy-button {
	background-color: #3498db;
	border-color: #3498db;
	font-weight: 600;
	padding: 0.75rem 2rem;
	font-size: 1.1rem;
	margin-top: 1rem;
	border-radius: 50px;
	transition: all 0.3s ease;
}

.buy-button:hover {
	background-color: #2980b9;
	border-color: #2980b9;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.back-button {
	font-weight: 600;
	margin-top: 1rem;
	border-radius: 50px;
	border-color: #e0e0e0;
	transition: all 0.3s ease;
}

.back-button:hover {
	background-color: #f5f5f5;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

/* 관련 상품 섹션 */
.related-products {
	background-color: white;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.08);
	padding: 2rem;
	margin-bottom: 2rem;
}

.related-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: #2c3e50;
	position: relative;
	padding-bottom: 0.5rem;
}

.related-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 4px;
	background: linear-gradient(90deg, #4ca1af 0%, #2c3e50 100%);
	border-radius: 2px;
}

/* 푸터 스타일 */
.footer {
	background-color: #2c3e50;
	color: white;
	padding: 3rem 0;
	margin-top: 3rem;
}

.footer-title {
	font-weight: 600;
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.footer-text {
	color: #bdc3c7;
	line-height: 1.7;
}

.footer-link {
	color: #3498db;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-link:hover {
	color: #2980b9;
	text-decoration: underline;
}

.social-links {
	margin-top: 1.5rem;
}

.social-links a {
	color: white;
	background-color: rgba(255,255,255,0.1);
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
	transition: all 0.3s ease;
}

.social-links a:hover {
	background-color: #3498db;
	transform: translateY(-3px);
}

/* 반응형 조정 */
@media (max-width: 768px) {
	.product-title {
		font-size: 1.5rem;
	}
	
	.product-price {
		font-size: 1.3rem;
	}
}