.watch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  padding: 10px;
}

.watch-box {
  display: block;
  height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
  text-decoration: none;
  color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  
}

.watch-title {
  background: rgba(0, 0, 0, 0.6);
  padding: 8px 10px;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
}

/* Optional: Limit max columns on larger screens */
@media (min-width: 768px) {
  .watch-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 767px) {
  .watch-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
