.product-page {
  color: #000;
  font-family: "Montserrat", sans-serif;
}

.product-page-title {
  font-weight: 600;
}
@media (max-width: 1024px) {
  .product-page-title {
    margin-top: 30px;
  }
  .product-page.pt-120 {
    padding-top: 10px !important;
  }
}
.product-page-subtitle {
  font-weight: 400;
  font-size: 22px;
}
.product-page-description {
  font-weight: 600;
  font-size: 15px;
  margin: 5px 0;
  max-width: 80%;
}
.product-page-content {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.product-features {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 15px;
  margin: 10px 0;
}
.product-feature {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.product-feature-icon {
  width: 20px;
  height: 20px;
}
.product-feature-title {
  font-weight: 600;
  font-size: 18px;
}
@media (max-width: 1024px) {
  .product-feature-title {
    font-size: 16px;
  }
}

.product-info-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 0;
  flex-wrap: wrap;
}
.product-info-button {
  width: auto;
  height: 36px;
  border-radius: 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: #00d95f;
  color: #fff;
  gap: 8px;
  padding: 0 12px;
}
.product-info-button span {
  color: #fff;
  font-weight: 500;
  font-size: 13px;
}
.product-info-button:hover {
  background: #00be43;
}
.product-info-button.bookmark {
  background: #313139;
}
.product-info-button.bookmark:hover {
  background: #494952;
}
.product-info-button.bookmark .bookmark-unsaved {
  display: block;
}
.product-info-button.bookmark .bookmark-saved {
  display: none;
}

.product-info-button.bookmark.bookmarked .bookmark-unsaved {
  display: none;
}
.product-info-button.bookmark.bookmarked .bookmark-saved {
  display: block;
}

.product-info-guides {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  margin: 40px 0;
}
.product-info-guide {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.product-info-guide:first-child {
  margin-bottom: 10px;
}
.product-info-guide-icon {
  width: 30px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #787878 !important;
}
.product-info-guide-title {
  font-weight: 600;
  font-size: 16px;
  width: 80px;
}
.product-info-guide-label {
  font-weight: 500;
  font-size: 14px;
  width: 100px;
}
.product-info-guide-subtitle {
  font-weight: 600;
  font-size: 15px;
  width: 200px;
}
.product-info-guide-subtitle.price {
  width: auto;
}

.product-info-guide-title.en {
    width: 210px;
  }
  .product-info-guide-label.en {
    width: 140px;
  }
  .product-info-guide-subtitle.en {
    width: 210px;
  }

@media (max-width: 768px) {
  .product-info-guide-title.en {
    width: 155px;
  }
  .product-info-guide-label.en {
    width: 120px;
  }
  .product-info-guide-subtitle.en {
    width: 155px;
  }
}

.login-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.login-overlay.visible {
  display: flex;
}
.login-lightbox {
  width: 90%;
  max-width: 600px;
  background: #fff;
  border-radius: 5px;
  padding: 30px;
}

.login-lightbox-header {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

@media screen and (max-width: 1024px) {
  #product-page .pt-120 {
    padding-top: 20px;
  }
}