/* Product Page Styles - Clean & Schematic */
.product-section {
	padding: 100px 0 20px 0;
}

/* Swiper Product Slider */
.single-product-thumb {
	padding-right: 15px;
}

.single-product-thumb .swiper-slide {
	opacity: 0.5;
	cursor: pointer;
	border: 1px solid #e4e4e4;
	transition: all 0.3s;
}

.single-product-thumb .swiper-slide-thumb-active,
.single-product-thumb .swiper-slide:hover {
	opacity: 1;
	border-color: var(--base-color);
}

.product-image .swiper-slide {
	border: 1px solid #e4e4e4;
	aspect-ratio: 3/4;
}

.product-image .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	background: #fff;
}

@media (max-width: 991px) {
	.single-product-thumb {
		padding-right: 0;
		padding-top: 15px;
	}
	
	.single-product-thumb .swiper-container {
		height: auto;
	}
	
	.single-product-thumb .swiper-slide {
		width: 70px !important;
		height: 70px;
	}
}

.product-title {
	font-size: 28px;
	font-weight: 600;
	color: #232323;
	margin-bottom: 15px;
}

#product-description {
	font-size: 15px;
	color: #717580;
	line-height: 1.7;
	margin-bottom: 20px;
}
#product-description p {
	margin-bottom: 0;
}

.product-highlights {
	border: 1px solid #e4e4e4;
	margin-bottom: 25px;
}

.highlight-item {
	display: flex;
	padding: 12px 15px;
	border-bottom: 1px solid #e4e4e4;
}

.highlight-item:last-child {
	border-bottom: none;
}

.highlight-item:nth-child(odd) {
	background: #f7f7f7;
}

.highlight-label {
	font-weight: 600;
	color: #232323;
	min-width: 180px;
}

.highlight-value {
	color: #717580;
}

.product-actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.btn-product {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 24px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s;
	border: none;
	cursor: pointer;
}

.btn-product-primary {
	background: var(--base-color);
	color: white;
}

.btn-product-primary:hover {
	background: #1e3a8a;
	color: white;
}

.btn-product-secondary {
	background: #f7f7f7;
	color: #232323;
	border: 1px solid #e4e4e4;
}

.btn-product-secondary:hover {
	background: #e4e4e4;
}

/* Specs Section */
.specs-section {
	background: #f7f7f7;
	padding: 50px 0;
}

.section-title {
	font-size: 22px;
	font-weight: 600;
	color: #232323;
	margin-bottom: 25px;
	padding-bottom: 15px;
	border-bottom: 2px solid var(--base-color);
}

.specs-table {
	width: 100%;
	border: 1px solid #e4e4e4;
	background: white;
	border-collapse: collapse;
	table-layout: fixed;
}

.specs-table th,
.specs-table td {
	padding: 12px 15px;
	border: 1px solid #e4e4e4;
	width: 50%;
}

.specs-table th {
	font-weight: 600;
	color: #232323;
	text-align: left;
	background: #fafafa;
}

.specs-table td {
	color: #717580;
}

.specs-table tr:nth-child(even) td {
	background: #fafafa;
}

.specs-table tr:nth-child(even) th {
	background: #f0f0f0;
}

.spec-check {
	color: #2ebb79;
}

/* Related Products */
.related-section {
	padding: 50px 0;
	background: var(--very-light-gray);
}

.related-header {
	text-align: center;
	margin-bottom: 30px;
}

.related-header h2 {
	font-size: 22px;
	font-weight: 600;
	color: #232323;
	margin-bottom: 8px;
}

.related-header p {
	color: #717580;
	font-size: 14px;
	margin: 0;
}

.product-card {
	border: 1px solid #e4e4e4;
	background: white;
	transition: border-color 0.2s;
	height: 100%;
}

.product-card:hover {
	border-color: var(--base-color);
}

.product-card-image {
	border-bottom: 1px solid #e4e4e4;
	aspect-ratio: 3/4;
	overflow: hidden;
}

.product-card-image a {
	display: block;
	width: 100%;
	height: 100%;
}

.product-card-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	background: #fff;
}

.product-card-content {
	padding: 15px;
	text-align: center;
}

.product-card-title {
	font-size: 16px;
	font-weight: 600;
	color: #232323;
	text-decoration: none;
	display: block;
}

.product-card-title:hover {
	color: var(--base-color);
}

.product-card-btn {
	display: inline-block;
	margin-top: 10px;
	font-size: 13px;
	color: var(--base-color);
	text-decoration: none;
}

.product-card-btn:hover {
	text-decoration: underline;
}

@media (max-width: 767px) {
	.spec-row {
		flex-direction: column;
	}
	
	.spec-label {
		border-right: none;
		border-bottom: 1px solid #e4e4e4;
		background: #f7f7f7;
	}
	
	.highlight-item {
		flex-direction: column;
	}
	
	.highlight-label {
		margin-bottom: 5px;
	}
}