.shops-container {
  max-width: 900px;
  margin: 20px auto;
  padding: 15px;
}

.shops-header {
  text-align: center;
  margin-bottom: 30px;
  padding: 15px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 10px;
  color: white;
}

.shops-header h1 {
  font-size: 1.8em;
  margin-bottom: 5px;
}

.shops-header p {
  font-size: 0.9em;
  opacity: 0.9;
}

.shops-section {
  margin-bottom: 30px;
}

.section-title {
  font-size: 1.2em;
  color: #495057;
  margin-bottom: 15px;
  padding-bottom: 5px;
  border-bottom: 2px solid #e9ecef;
}

.shops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
}

.displaybox {
  background: white;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all 0.2s ease;
  text-align: center;
  border: 1px solid #eee;
}

.displaybox:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  border-color: #667eea;
}

.displaybox img {
  width: 100%;
  height: 100%;
  margin-bottom: 10px;
}

.shop-title {
  font-size: 1.1em;
  font-weight: 500;
  color: #333;
  margin: 8px 0 5px 0;
}

.shop-description {
  font-size: 0.85em;
  color: #666;
  margin: 0;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .shops-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}


.displaybox a {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* Specific styling for different shops */

/* Coming soon overlay for inactive shops */
.coming-soon {
  position: relative;
}

.coming-soon::after {
  content: 'Coming Soon';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.8);
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: bold;
  z-index: 10;
}

.coming-soon img {
  filter: grayscale(100%) opacity(0.5);
}

/* Responsive design */
@media (max-width: 768px) {
  .shops-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .displaybox {
    padding: 15px;
  }
  
  .displaybox img {
    width: 100%;
    height: 100%;
  }
  
  .shops-header h1 {
    font-size: 2em;
  }
  
  .shops-header p {
    font-size: 1em;
  }
}
