#filter-sidebar{
	width: 256px;
	min-width: 256px;
}
#particles-js{
position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
#main_header{
	min-height:224px;
}
#filter-sidebar>div{
	position: sticky;
    top: 10px;
}

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Roboto:wght@300;400;500;700&display=swap');

/* Custom Font Classes */
.font-inter {
  font-family: 'Inter', sans-serif;
}

.font-roboto {
  font-family: 'Roboto', sans-serif;
}

/* Custom Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse-soft {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

/* Animation Classes */
.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-slide-in-right {
  animation: slideInRight 0.6s ease-out forwards;
}

.animate-pulse-soft {
  animation: pulse-soft 2s ease-in-out infinite;
}

/* Custom Gradients */
.bg-blue-gradient {
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
}

.bg-green-gradient {
  background: linear-gradient(135deg, #10b981 0%, #047857 100%);
}

.bg-orange-gradient {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

/* Custom Shadows */
.shadow-custom {
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
}

.shadow-custom-lg {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Hover Effects */
.hover-lift {
  transition: all 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Custom Button Styles */
.btn-primary {
  @apply bg-blue-600 hover:bg-blue-700 text-white font-semibold py-3 px-6 rounded-lg shadow-lg hover:shadow-xl transition-all duration-300;
}

.btn-secondary {
  @apply bg-gray-100 hover:bg-gray-200 text-gray-800 font-semibold py-3 px-6 rounded-lg shadow-md hover:shadow-lg transition-all duration-300;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active {
  transform: rotate(90deg);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Loading States */
.loading {
  position: relative;
  overflow: hidden;
}

.loading::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Responsive helpers */
.container-custom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (max-width: 480px) {
	#tuoitre_gtranslate{
		position: absolute;
        top: 20px;
        left: 130px;
        z-index: 100;
	}
}
@media (max-width: 768px) {
	#tuoitre_gtranslate{
		position: absolute;
        top: 23px;
        left: 130px;
        z-index: 100;
	}
}

@media (min-width: 768px) {
  .container-custom {
    padding: 0 2rem;
  }
  #tuoitre_gtranslate{
	position:fixed;
		top:23px;
		right:20px;
		z-index:100;
	}
}

@media (min-width: 1024px) {
  .container-custom {
    padding: 0 3rem;
  }
  #tuoitre_gtranslate{
	position:fixed;
		top:23px;
		right:20px;
		z-index:100;
	}
}

#tuoitre_gtranslate{
	width: 65px;
	height: 23px;
	text-align: center;
	align-items: center;
	margin: 0px auto;
	display: flex;
	justify-content: center;
}