#shop-page {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  display: none; /* Hidden by default */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1000; /* Above other elements */
}

#shop-page .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: red;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}

#shop-page .shop-body {
  text-align: center;
  height: 80vh;
  width: 100vw;
  display: grid;
  grid-template-columns: 75vw 1fr;
}

#shop-page .shop-basket {
  background: red;
}

#shop-page .shop-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  background-color: blue;
  padding: 100px;
  max-height: 600px; /* Adjust based on your design */
  overflow-y: auto;
}

/* Optional: Style the scrollbar */
.shop-content::-webkit-scrollbar {
  width: 8px;
}

.shop-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.shop-content::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.shop-content::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.shop-item {
  width: 25rem;
  height: 7rem;
  background: #222;
  padding: 20px;
  border-radius: 10px;
  align-items: center;
  display: flex; /* Add this */
  gap: 15px; /* Add spacing between image and text */
}

.shop-item-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}

.item-name {
  margin: 0;
}

.shop-item-details {
  text-align: left;
}

.basket-btn {
  padding: 10px;
  background-color: green;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.basket-number-btn {
  background-color: rgb(86, 187, 86);
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.shop-item-image {
  width: 100px;
  height: 100px;
  object-fit: cover;
}
