.product-page {
	max-width: 1200px;
	margin: 40px auto;
	padding: 0 20px;
}

.breadcrumb {
	font-size: 13px;
	color: #6b7280;
	margin-bottom: 16px;
}

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

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

.product-top {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	background: #ffffff;
	border-radius: 16px;
	padding: 24px;
	box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
	border: 1px solid #e5e7eb;
	margin-bottom: 30px;
}

.product-image-wrapper {
	flex: 1 1 280px;
	min-width: 280px;
	max-width: 420px;
}

.product-image-wrapper img {
	width: 100%;
	border-radius: 12px;
	border: 1px solid #e5e7eb;
	object-fit: cover;
}

.product-main-info {
	flex: 2 1 320px;
	min-width: 320px;
}

.product-title {
	font-size: 24px;
	font-weight: 700;
	color: #111827;
	margin-bottom: 6px;
}

.product-subtitle {
	font-size: 14px;
	color: #6b7280;
	margin-bottom: 14px;
}

.badge-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 16px;
}

.badge {
	display: inline-flex;
	align-items: center;
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 500;
	border: 1px solid #e5e7eb;
	background: #f9fafb;
	color: #374151;
}

.badge i {
	margin-right: 6px;
	font-size: 11px;
}

.badge-condition-good {
	background: #dcfce7;
	color: #166534;
	border-color: #22c55e;
}

.badge-condition-refurbished {
	background: #e0f2fe;
	color: #075985;
	border-color: #38bdf8;
}

.badge-condition-faulty {
	background: #fee2e2;
	color: #b91c1c;
	border-color: #ef4444;
}

.key-info {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 10px 20px;
	margin-bottom: 20px;
	font-size: 14px;
}

.key-info-item span:first-child {
	display: block;
	color: #6b7280;
	font-size: 12px;
	margin-bottom: 2px;
}

.key-info-item span:last-child {
	color: #111827;
	font-weight: 500;
}

.cta-row {
	margin-top: 10px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}

.cta-note {
	font-size: 12px;
	color: #6b7280;
}

.product-sections {
	display: grid;
	grid-template-columns: 2fr 1.4fr;
	gap: 24px;
	margin-bottom: 40px;
}

.section-card {
	background: #ffffff;
	border-radius: 12px;
	padding: 18px 20px;
	border: 1px solid #e5e7eb;
	box-shadow: 0 6px 16px rgba(15, 23, 42, 0.04);
	margin-bottom: 10px;
}

.section-title {
	font-size: 16px;
	font-weight: 600;
	color: #111827;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.section-title i {
	font-size: 14px;
	color: #6b7280;
}

.section-body {
	font-size: 14px;
	color: #4b5563;
	line-height: 1.6;
}

.spec-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
	margin-top: 4px;
}

.spec-table tr:nth-child(odd) {
	background: #f9fafb;
}

.spec-table th,
.spec-table td {
	padding: 8px 10px;
	border-bottom: 1px solid #e5e7eb;
}

.spec-table th {
	width: 40%;
	text-align: left;
	color: #6b7280;
	font-weight: 500;
	font-size: 13px;
}

.spec-table td {
	color: #111827;
}

.quote-form {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 8px;
}

.quote-form label {
	font-size: 13px;
	color: #374151;
}

.quote-form input,
.quote-form textarea {
	width: 100%;
	padding: 8px 10px;
	border-radius: 8px;
	border: 1px solid #d1d5db;
	font-size: 14px;
	outline: none;
}

.quote-form input:focus,
.quote-form textarea:focus {
	border-color: #2563eb;
	box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.3);
}

.quote-form textarea {
	resize: vertical;
	min-height: 80px;
}

.quote-form button {
	align-self: flex-start;
	margin-top: 4px;
}

.btn-primary {
	background: #2563eb;
	color: #ffffff;
	border: none;
	padding: 10px 18px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.btn-primary i {
	font-size: 13px;
}

.btn-primary:hover {
	background: #1d4ed8;
}

.zoomable-image {
	cursor: zoom-in;
	transition: transform 0.2s ease;
}

.zoomable-image:hover {
	transform: scale(1.02);
}

.image-modal {
	display: none;
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.85);
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.image-modal-content {
	max-width: 95%;
	max-height: 95%;
	border-radius: 12px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.image-modal-close {
	position: absolute;
	top: 20px;
	right: 30px;
	color: #ffffff;
	font-size: 32px;
	font-weight: bold;
	cursor: pointer;
}

/* RELATED PRODUCTS */

.related-products {
	margin-top: 30px;
}

.related-products h3 {
	margin-bottom: 15px;
	font-size: 20px;
}

.related-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.related-card {
	border: 3px solid #e5e5e5;
	border-radius: 10px;
	padding: 12px;
	text-decoration: none;
	color: inherit;
	transition: 0.2s;
	background: #fff;
}

.related-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.related-card img {
	width: 100%;
	height: 160px;
	object-fit: contain;
	margin-bottom: 10px;
}

.related-title {
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 4px;
}

.related-sku {
	font-size: 13px;
	color: #666;
}

@media (max-width: 900px) {
	.product-sections {
		grid-template-columns: 1fr;
	}

	.related-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 700px) {
	.product-top {
		padding: 16px;
	}
}