#page-header {
  background-image: url("image/shopImages/banner1.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  padding: 14px;
  height: 30vh;
  color: white;
}
#page-header h2,
#page-header p {
  color: white;
}

#pagination {
  text-align: center;
}
#pagination a {
  text-decoration: none;
  background-color: rgb(36, 36, 36);
  padding: 15px 20px;
  border-radius: 4px;
  color: white;
  font-weight: 600;
}
#pagination a i {
  font-size: 16px;
  font-weight: 600;
}

/* Product details */
#prodet {
  display: flex;
  margin-top: 20px;
}
#prodet .single-pro-img {
  width: 40%;
  margin-right: 50px;
  cursor: pointer;
}
.small-img-grp {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.small-img-col {
  /* flex-basis: 24%; */
  cursor: pointer;
}
#prodet .single-pro-details {
  width: 50%;
  padding-top: 30px;
}
#prodet .single-pro-details h4 {
  padding: 40px 0 20px 0;
}
#prodet .single-pro-details h2 {
  font-size: 26px;
}
#prodet .single-pro-details select {
  display: block;
  padding: 5px 10px;
  margin-bottom: 10px;
}
#prodet .single-pro-details input {
  width: 50px;
  height: 47px;
  padding-left: 10px;
  font-size: 16px;
  margin-right: 10px;
}
#prodet .single-pro-details input:focus {
  outline: none;
}
#prodet .single-pro-details button {
  background-color: rgb(36, 36, 36);
  color: white;
}
#prodet .single-pro-details span {
  line-height: 25px;
}
#prodet .single-pro-details button:hover {
  background: transparent;
  color: black;
  border: 1px solid black;
}
/* Toast */
#toastBox {
  position: fixed;
  display: flex;
  align-items: flex-end;
  top: 100px;
  right: 30px;
  flex-direction: column;
  overflow: hidden;
  z-index: 99999;
}
.toast {
  width: 400px;
  height: 80px;
  background: #fff;
  color: rgb(36, 36, 36);
  font-weight: 500;
  margin: 15px 0;
  display: flex;
  align-items: center;
  gap: 20px;
  padding-left: 20px;
  font-size: 20px;
  position: relative;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  animation: move 0.5s linear forwards;
}
@keyframes move
{
  100%
  {
    transform: translateX(0);
  }
}
.toast i {
  font-size: 20px;
  color: green;
}
.toast::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: green;
  animation: anim 5s linear forwards;
}

@keyframes anim {
  100% {
    width: 0;
  }
}
