@charset "UTF-8";

.product-detail-container {
	display: flex;
	flex-wrap: wrap;
	max-width: 1000px;
	margin: 40px auto;
	padding: 20px;
	background: white;
	border-radius: 15px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.product-image {
	flex: 1 1 40%;
	padding: 20px;
	text-align: center;
}

.product-image img {
	width: 100%;
	max-width: 400px;
	border-radius: 10px;
	object-fit: cover;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-info {
	flex: 1 1 60%;
	padding: 20px;
}

.product-info h1 {
	font-size: 2rem;
	margin-bottom: 15px;
	color: #222;
}

.product-info .price {
	font-size: 1.5rem;
	font-weight: bold;
	color: #e74c3c;
	margin-bottom: 10px;
}

.product-info p {
	font-size: 1rem;
	margin: 8px 0;
}

.product-info strong {
	color: #555;
}

.star {
	font-size: 1.2rem;
	color: #ddd;
	transition: color 0.3s;
}

.star.filled {
	color: #f1c40f;
}

.add-to-cart {
	margin-top: 20px;
	background-color: #635bff;
	color: white;
	padding: 12px 20px;
	font-size: 1rem;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: background 0.3s;
}

.add-to-cart:hover {
	background-color: #27ae60;
}

@media (max-width: 576px) {

	.product-detail-container {
		display: flex;
		flex-direction: column;
	}
}