.product-section .product .product-body {
  background: var(--gray-200);
  padding: 20px;
  border: 1px solid var(--gray-color);
}
@media (max-width: 576px) {
  .product-section .product .product-body {
    padding: 20px 0;
  }
}
.product-section .product .product-body .product-description .product-name {
  margin-bottom: 15px;
  margin-left: 15px;
}
.product-section .product .product-body .product-description .description {
  padding: 15px;
}
@media (max-width: 576px) {
  .product-section .product .product-body .product-description .description {
    font-size: 14px;
  }
}
.product-section .product .product-body .product-description .description p {
  margin-bottom: 10px;
}
.product-section .product .product-body .product-info .accordion-body ul {
  list-style: disc;
}
.product-section .product .product-body .product-info .accordion-body ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
  position: relative;
}
.product-section .product .product-body .product-info .accordion-body ul li::before {
  content: "";
  width: 5px;
  height: 5px;
  background-color: var(--black-color);
  position: absolute;
  top: 8px;
  left: -10px;
}
.product-section .product .product-body .product-info .accordion-body p {
  position: relative;
}
.product-section .product .product-body .product-info .accordion-body p::before {
  content: "";
  width: 5px;
  height: 5px;
  background-color: var(--black-color);
  position: absolute;
  top: 8px;
  left: -10px;
}
.product-section .product .product-body .product-info .product-list .item {
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
}
.product-section .product .product-body .product-info .product-list .item::before {
  content: "";
  width: 5px;
  height: 5px;
  background-color: var(--black-color);
  position: absolute;
  top: 8px;
  left: -10px;
}
.product-section .product .product-body .product-info .product-details .item-details {
  text-transform: capitalize;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  position: relative;
}
@media (max-width: 576px) {
  .product-section .product .product-body .product-info .product-details .item-details {
    font-size: 14px;
  }
}
.product-section .product .product-body .product-info .product-details .item-details::before {
  content: "";
  width: 5px;
  height: 5px;
  background-color: var(--black-color);
  position: absolute;
  top: 8px;
  left: -10px;
}
