.lb-close {
  background-size: contain !important;
  width: 16px !important;
  height: 16px !important;
}

.product-cards-bar {
    width:100%;
  display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
     gap:32px;
  align-items: center;
  justify-content: center;
}

.product-detail {
  background-color: white;
  border-radius: 1rem;
}

.img-col {
  order: 1;
}
.info-col {
  order: 2;
}
.cart-col {
  order: 3;
}

.lb-next,
.lb-prev {
  opacity: 1 !important;
}

.product-subtitle {
  opacity: 0.8;
  font-size: 0.9rem;
}

.product-desc,
.product-list {
  margin-top: 1rem;
  margin-bottom: 1rem;
}


.product-desc ul li
 {
  list-style : disc;
  margin-bottom: 12px;
  line-height:2;
}

.product-list-ul,
.product-points-ul {
  padding-right: 2rem;
  padding-top: 0.8rem;
  list-style: disc;
}
.product-list-ul li,
.product-points-ul li {
  margin-bottom: 8px;
}

.product-points {
  background-color: var(--first-color-lighten);
  padding: 1rem;
  border-radius: 8px;
  margin: 2rem 0;
}
.product-points-heading {
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-gallery-image-container a {
  text-align: center;
}

.product-thumbnail {
  height: 300px;
  width: 300px;
}

.gallery-thumbnails {
  height: 300px;
  width: 300px;
}

.price-card {
  top: 100px;
}

  .product-details .product-title {
      font-size:24px;
  }
@media screen and (max-width: 900px) {
  .product-cards-bar {
    grid-template-columns: 1fr 1fr 1fr ;
     gap:32px;
  }
  .product-thumbnail {
    height: 250px;
    width: 250px;
  }
  .cart-col {
    order: 2;
    width: 100%;
    background-color: white;
    bottom: 0;
    left: 0;
  }
  .info-col {
    order: 3;
  }
  .product-details .product-title {
      font-size:16px;
    margin-top: 16px;
  }
}



