.product {
	max-width: 1200px;
	margin: 60px auto;
	padding: 0 20px;
	display: flex;
	flex-direction: column;
	gap: 60px;
}
.product-hero {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 48px;
	align-items: start;
}
@media (max-width: 768px) {
	.product-hero {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}
.product-gallery {
	width: 100%;
}

.iax-product-slider {
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	background: #f5f5f5;
}

.iax-product-slides {
	display: flex;
	transition: transform 0.4s ease;
}

.iax-product-slide {
	min-width: 100%;
}

.iax-product-slide img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 16px;
}
.iax-slider-prev,
.iax-slider-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgb(1, 51, 73) !important;
	color: #fff;
	border: none !important;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .2s ease;
	padding-top: 0 !important;
	font-size: xx-large;
}

.iax-slider-prev:hover,
.iax-slider-next:hover {
	background: rgba(19, 144, 197,0.85)!important;
}

.iax-slider-prev { left: 12px; }
.iax-slider-next { right: 12px; }
.iax-slider-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 12px;
}

.iax-slider-dots button {
	width: 10px;
	height: 10px;
	/* border-radius: 50%; */
	border: none;
	background: #ccc;
	cursor: pointer;
}

.iax-slider-dots button.active {
	background:rgb(1, 51, 73);;
}
.product-summary {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.product-title {
	font-size: 2rem;
	line-height: 1.2;
	font-weight: 600;
}
.product-sku {
	font-size: 0.9rem;
	color: #777;
}

.product-price {
	font-size: 1.6rem;
	font-weight: 600;
	color: #111;
}
.product-attributes {
	margin-top: 24px;
}

.product-attributes h2 {
	font-size: 1.1rem;
	margin-bottom: 12px;
}

.product-attributes-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.95rem;
}

.product-attributes-table th,
.product-attributes-table td {
	padding: 10px 12px;
	border-bottom: 1px solid #eaeaea;
	text-align: left;
}

.product-attributes-table th {
	color: #555;
	font-weight: 500;
	width: 40%;
}

.product-attributes-table td {
	color: #111;
}
.product-description {
	max-width: 900px;
	line-height: 1.7;
	color: #333;
}
.product-installation {
	max-width: 900px;
}

.product-installation h2 {
	margin-bottom: 16px;
}

.product-video iframe {
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 16px;
}
.product-features-extra {
	max-width: 900px;
}

.product-features-content {
	line-height: 1.7;
}
.product-datasheets-list {
	list-style: none;
	padding: 0;
	display: grid;
	gap: 12px;
}

.product-datasheets-list a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #0056b3;
	text-decoration: none;
	font-weight: 500;
}

.product-datasheets-list a:hover {
	text-decoration: underline;
}

/* Contenedor automático para tablas de contenido */
.entry-content table,
.iax-content table,
.wp-editor table {
	width: 100% !important;
	max-width: 100%;
	border-collapse: collapse;
}

/* Scroll horizontal SOLO en móvil */
@media (max-width: 768px) {
	.entry-content table,
	.iax-content table,
	.wp-editor table {
		display: block;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
}
