/* Product Cards Shortcode Styles */

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

.euro-event-product-cards {
	margin: 20px 0;
	font-family: 'Roboto', sans-serif;
}

.euro-event-grid {
	display: grid;
	gap: 12px;
	margin: 0;
}

.euro-event-col-1 { grid-template-columns: 1fr; }
.euro-event-col-2 { grid-template-columns: repeat(2, 1fr); }
.euro-event-col-3 { grid-template-columns: repeat(3, 1fr); }
.euro-event-col-4 { grid-template-columns: repeat(4, 1fr); }
.euro-event-col-5 { grid-template-columns: repeat(5, 1fr); }
.euro-event-col-6 { grid-template-columns: repeat(6, 1fr); }

.euro-event-product-card {
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
	height: 100%;
	width: 259px;
	display: flex;
	flex-direction: column;
	font-family: 'Roboto', sans-serif;
}

.euro-event-product-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.euro-event-product-badge {
	position: absolute;
	top: 12px;
	right: 12px;
	background: #0B4F9F;
	color: white;
	padding: 6px 12px;
	border-radius: 5px;
	font-size: 14px;
	font-weight: 700;
	z-index: 2;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.euro-event-product-image {
	position: relative;
	width: 100%;
	height: 240px;
	overflow: hidden;
	background: #f8f9fa;
}

.euro-event-product-image img {
	width: 100%;
	height: 100% !important;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.euro-event-product-card:hover .euro-event-product-image img {
	transform: scale(1.05);
}

.euro-event-product-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #e9ecef;
	color: #6c757d;
	font-size: 14px;
}

.euro-event-product-content {
	padding: 20px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.euro-event-product-title {
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 15px 0;
	color: #2c3e50;
	line-height: 1.3;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.euro-event-product-title a {
	color: #2c3e50;
	text-decoration: none;
	transition: color 0.3s ease;
}

.euro-event-product-title a:hover {
	color: #3498db;
}

.euro-event-product-icons {
	display: flex;
	gap: 8px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.euro-event-feature-icon {
	width: 31px;
	height: 31px !important;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
}

.euro-event-feature-icon:hover {
	transform: scale(1.1);
	border-color: #1e73be;
}

.euro-event-feature-icon img {
	width: 31px;
	height: 31px !important;
	object-fit: contain;
}

.euro-event-product-actions {
	margin-top: auto;
	text-align: right;
}

.euro-event-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 0;
	border: none;
	background: none;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
	color: #000000;
}

.euro-event-btn-icon {
	width: 16px;
	height: 16px;
	object-fit: contain;
}

.euro-event-btn-details:hover {
	color: #155a9c;
	text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1200px) {
	.euro-event-col-4 { 
		grid-template-columns: repeat(3, 1fr); 
	}
	.euro-event-col-5,
	.euro-event-col-6 { 
		grid-template-columns: repeat(4, 1fr); 
	}
}

@media (max-width: 992px) {
	.euro-event-col-3,
	.euro-event-col-4,
	.euro-event-col-5,
	.euro-event-col-6 { 
		grid-template-columns: repeat(2, 1fr); 
	}
}

@media (max-width: 768px) {
	.euro-event-grid {
		gap: 15px;
	}
	
	.euro-event-col-1,
	.euro-event-col-2,
	.euro-event-col-3,
	.euro-event-col-4,
	.euro-event-col-5,
	.euro-event-col-6 { 
		grid-template-columns: 1fr !important; 
	}
	
	.euro-event-product-card {
		margin-bottom: 15px;
		height: 448px;
		width: 100%;
	}
	
	.euro-event-product-image {
		height: 267px;
	}
	
	.euro-event-product-content {
		padding: 15px;
	}
	
	.euro-event-product-title {
		font-size: 22px;
		min-height: auto;
	}
	
	.euro-event-feature-icon {
		width: 35px;
		height: 35px;
	}
	
	.euro-event-feature-icon img {
		width: 31px;
		height: 31px !important;
	}
}

@media (max-width: 480px) {
	.euro-event-product-image {
		height: 267px;
	}
	
	.euro-event-product-badge {
		font-size: 11px;
		padding: 5px 10px;
	}
}

/* Timeline Navigation for Mobile Sliders */
.euro-event-product-cards-mobile {
	position: relative;
}

.timeline-navigation {
	display: none;
	gap: 10px;
	justify-content: center;
	margin-top: 20px;
}

@media (max-width: 768px) {
	.timeline-navigation {
		display: flex;
	}
}

.timeline-prev,
.timeline-next {
	background: #f3f4f6;
	border: 2px solid #7BCEF4;
	border-radius: 13px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	color: #6b7280;
}

.timeline-prev:hover,
.timeline-next:hover {
	background: #2563eb;
	color: white;
}

.timeline-prev:disabled,
.timeline-next:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}