/*---------------------------------- fonts ----------------------------------*/
/*---------------------------------- ellipsis ----------------------------------*/
/*---------------------------------- line text ----------------------------------*/
/*---------------------------------- text gradient ----------------------------------*/
/*---------------------------------- glass effect ----------------------------------*/
/*---------------------------------- card shadow ----------------------------------*/
/*---------------------------------- font icon ----------------------------------*/
/*---------------------------------- overlay ----------------------------------*/
/*---------------------------------- border radius ----------------------------------*/
/*---------------------------------- line ----------------------------------*/
/*---------------------------------- background image ----------------------------------*/
/*---------------------------------- scroll bar ----------------------------------*/
/*---------------------------------- media query ----------------------------------*/
/*---------------------------------- flex ----------------------------------*/
/*---------------------------------- Second Language ----------------------------------*/
.header-list {
  /* header list item  */
  /* header list link  */
}
@media only screen and (max-width: 575.98px) {
  .header-list {
    flex-direction: column;
    gap: 6px 0;
  }
}
.header-list__item {
  margin-left: 15px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* item last child */
  /* item after */
}
.header-list__item:last-child::after {
  display: none;
}
.header-list__item::after {
  content: "";
  display: block;
  width: 2.5px;
  height: 2.5px;
  border-radius: 50%;
  background-color: #8d9aa8;
  margin-right: 15px;
}
.header-list__link {
  font-size: 13px;
  /* link title */
  /* link text */
}
.header-list__link .title {
  font-weight: 300;
  color: #6e6e6e;
  margin-left: 5px;
}
.header-list__link .text {
  font-weight: 400;
  color: #888;
}

/* header list */
.product-info {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 30px 45px;
  box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
  margin-bottom: 45px;
  /* product info header */
  /* product info title */
  /* product info content */
}
.product-info__header {
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.product-info__title {
  font-size: 21.5px;
  font-weight: bold;
  color: #333;
  margin-bottom: 12px;
}
.product-info__content {
  margin-top: 10px;
}
.product-info__content .text {
  line-height: 1.8;
}
.product-info__content img {
  float: left;
  margin-top: 10px;
  margin-right: 15px;
  margin-bottom: 3px;
  margin-left: 0;
  border-radius: 5px;
  width: 300px;
  height: 200px;
  object-fit: cover;
  max-width: 100%;
}
@media screen and (max-width: 767.98px) {
  .product-info__content img {
    float: none;
    width: 100%;
    display: flex;
    margin: auto;
    margin-bottom: 15px;
  }
}

/* product info */
.product-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

/*# sourceMappingURL=product-detail.css.map */
