.container {
  width: 100%;
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  flex-direction: row;
  margin-bottom: 25px;
}
.container .outside {
  width: calc(16% - 15px);
}
.itemcard2 {
  aspect-ratio: 3 / 5;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  border: solid rgba(0, 0, 0, 0.205) 1px;
  padding: 10px;
  justify-content: space-between;
  background: white;
  border-radius: 5px;
  filter: drop-shadow(4px 4px 6px rgba(0, 0, 0, 0.2));
}
.itemcard2 input {
  all: unset;
  width: 100%;
  text-align: center;
  font-size: 14px;
  background-color: var(--primary);
  color: white;
  padding: 10px 0;
  border-radius: 3px;
}
.itemcard2 input:hover {
  background-color: var(--secondary);
}
.itemcard2 > div {
  padding: 14px 0;
  align-items: center;
}
.itemcard2 div p {
  font-size: 16px;
}
.itemcard2 div h4 {
  font-size: 14px;
}
.pageno {
  display: flex;
  gap: 30px;
  justify-content: flex-start;
}
.selected-page {
  color: red;
  font-weight: bold;
}
.div-5 {
  width: 500px;
}
.div-6 {
  padding-top: 80px;
  white-space: nowrap;
  font: 400 20px/28px Open Sans, sans-serif;
}
.div-7 {
  fill: #ebebeb;
  display: flex;
  margin-top: 13px;
  width: 169px;
  max-width: 100%;
  flex-direction: column;
}
.div-8 {
  background-color: #cb0e4e;
  display: flex;
  height: 1px;
  flex-direction: column;
}
.genre-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /* Distribute items evenly along the main axis */
  align-items: center;
  /* Center items along the cross axis */
  margin-bottom: 20px;
  border: 1px solid #ccc;
  padding: 10px;
}
.genre-container .product {
  flex-basis: 24%;
  /* Set the initial size of each product box */
  margin-bottom: 10px;
}
.genre-container img {
  max-width: 100%;
  height: auto;
}
.sgenre {
  min-height: 40vh;
  margin: 10px 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.itemcard2 img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
