body { font-family: 'Open Sans', -apple-system, sans-serif; background: #f5f0e8; color: #1e2351; }
h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', Georgia, serif; }
.container-s { max-width: 1280px; margin: 0 auto; padding-left: 1.25rem; padding-right: 1.25rem; }
@media (min-width: 768px) { .container-s { padding-left: 2rem; padding-right: 2rem; } }

/* FAQ accordion */
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-answer.open { max-height: 300px; padding-bottom: 1.25rem; }
.faq-chevron { transition: transform 0.3s ease; }
.faq-chevron.open { transform: rotate(180deg); }

/* Collection carousel */
.collection-carousel { position: relative; overflow: hidden; }
.collection-carousel .carousel-track { display: flex; transition: transform 0.3s ease; }
.collection-carousel .carousel-slide { flex: 0 0 100%; min-width: 0; }
.collection-carousel .carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 28px; height: 28px; background: rgba(255,255,255,0.8); backdrop-filter: blur(4px); border-radius: 50%; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.2s; font-size: 14px; color: #1e2351; }
.collection-carousel:hover .carousel-btn { opacity: 1; }
.collection-carousel .carousel-btn.prev { left: 8px; }
.collection-carousel .carousel-btn.next { right: 8px; }

/* Logo grid items */
.logo-card { background: #fff; border: 1px solid #ece5d9; border-radius: 0.5rem; padding: 1rem; display: flex; align-items: center; justify-content: center; height: 6rem; }

/* Sticky mobile CTA */
@media (min-width: 768px) { .mobile-cta { display: none !important; } }

/* Carousel container */
.logo-carousel-row {
  overflow: hidden;
  /*margin: 30px 0;*/
  width: 100%;
}

/* Track that scrolls */
.logo-track {
  display: flex;
  gap: 40px;
  width: max-content; /* ensures track fits all logos inline */
  animation: scroll-left 30s linear infinite;
  align-items: center;
}

/* Individual logos */
.logo {
  flex: 0 0 auto;
  width: 140px;
}

/* Duplicate logos inside track for seamless scroll */
.logo-track .logo {
  margin-right: 40px;
}

/* Animation keyframes */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Reverse scroll for 2nd row */
.logo-carousel-row:nth-child(2) .logo-track {
  animation-direction: reverse;
  animation-duration: 35s;
}

/* Different speed for 3rd row */
.logo-carousel-row:nth-child(3) .logo-track {
  animation-duration: 28s;
}

.d-none{
 display: none !important;
}