@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
/* product-hero-section css starts here*/
.product-hero-section {
  padding: 6.5rem 0;
}
.product-main-div {
  display: flex;
  gap: 1.875rem;
}
.product-image-div {
  width: 55%;
}
.product-main-image {
  width: 100%;
  border-radius: 2rem;
  border: 1px solid #cfcdcd;
  display: block;
}
.product-images-gallery {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.125rem;
}
.product-images-gallery img {
  width: calc((100% - 5rem) / 6);
  border-radius: 0.5rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  opacity: 60%;
}
.product-images-gallery img:hover {
  transform: scale(1.05);
  opacity: 100%;
}
.product-images-gallery img.active {
  border-color: #fe5c6b;
  border-radius: 1.5rem;
  opacity: 100%;
}
.product-info-div {
  width: 38%;
  padding-top: 0.75rem;
}
.product-info-div h2 {
  font-weight: 800;
  font-size: 2.625rem;
  line-height: 3.6rem;
  letter-spacing: 0rem;
  text-transform: capitalize;
  color: #343434;
}
.product-info-div p {
  color: #494349;
  font-weight: 500;
  margin-top: 1.25rem;
  line-height: 1.375rem;
}
.product-info-price {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  align-items: center;
}
.product-info-price h3 {
  font-weight: 700;
  font-size: 2rem;
  line-height: 170%;
  color: #0d0c0d;
  font-family: "Open Sans", sans-serif;
}
.product-info-price h5 {
  font-weight: 400;
  font-size: 1rem;
  line-height: 170%;
  letter-spacing: 0rem;
  text-decoration: line-through;
  color: #807681;
  font-family: "Open Sans", sans-serif;
}
.product-info-div h6 {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 170%;
  letter-spacing: 0rem;
  color: #fe5c6b;
  font-family: "Open Sans", sans-serif;
}
.add-to-cart-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.1rem;
  padding: 1rem;
  background: #fe5c6b;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.5rem;
  border: none;
  border-radius: 2.4375rem;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.add-to-cart-button img {
  width: 1.5rem;
  height: 1.5rem;
}
/* product-hero-section css ends here*/

/* product-review-section css starts here */
.product-reviews-container {
  background: #fcfcfc;
  padding: 1.5rem;
  border: 1px solid #f8f7f8;
  border-radius: 2rem;
}
.reviews-main-div {
  display: flex;
  gap: 4rem;
}
.rating-summary {
  width: 35%;
}
.summary-title {
  font-weight: 600;
  font-size: 1.375rem;
  line-height: 170%;
  letter-spacing: 0rem;
  color: #0d0c0d;
}
.summary-average {
  font-family: "Open Sans", sans-serif;
  margin-top: 0.3125rem;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 170%;
  color: #494349;
}
.rating-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 1.5rem;
}
.rating-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.rating-label {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 170%;
  display: flex;
  align-items: center;
  gap: 0.4375rem;
}
.rating-label img {
  width: 16px;
  height: 16px;
}
.rating-bar {
  flex: 1;
  height: 0.5rem;
  background: #eee;
  border-radius: 0.75rem;
  overflow: hidden;
}
.rating-fill {
  height: 100%;
  background: #fe5c6b;
  border-radius: 1.5rem;
}
.rating-count {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 170%;
  color: #000000;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.count-dot {
  font-size: 0.5625rem;
}
.rating-5 {
  width: 70%;
}
.rating-4 {
  width: 60%;
}
.rating-3 {
  width: 2%;
}
.rating-2 {
  width: 2%;
}
.rating-1 {
  width: 2%;
}
.reviews-list {
  width: 65%;
}
.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.reviews-sort {
  font-size: 0.875rem;
  color: #86dbdc;
  cursor: pointer;
  font-weight: 600;
  line-height: 1.125rem;
  text-align: center;
  vertical-align: middle;
}
.review-card {
  margin-bottom: 1rem;
}
.review-title {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 170%;
  margin-bottom: 0.3125rem;
  color: #000000;
}
.review-stars {
  margin-top: 0.25rem;
  display: flex;
  gap: 0.3125rem;
}
.review-stars img {
  width: 16px;
  height: 16px;
}
.review-card .review-text {
  color: #494349;
  line-height: 170%;
  margin-top: 0.25rem;
  font-family: Raleway;
  font-weight: 400;
  font-size: 0.875rem;
}
.product-description-div {
  margin-top: 2rem;
}
.product-description-div h3 {
  font-weight: 600;
  font-size: 1rem;
  line-height: 170%;
  color: #000;
}
.product-description-div p {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 170%;
  color: #494349;
  margin-top: 1rem;
}
.product-description-div ul {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 170%;
  color: #494349;
  margin-top: 1rem;
}
/* product-review-section css ends here */

/* product-cta-section css starts here */
.product-cta-section {
  padding: 13.75rem 0 10rem;
  background-image: url(/staticfiles/images/product-cta-section-background.webp);
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 6.5rem;
}
.product-cta-main-div {
  display: flex;
  align-items: center;
}
.cta-section-content {
  max-width: 45%;
}
.cta-section-content h2 {
  font-weight: 800;
  font-size: 3rem;
  line-height: 3.3rem;
  color: #fe5c6b;
}
.cta-section-content p {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 2.125rem;
  color: #808080;
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .product-main-div {
    flex-direction: column;
  }
  .product-image-div,
  .product-info-div {
    width: 100%;
  }
  .product-images-gallery img {
    width: calc((100% - 3rem) / 4);
  }
}
