<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.loops-section {
  width: 100%;
  overflow: visible;
}

.loops-content {
  padding: 0 100px;
  margin: 0 auto;
}

.loops-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.loops-titles {
  display: flex;
  flex-direction: column;
}

.loops-titles h2 {
  margin: 0;
  color: var(--Primary-Vibrante-blue, #001671);
  font-family: Poppins;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.loops-subtitle {
  color: var(--Neutral-Dark-Grey, #545454);
  font-family: Montserrat;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.loops-navigation {
  display: flex;
  gap: 1rem;
}

.loops-container {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-right: 1px;
}

.loops-wrapper {
  overflow: hidden;
}

.loops-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease-out;
}

.loop-item {
  margin-bottom: 60px;
}

.nav-button {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
  position: relative;
}

/* Style pour le bouton "suivant" */
.next-button {
  background: linear-gradient(90deg, #00ACFC 0%, #001671 100%);
  color: white;
}

.next-button:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* Style pour le bouton "prÃ©cÃ©dent" */
.prev-button {
  background: white;
  color: var(--Primary-Vibrante-blue, #001671);
  border: 2px solid transparent;
  background-image: linear-gradient(white, white), 
                    linear-gradient(90deg, #001671 0%, #00ACFC 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.prev-button:hover {
  transform: translateY(-1px);
}

.nav-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* Overlay pour mobile */
.mobile-filters-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  display: none;
}

.mobile-filters-overlay.show {
  display: block;
}

@media (min-width: 1440px) {
  .loops-content {
    max-width: 1320px;
    margin: 0 auto;
  }
}

@media (max-width: 1242px) {
  .loops-content {
    padding: 0 50px;
  }

  .loop-item {
    flex: 0 0 calc((100% - 20px) / 2);
    max-width: 50%;
  }

  #filtersContainer {
    display: none !important;
  }

  #toggleMobileFilters {
    display: block !important;
  }
  
  #filtersContainer.mobile-filters-open {
    display: block !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 9999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  #filtersContainer.mobile-filters-open .mobile-filters-header,
  #filtersContainer.mobile-filters-open .mobile-filters-footer {
    display: block !important;
  }
  
  #filtersContainer.mobile-filters-open .filters-content {
    padding: 1rem;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
  }
}
  
@media (min-width: 1200px) {
  #filtersContainer {
    display: block !important;
  }
  
  #toggleMobileFilters,
  .mobile-filters-header,
  .mobile-filters-footer {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .loops-content {
    padding: 0 20px;
  }
  
  .loops-track {
    gap: 10px;
  }
  
  .loop-item {
    flex: 0 0 100%;
    max-width: none;
  }
  
  .loops-header {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
  }
}</pre></body></html>