body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #000;
  color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

header {
  margin-bottom: 20px;
}

h1 {
  margin: 0;
  color: #fff;
}

input[type="search"] {
  display: block;
  font-size: 1rem;
  margin-bottom: 20px;
  padding: 5px;
  width: 100%;
  background-color: #222;
  color: #fff;
  border: none;
  border-radius: 5px;
}

input[type="search"]::placeholder {
  color: #aaa;
}

#category-buttons {
  display: flex;
  align-items: start;
  justify-content: flex-start;
  gap: 20px;
}

.categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.categories a, #all-categories {
  border-radius: 5px;
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 5px 10px;
  text-decoration: none;
}

.categories a {
  background-color: #333;
  color: #fff;
  white-space: nowrap;
  width: auto !important;
}

.categories a:hover {
  background-color: #2c3e50;
}

#all-categories {
  background-color: #fff;
  color: #333;
  white-space: nowrap;
}

.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 20px;
}

.square {
  background-color: #222;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.square img {
  display: block;
  max-width: 100%;
  object-fit: cover;
  height: 200px;
  width: 100%;
  background-color: #002;
}

.square-info {
  padding: 10px;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.square-info h2 {
  font-size: 1.2rem;
  margin: 0 0 5px;
  color: #fff;
}

.card-description {
  margin-bottom: auto;
  color: #ccc;
}

.card-tags {
  margin-bottom: 0;
  color: #ccc;
}

.tags {
  font-size: 0.9rem;
  margin: 10px 0;
}

.card-rating {
  display: flex;
  align-items: center;
  color: gold;
}

.card-rating span {
  margin-left: 5px;
}

a {
  text-decoration: none;
  color: #fff;
}

.slick-prev {
  position: fixed;
  top: 40% !important;  /* Reduced the percentage to bump up the arrows */
  transform: translateY(-50%);
  z-index: 2;
  left: 20px;
}

.slick-next {
  position: fixed;
  top: 40% !important;  /* Reduced the percentage to bump up the arrows */
  transform: translateY(-50%);
  z-index: 2;
  right: 20px;
}



.slick-slider {
  width: 86%;
}