/* Product Detail Styles */
.product-detail {
	max-width: 1400px;
	margin: 0 auto;
	padding: 80px 40px;
	border-bottom: 1px solid #e5e5e5;
}

.product-detail-container {
	display: grid;
	grid-template-columns: 1fr;
	gap: 60px;
}

.product-detail-image {
	width: 100%;
	height: 400px;
	/* Fixed for consistency */
	background: #f5f5f5;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border-radius: 8px;
}

.product-detail-image img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	/* Full image visible, centered */
	display: block;
}

.product-detail-image a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	text-decoration: none;
}

.product-detail-image a:hover img {
	opacity: 0.9;
	transition: opacity 0.2s;
}

.product-detail-info {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.product-detail-meta .product-category {
	font-size: 12px;
	font-weight: 600;
	color: #000000;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.product-detail-title {
	font-size: 48px;
	font-weight: 700;
	color: #000000;
	line-height: 1.2;
	letter-spacing: -0.02em;
	margin: 0;
}

.product-detail-description {
	font-size: 18px;
	color: #666666;
	line-height: 1.7;
}

.product-detail-features h3 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 16px;
}

.product-detail-features ul {
	list-style: none;
	padding: 0;
}

.product-detail-features li {
	font-size: 16px;
	color: #666666;
	margin-bottom: 8px;
	padding-left: 20px;
	position: relative;
}

.product-detail-features li::before {
	content: "•";
	color: #000000;
	position: absolute;
	left: 0;
}

.product-detail-pricing {
	background: #fafafa;
	border: 1px solid #e5e5e5;
	padding: 32px;
	border-radius: 8px;
}

.pricing-header h3 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 8px;
}

.pricing-subtitle {
	font-size: 14px;
	color: #666666;
}

.pricing-input-group {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 16px 0;
}

.currency-symbol {
	font-weight: 600;
	color: #000000;
}

.price-input {
	border: 1px solid #e5e5e5;
	border-radius: 4px;
	padding: 12px 16px;
	font-size: 24px;
	font-weight: 600;
	width: 120px;
	text-align: center;
}

.price-error {
	color: #ff0000;
	font-size: 14px;
	margin: 8px 0;
	display: none;
}

.product-detail-btn {
	background: #000000;
	color: #ffffff;
	border: none;
	padding: 16px 32px;
	font-weight: 500;
	font-size: 16px;
	border-radius: 4px;
	cursor: pointer;
	transition: opacity 0.2s;
	width: 100%;
}

.product-detail-btn:hover {
	opacity: 0.8;
}

.product-detail-note {
	font-size: 14px;
	color: #666666;
	text-align: center;
	padding: 16px;
	background: #f9f9f9;
	border-radius: 4px;
}

.additional-info {
	max-width: 1400px;
	margin: 80px auto;
	padding: 0 40px;
}

.info-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
}

.info-item h3 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 16px;
}

.info-item ul {
	list-style: none;
	padding: 0;
}

.info-item li {
	font-size: 16px;
	color: #666666;
	margin-bottom: 8px;
	padding-left: 20px;
	position: relative;
}

.info-item li::before {
	content: "•";
	color: #000000;
	position: absolute;
	left: 0;
}

.breadcrumb {
	max-width: 1400px;
	margin: 0 auto 40px;
	padding: 0 40px;
	font-size: 14px;
	color: #666666;
}

.breadcrumb a {
	color: #000000;
	text-decoration: none;
}

.breadcrumb a:hover {
	text-decoration: underline;
}

.breadcrumb span {
	margin: 0 8px;
	color: #e5e5e5;
}

/* Tablet */
@media (min-width: 768px) {
	.product-detail-container {
		grid-template-columns: 1fr 1fr;
		gap: 80px;
	}

	.product-detail-image {
		height: 500px;
	}

	.info-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 60px;
	}
}

/* Desktop */
@media (min-width: 1024px) {
	.product-detail {
		padding: 100px 60px;
	}

	.additional-info {
		padding: 0 60px;
		margin: 100px auto;
	}
}