#productapp .add-to-cart {
  position: fixed;
  bottom: -100px;
  background: white;
  width: 100%;
  height: 100px;
  border-top: 1px solid lightgray;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  z-index: 99;
  transition: 1s;
}
#productapp .add-to-cart.visible {
  bottom: 0;
}
#productapp .add-to-cart button {
  width: 100%;
  height: 50px;
  color: white;
  border-radius: 6px;
  outline: none;
  border: none;
  background: #1F1F1F;
}
#productapp .cover {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 70px;
}
#productapp .cover img {
  height: 560px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#productapp .cover .text {
  padding: 45px 20px;
  position: relative;
}
#productapp .cover .text h1 {
  color: #1F1F1F;
  font-size: 24px;
  font-weight: 500;
}
#productapp .cover .text p {
  font-size: 16px;
  margin-top: 5px;
  color: #1F1F1F;
}
#productapp .cover .text .description {
  font-size: 14px;
  opacity: 0.9;
  padding-top: 18px;
  border-top: 1px solid lightgray;
}
#productapp .cover .text .quantity-selector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
}
#productapp .cover .text .quantity-selector .quantity-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 100%;
  height: 50px;
  font-size: 18px;
}
#productapp .cover .text .quantity-selector .quantity-box input {
  background: none;
  border: none;
  outline: none;
  text-align: center;
  color: #1F1F1F;
}
#productapp .cover .text .quantity-selector .quantity-box button {
  background: none;
  border: none;
  font-size: 24px;
  width: 40px;
  cursor: pointer;
  outline: none;
  color: #1F1F1F;
}
#productapp .cover .text .quantity-selector .quantity-box span {
  flex: 1;
  text-align: center;
  color: #1F1F1F;
  font-size: 16px;
}
#productapp .cover .text .quantity-selector .add-button {
  background: #1F1F1F;
  color: white;
  border: none;
  outline: none;
  height: 50px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
}
#productapp .cover .text .accordion {
  margin-top: 55px;
  margin-bottom: 80px;
}
#productapp .cover .text .accordion .accordion-item {
  border-bottom: 1px solid lightgrey;
}
#productapp .cover .text .accordion .accordion-item .accordion-header {
  background: none;
  border: none;
  outline: none;
  width: 100%;
  padding: 15px 0;
  font-size: 15px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #1F1F1F;
}
#productapp .cover .text .accordion .accordion-item .accordion-header .icon {
  font-size: 26px;
  transition: transform 0.3s ease;
}
#productapp .cover .text .accordion .accordion-item .accordion-body {
  height: 0px;
  width: 100%;
  overflow: hidden;
  padding: 0 15px;
  font-size: 14px;
  color: #1F1F1F;
  transition: 1s;
  display: block;
  opacity: 1;
}
#productapp .cover .text .accordion .accordion-item .accordion-body.active {
  height: 190px;
}
#productapp .cover .text #imgLoop {
  margin-top: 5px;
}
#productapp .cover .text #imgLoop img {
  margin-bottom: 8px;
  border-radius: 6px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}
#productapp .main-image {
  box-shadow: 0px 10px 10px rgb(230, 230, 230);
  text-align: center;
  background: rgb(240, 240, 240);
  height: auto;
  padding-bottom: 40px;
}
#productapp .main-image img {
  margin-top: 40px;
  width: 325px;
  height: 300px;
}
#productapp #productImages {
  margin-top: 40px;
  width: 100%;
  text-align: center;
}
#productapp #productImages h1 {
  font-size: 14px;
  width: 100%;
}
#productapp #productImages #imgLoop {
  width: 33%;
  display: inline-block;
}
#productapp #productImages #imgLoop #imgDiv {
  width: 100%;
}
#productapp #productImages #imgLoop #imgDiv img {
  margin: 10px;
  width: 100px;
  height: 100px;
}
#productapp #addToCart {
  width: 100%;
  text-align: center;
}
#productapp #addToCart button {
  font-size: 16px;
  width: 80%;
  margin: 40px;
  padding: 5px;
  background: #2d9cb3;
  color: white;
  border: none;
  outline: none;
  text-align: center;
  text-transform: uppercase;
  transition: 0.3s;
}
#productapp #addToCart button:hover {
  background: #1c6f80;
}
#productapp #ifInCart {
  width: 100%;
  text-align: center;
}
#productapp #ifInCart p {
  font-size: 14px;
  width: 80%;
  margin: 40px;
  padding: 5px;
  background: #2d9cb3;
  color: white;
  border: none;
  outline: none;
  text-transform: uppercase;
}
#productapp .subtitle {
  text-align: center;
  font-size: 24px;
  margin: 40px;
  margin-bottom: 0;
}
#productapp #reviewSection {
  text-align: center;
}
#productapp #reviewSection #reviewCard {
  margin: 50px;
  margin-left: 0;
  margin-right: 0;
  border: 1px solid rgb(160, 160, 160);
}
#productapp #reviewSection #reviewCard #reviewText {
  font-size: 16px;
  margin: 20px;
}/*# sourceMappingURL=product.css.map */