/* Store Logos Section */
.store-logos {
  background: white;
  padding: 4rem 0;
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
}

.store-logos .section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #1f2937;
  margin-bottom: 3rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  margin: 2rem auto;
  padding: 0 2rem;
  width: 100%;
  max-width: 1200px;
}

.store-logo {
  height: 45px;
  width: auto;
  object-fit: contain;
  opacity: 1;
  transition: all 0.3s ease;
}

.store-logo:hover {
  transform: translateY(-2px);
}

.stores-caption {
  text-align: center;
  color: var(--color-gray-600);
  font-size: 1.1rem;
  margin-top: 2rem;
  font-style: italic;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .store-logos {
    padding: 3rem 0;
  }

  .store-logos .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .logo-grid {
    gap: 2rem;
    padding: 0 1rem;
  }

  .store-logo {
    height: 32px;
  }

  .stores-caption {
    font-size: 0.9rem;
    margin-top: 1.5rem;
  }
}

@media (max-width: 480px) {
  .logo-grid {
    gap: 1.5rem;
    padding: 0 0.5rem;
  }

  .store-logo {
    height: 28px;
  }
} 