.product-detail {
    padding: 170px 0 60px;
}

.product-detail__gallery {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.product-detail__image-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 320px;
	padding: 24px;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.product-detail__image-wrap--empty {
	color: #6b7280;
	font-size: 1rem;
}

.product-detail__image {
	display: block;
	max-height: 480px;
	width: auto;
	margin: 0 auto;
	object-fit: contain;
}

.product-detail__thumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.product-detail__thumb {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	padding: 6px;
	border: 2px solid transparent;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
	cursor: pointer;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-detail__thumb.is-active,
.product-detail__thumb:hover {
	border-color: var(--bellota-red, #C8102E);
	box-shadow: 0 4px 14px rgba(200, 16, 46, 0.15);
}

.product-detail__thumb img {
	max-height: 100%;
	object-fit: contain;
}

.product-detail__title {
	margin-bottom: 16px;
	font-weight: 800;
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	line-height: 1.2;
	color: #111827;
}

.product-detail__price {
	margin-bottom: 24px;
	font-weight: 800;
	font-size: 1.75rem;
	color: var(--bellota-red, #C8102E);
}

.product-detail__description {
	margin-bottom: 28px;
	color: #374151;
	font-size: 1rem;
	line-height: 1.7;
}

.product-detail__description p:last-child {
	margin-bottom: 0;
}

.product-detail__specs {
	margin-bottom: 32px;
	padding-top: 24px;
	border-top: 1px solid #e5e7eb;
}

.product-detail__specs-title {
	margin-bottom: 16px;
	font-weight: 700;
	font-size: 1.25rem;
	color: #111827;
}

.product-detail__specs-list {
	margin: 0;
}

.product-detail__specs-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
	gap: 12px 20px;
	padding: 12px 0;
	border-bottom: 1px solid #f3f4f6;
}

.product-detail__specs-row:last-child {
	border-bottom: 0;
}

.product-detail__specs-row dt {
	margin: 0;
	color: #6b7280;
	font-weight: 500;
}

.product-detail__specs-row dd {
	margin: 0;
	color: #111827;
	font-weight: 600;
	text-align: right;
}

.product-detail__order-btn {
	min-width: 220px;
	padding: 14px 32px;
}

@media (max-width: 991px) {
	.product-detail {
		padding-top: 100px;
	}

	.product-detail__specs-row {
		grid-template-columns: 1fr;
		gap: 4px;
	}

	.product-detail__specs-row dd {
		text-align: left;
	}
}
