.carpet-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.carpet-grid .gallery-item img {
  width: 100%;
  max-width: 150px;
  height: auto;
  cursor: pointer;
  border-radius: 8px;
  transition: transform 0.3s;
}
.carpet-grid .gallery-item img:hover {
  transform: scale(1.05);
}
.carpet-pagination {
  margin-top: 15px;
  text-align: center;
}
.carpet-pagination a {
  margin: 0 5px;
  text-decoration: none;
  color: #333;
  padding: 6px 12px;
  border-radius: 6px;
  background: #eee;
}
.carpet-pagination a:hover {
  background: #555;
  color: #fff;
}
.carpet-pagination .current {
  font-weight: bold;
  margin: 0 6px;
  padding: 6px 12px;
  background: #555;
  color: #fff;
  border-radius: 6px;
}
.music-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  padding: 8px 12px;
  border: none;
  border-radius: 50%;
  background: #333;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}
