.shops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  padding: 0 1rem;
}

.shop-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e5e7eb;
}

.shop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.shop-card.coming-soon {
  opacity: 0.7;
  background: #f9fafb;
}

.shop-card.coming-soon:hover {
  transform: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.shop-image {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
}

.shop-logo {
  min-width: 1rem;
  min-height: 1rem;
  object-fit: fill;
}

.placeholder-logo {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  color: white;
}

.shop-info {
  padding: 1.5rem;
  text-align: center;
}

.shop-name {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 0 0.5rem 0;
  color: #1f2937;
}

.shop-description {
  color: #6b7280;
  margin: 0 0 1.5rem 0;
  line-height: 1.5;
  font-size: 0.95rem;
}

.shop-link {
  display: inline-block;
  background: #4f46e5;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.shop-link:hover {
  background: #4338ca;
  text-decoration: none;
  color: white;
}

.shop-link.disabled {
  background: #d1d5db;
  color: #9ca3af;
  cursor: not-allowed;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .shops-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .shop-image {
    height: 150px;
  }

  .shop-logo {
    max-width: 100px;
    max-height: 100px;
  }

  .placeholder-logo {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}
