/**
 * Product Single Styles
 * Wrapper width: 1073px
 */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

.euro-product-single-wrapper {
	max-width: 1073px;
	margin: 0 auto;
	background-color: #fff;
	font-family: 'Roboto', sans-serif;
}

.euro-product-single-container {
	width: 100%;
}

/* Product Header - 2 Column Layout */
.euro-product-header {
	display: grid;
	grid-template-columns: 516px 1fr;
	gap: 30px;
	margin-bottom: 40px;
}

.euro-product-info-section {
	display: flex;
	flex-direction: column;
    margin-top: 5rem;
}


.euro-product-title {
	font-size: 32px;
	font-weight: 700;
	color: #000000;
	margin: 0;
	line-height: 1.3;
}

.euro-product-excerpt {
	font-size: 16px;
	color: #666;
	line-height: 1.6;
	margin: 0 0 20px 0;
}

/* Feature Icons */
.euro-product-feature-icons {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.euro-feature-icon-item {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: help;
}

/* Custom Tooltip Styling */
.euro-feature-icon-item[title]:hover::before {
	content: attr(title);
	position: absolute;
	bottom: calc(100% + 8px);
	left: 50%;
	transform: translateX(-50%);
	background: #B8EBFF;
	color: #0B4F9F;
	padding: 8px 12px;
	border-radius: 8px;
	font-size: 12px;
	font-weight: 500;
	white-space: nowrap;
	z-index: 1000;
	pointer-events: none;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	border: 1px solid #0B4F9F;
}

/* Tooltip Arrow */
.euro-feature-icon-item[title]:hover::after {
	content: '';
	position: absolute;
	bottom: calc(100% + 2px);
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #0B4F9F;
	z-index: 1001;
	pointer-events: none;
}

.euro-feature-icon-image {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.euro-feature-icon-image img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.euro-product-main-media {
	width: 100%;
	height: 450px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 15px;
}

.euro-product-main-media img,
.euro-product-main-media video {
	max-width: 100%;
	max-height: 100%;
	object-fit: cover;
	display: block;
    aspect-ratio: 1/1;
}

.euro-product-main-media .euro-video-thumbnail {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.euro-product-main-media .euro-video-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.euro-product-main-media .euro-video-play-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	pointer-events: none;
}

.euro-product-main-media .euro-video-thumbnail:hover .euro-video-play-icon {
	transform: translate(-50%, -50%) scale(1.1);
}

.euro-product-main-media .euro-video-play-icon::after {
	content: '';
	width: 0;
	height: 0;
	margin-left: 5px;
}

.euro-product-main-media video {
	cursor: pointer;
}

/* Thumbnail Gallery */
.euro-product-thumbnail-gallery {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.euro-thumbnail-item {
	width: 80px;
	height: 80px;
	border: 2px solid #e0e0e0;
	border-radius: 6px;
	overflow: hidden;
	cursor: pointer;
	transition: border-color 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	position: relative;
}

.euro-thumbnail-item:hover,
.euro-thumbnail-item.active {
	border-color: #003087;
}

.euro-thumbnail-item img {
	max-width: 100%;
	max-height: 100%;
	object-fit: cover;
	display: block;
}

.euro-video-thumbnail-item {
	position: relative;
}

.euro-thumbnail-play-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	z-index: 1;
}

.euro-thumbnail-play-icon img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.euro-video-thumbnail-item:hover .euro-thumbnail-play-icon {
	transform: translate(-50%, -50%) scale(1.1);
	transition: transform 0.3s ease;
}

/* Tabs Navigation */
.euro-product-tabs {
	margin-top: 40px;
}

.euro-tabs-navigation {
	display: flex;
	gap: 0;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	overflow: hidden;
	border: 1px solid #0B4F9F;
	background-color: #0B4F9F;
}

.euro-tab-button {
	position: relative;
	padding: 15px 20px;
	background-color: #0B4F9F;
	border: none;
	font-size: 14px;
	font-weight: 700;
	color: #FFFFFF;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.euro-tab-button::after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 19px;
	background-color: #000000;
}

.euro-tab-button.active::after {
	display: none;
}

.euro-tab-button:hover {
	background-color: #FFFFFF;
	color: #000000;
}

.euro-tab-button.active {
	background-color: #FFFFFF;
	color: #000000;
}

/* Tabs Content */
.euro-tabs-content {
	padding: 1rem;
	background-color: #F3F4F6;
	border-bottom-left-radius: 13px;
	border-bottom-right-radius: 13px;
}

.euro-tab-pane {
	display: none;
}

.euro-tab-pane.active {
	display: block;
	animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.euro-tab-title {
	font-size: 20px;
	font-weight: 700;
	color: #003087;
	margin: 25px 0 15px 0;
	padding-bottom: 10px;
	border-bottom: 2px solid #e0e0e0;
}

.euro-tab-title:first-child {
	margin-top: 0;
}

/* Product Description */
.euro-product-description {
	font-size: 12px;
	line-height: 1.8;
	color: #6F747B;
}

.euro-product-description h3 {
	font-size: 17px;
	color: black;
	margin-bottom: 10px;
}

.euro-product-description h4{
	font-size: 12px;
	color: #6F747B;
	margin-bottom: 0px;
}


.euro-product-description p {
	font-size: 18px;
	color: #6F747B;
	margin-bottom: 15px;
}

.euro-product-applications {
	font-size: 15px;
	line-height: 1.8;
	color: #444;
	margin-bottom: 25px;
}

.euro-product-operation {
	font-size: 15px;
	line-height: 1.8;
	color: #444;
}

/* Product Specs Grid */
.euro-product-specs-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(142px, 1fr));
	gap: 15px;
	margin-top: 20px;
}

.euro-spec-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 20px;
	background-color: #f9f9f9;
	border-radius: 8px;
	border: 1px solid #e8e8e8;
}

.euro-spec-icon {
	width: 48px;
	height: 48px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.euro-spec-icon img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.euro-spec-content {
	flex: 1;
}

.euro-spec-name {
	font-size: 11px;
	color: #6F747B;
	margin-bottom: 5px;
	font-weight: 500;
}

.euro-spec-value {
	font-size: 12px;
	color: #0B4F9F;
	font-weight: 700;
}

/* Documents */
.euro-product-documents {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.euro-document-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 0;
	transition: all 0.3s ease;
	position: relative;
	text-decoration: none;
	cursor: pointer;
}

.euro-document-item::after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	opacity: 0.5;
	transition: opacity 0.3s ease;
}

.euro-document-item:hover::after {
	opacity: 1;
}

.euro-document-icon {
	width: 40px;
	height: 40px;
	background-color: #0B4F9F;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	position: relative;
}

.euro-document-icon::before {
	content: '';
	width: 20px;
	height: 20px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4'/%3E%3Cpolyline points='7 10 12 15 17 10'/%3E%3Cline x1='12' y1='15' x2='12' y2='3'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.euro-file-extension {
	display: none;
}

.euro-document-info {
	flex: 1;
}

.euro-document-name {
	font-size: 14px;
	color: #35393D;
	font-weight: 700;
	margin-bottom: 0px;
	line-height: 1.5;
}

.euro-document-meta {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	color: #6F7477;
	margin-top: 2px;
}

.euro-document-type {
	font-weight: 400;
	color: #6F7477;
	text-transform: uppercase;
}

.euro-document-separator {
	color: #6F7477;
}

.euro-document-size {
	color: #6F7477;
	text-transform: uppercase;
}

.euro-document-download {
	display: none;
}

/* Related Accessories */
.euro-related-accessories-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin: 2rem;
}

.euro-accessory-card {
	background-color: #fff;
	border-radius: 16px;
	overflow: hidden;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	display: flex;
	flex-direction: column;
}

.euro-accessory-card:hover {
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
	transform: translateY(-4px);
}

.euro-accessory-thumbnail {
	width: 100%;
	height: 240px;
	overflow: hidden;
	background-color: #f8f9fa;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.euro-accessory-thumbnail a {
	display: block;
	width: 100%;
	height: 100%;
}

.euro-accessory-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.euro-accessory-card:hover .euro-accessory-thumbnail img {
	transform: scale(1.08);
}

.euro-accessory-content {
	padding: 20px;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.euro-accessory-title {
	font-size: 16px;
	font-weight: 700;
	margin: 0;
	line-height: 1.4;
	color: #1a1a1a;
}

.euro-accessory-title a {
	color: #1a1a1a;
	text-decoration: none;
	transition: color 0.3s ease;
	display: block;
}

.euro-accessory-title a:hover {
	color: #0056b3;
}

.euro-accessory-taxonomy {
	font-size: 12px;
	color: #6c757d;
	margin: 0 0 8px 0;
	font-weight: 400;
}

.euro-accessory-excerpt {
	font-size: 13px;
	color: #6c757d;
	line-height: 1.6;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}


.euro-accessory-card:hover .euro-accessory-content::after {
	gap: 8px;
}

/* Responsive Design */
@media (max-width: 1100px) {
	.euro-product-single-wrapper {
		max-width: 100%;
	}
}

@media (max-width: 968px) {
	.euro-product-header {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

@media (max-width: 768px) {
	.euro-product-title {
		font-size: 24px;
	}

	.euro-product-info-section{
		margin-top: 0;
	}

	.euro-product-feature-icons {
		gap: 0;
	}

	.euro-feature-icon-item {
		padding: 10px 15px;
		font-size: 13px;
	}
	.euro-spec-item{
		flex-direction: column;
	}
	.euro-spec-name{
		text-align: center;
	}
	.euro-spec-value{
		text-align: center;
		font-size: 18px;
	}
	.euro-spec-icon{
		width: 24px;
		height: 24px;
	}

	.euro-product-main-media {
		height: 300px;
	}

	.euro-tab-button {
		font-size: 12px;
	}

	.euro-product-specs-grid {
		grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
	}

	.euro-related-accessories-grid {
		grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	}

	.euro-document-item {
		flex-direction: column;
		align-items: flex-start;
	}

	.euro-document-download {
		width: 100%;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.euro-product-single-wrapper {
		padding: 15px;
	}

	.euro-product-title {
		font-size: 20px;
	}

	.euro-product-main-media {
		height: 250px;
	}

	.euro-thumbnail-item {
		width: 60px;
		height: 60px;
	}

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