.product-detail-section {
	
}
.product-detail-image {
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-radius: 10px;
}
.product-detail-info {
	padding: 30px;
}
.product-detail-title {
	font-size: 2.8rem;
	margin-bottom: 15px;
	color: #333;
}
.product-detail-price {
	font-size: 2.4rem;
	color: #e74c3c;
	font-weight: bold;
	margin-bottom: 20px;
}
.product-detail-description {
	color: #666;
	line-height: 1.8;
	margin-bottom: 30px;
}
.product-detail-specs {
	margin-bottom: 30px;
}
.product-detail-specs h4 {
	margin-top: 0;
	margin-bottom: 15px;
	color: #333;
}
.spec-list {
	list-style: none;
	padding: 0;
}
.spec-list li {
	padding: 8px 0;
	border-bottom: 1px solid #eee;
}
.spec-list li:last-child {
	border-bottom: none;
}
.quantity-selector {
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}
.quantity-selector label {
	margin-right: 15px;
	font-weight: bold;
}
.quantity-btn {
	width: 30px;
	height: 30px;
	background: #f5f5f5;
	border: 1px solid #ddd;
	cursor: pointer;
}
.quantity-input {
	width: 50px;
	height: 30px;
	text-align: center;
	border: 1px solid #ddd;
	margin: 0 5px;
}
.action-buttons {
	display: flex;
	gap: 15px;
}
.buy-now {
	flex: 2;
}
.add-to-cart {
	flex: 1;
}
.product-tabs {
	margin-top: 50px;
}
.tab-content {
	padding: 30px;
	background: #f9f9f9;
	border: 1px solid #eee;
	border-top: none;
}
.tab-content img{
	max-width: 100%;
}
.related-products {
	margin-top: 50px;
}
.related-products .section-title {
	text-align: left;
}
@media (max-width: 768px) {
	.action-buttons {
		flex-direction: column;
	}
	.buy-now, .add-to-cart {
		width: 100%;
	}
}