/* Font Faces */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/inter/Inter-Regular.otf") format("opentype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/inter/Inter-Bold.otf") format("opentype");
}

/* Product Display Elements */
#prli_pd_badge_text {
  display: inline-block;
  padding: 10px;
  background-color: #ffab0a;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  border-radius: 0px 0px 8px 8px;
}

#prli_pd_title,
#prli_pd_price {
  color: #363636;
}

#prli_pd_title {
  padding: 0 !important;
  font-size: 32px !important;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  margin: 0 !important;
  margin-bottom: 15px !important;
}

#prli_pd_price {
  font-size: 16px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  margin: 0 !important;
  margin-bottom: 15px !important;
}

#prli_pd_affiliate_disclosure {
  color: #9c9c9c;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 400;
  font-style: italic;
  margin-top: 15px;
}

.prli-pd-description-text {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 8px 0;
  color: #828282;
  font-size: 15px;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
}

.prli-pd-description-text p {
  margin: 0;
  font-size: 15px;
}

.prli-pd-description-text ul {
  padding: 0 0 0 25px;
  margin: 5px 0 5px 10px;
  list-style-type: disc;
}

.prli-pd-description-text li {
  margin: 0 0 5px 0;
  display: list-item;
}

.prli-pd-btns .prli-pd-btn {
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
  padding: 10px 24px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  margin-right: 10px;
}

.prli-pd-btns {
  display: flex;
  margin-top: 15px;
}

.prli-pd-main-wrapper {
  margin: 20px 25px 20px 0px;
  display: flex;
  word-wrap: break-word;
}

.prli-pd-image {
  flex: 0 0 40%;
  max-width: 40%;
  padding-right: 15px;
}

.prli-pd-content {
  flex: 0 0 60%;
  max-width: 60%;
}

.prli-pd-single .prli-pd-content {
  margin: auto;
}

.prli-pd-image img {
  max-width: 100% !important;
  height: auto;
  max-height: 300px;
  overflow: hidden;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

/* Media Queries */
@media screen and (max-width: 860px) {
  .prli-pd-main-wrapper {
    flex-direction: column;
  }

  .prli-pd-image,
  .prli-pd-content {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .prli-pd-single .prli-pd-content {
    margin: 0 auto;
    margin-top: 20px;
  }

  .prli-pd-btns {
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }

  .prli-pd-btns .prli-pd-btn {
    padding: 8px 12px;
    font-size: 15px;
  }

  .prli-pd-btns .prli-pd-btn:not(:last-of-type) {
    margin-bottom: 15px;
  }
}
.prli-pd-spinner-wrap{
  display: none;
}
.prli-pd-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.prli-pd-spinner {
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid #ffffff;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  animation: spin 1s linear infinite; /* Rotation animation */
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.prli-pd-spinner-message {
  color: white;
  font-size: 20px;
}
.prli-pd-spinner-content{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.post-type-pretty-link-product .tooltip-inner,
.tooltipster-box .tooltipster-content {
  background-color: #e1e1e1;
  color: #000;
  font-weight: 500;
  padding: 10px 19px;
}
.post-type-pretty-link-product .tooltip .tooltip-arrow::before, .tooltipster-sidetip.tooltipster-borderless.tooltipster-top .tooltipster-arrow-border {
  border-top-color: #e1e1e1;
  border-bottom-color: #e1e1e1;
}