/* shop-at.css */
.shop-at-container {
  padding: 40px 20px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.shop-at-heading {
  font-size: 36px;
  margin-bottom: 30px;
  color: #073550;
  font-weight: 600;
}

.marketplace-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.marketplace-link {
  display: block;
  transition: transform 0.3s ease;
}

.marketplace-link:hover {
  transform: scale(1.05);
}

.marketplace-img {
  width: 200px;
  height: 60px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

@media (max-width: 600px) {
  .marketplace-links {
    flex-direction: column;
    gap: 20px;
  }
  
  .marketplace-img {
    width: 180px;
  }
}