.singleProductContainer {
  background-color: white;
  box-shadow: 1px 1px 5px grey;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1140px;
  margin: auto;
  flex-direction: column;
}
.productMainContainer {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 5px 0px;
  width: 100%;
  min-height: 370px;
}
.productInfos {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.productTitle {
  display: flex;
  width: 100%;
  align-items: center;
  font-size: 2rem;
  font-weight: bold;
  color: #00a8a9;
}
.productPrice {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  width: 100%;
  font-weight: bold;
  justify-content: center;
}
.cmNumberPicker {
  width: 100%;
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
.flexCenter {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 1.2rem;
}
.cmNumberPickerButton {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  box-shadow: 1px 1px 5px grey;
  background-color: white;
  color: #96c93d;
  cursor: pointer;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}
.cmNumberPickerValue {
  font-weight: bold;
  width: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.infoSeparator {
  height: 15px;
}
.singleProductCarousel {
  max-width: 700px;
  width: 100%;
}
.showMainImage {

}
.showMainImage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height:95vh
}
.singleProductOtherImages {
  max-width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.singleProductOtherImages img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.productImage {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60%;
  max-width: 300px;
}
.productImage img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  max-height: 70vh
}
.forSingleProduct .forImage .cmModal {
  background-color: transparent;
}

@media screen and (max-width: 1000px) {
  .singleProductContainer {
    flex-direction: column;
  }
  .productInfos,
  .productPrice,
  .cmNumberPicker {
    justify-content: center;
    align-items: center;
  }
  .productTitle {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .productMainContainer {
    flex-direction: column;
  }
}
