@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
.pcth-hero-section-search-toggle {
  color: #ffffff;
}
.pcth-hero-section-search-toggle .pcth-hero-st-toggle-container {
  display: flex;
  border: 1px solid #8D8C8C;
  border-radius: 24px;
  overflow: visible;
  position: relative;
  width: 100%;
  background-color: rgba(250, 250, 250, 0.2);
  margin-bottom: 1.5rem;
}
.pcth-hero-section-search-toggle .pcth-hero-st-toggle-container .pcth-hero-st-toggle-btn {
  width: 50%;
  background: none;
  border: none;
  padding: 8px 20px;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 500;
  color: #ffffff;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
  border-radius: 24px;
  line-height: 1em;
}
.pcth-hero-section-search-toggle .pcth-hero-st-toggle-container .pcth-hero-st-toggle-btn:hover {
  background-color: rgba(250, 250, 250, 0.3098039216);
}
@media screen and (max-width: 767px) {
  .pcth-hero-section-search-toggle .pcth-hero-st-toggle-container .pcth-hero-st-toggle-btn {
    font-size: 1rem;
  }
}
.pcth-hero-section-search-toggle .pcth-hero-st-toggle-container .pcth-hero-st-indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  border: 2px solid #ffffff;
  background-color: transparent;
  border-radius: 24px;
  transition: all 0.3s ease;
  z-index: 0;
}
.pcth-hero-section-search-toggle .pcth-hero-st-toggle-container .pcth-hero-st-indicator.right {
  transform: translateX(100%);
}
.pcth-hero-section-search-toggle .pcth-hero-section-search-caption {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .pcth-hero-section-search-toggle .pcth-hero-section-search-caption {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}
.pcth-hero-section-search-toggle .pcth-hero-section-searchbox-container {
  display: flex;
  background-color: #ffffff;
  border: 3px solid #ffffff;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 30px;
}
.pcth-hero-section-search-toggle .pcth-hero-section-searchbox-container .pcth-hero-section-searchbox-input {
  flex-grow: 1;
  padding: 10px 15px;
  border: none;
  outline: none;
  font-size: 1rem;
  color: #181818;
  background-color: transparent;
}
.pcth-hero-section-search-toggle .pcth-hero-section-searchbox-container .pcth-hero-section-searchbox-input::placeholder {
  color: rgba(98, 100, 106, 0.568627451);
  font-weight: 500;
}
.pcth-hero-section-search-toggle .pcth-hero-section-searchbox-container .pcth-hero-section-searchbox-button {
  display: flex;
  align-items: center;
  padding: 0 15px;
  background-color: #181818;
  border: none;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 24px;
  transition: background-color 0.2s;
}
.pcth-hero-section-search-toggle .pcth-hero-section-searchbox-container .pcth-hero-section-searchbox-button:hover {
  background-color: #404042;
}
.pcth-hero-section-search-toggle .pcth-hero-section-searchbox-container .pcth-hero-section-searchbox-button svg {
  margin-right: 5px;
  width: 24px;
  height: 24px;
  stroke: #ffffff;
}
@media screen and (max-width: 767px) {
  .pcth-hero-section-search-toggle .pcth-hero-section-searchbox-container .pcth-hero-section-searchbox-button {
    padding: 0 10px;
    font-size: 0.9rem;
  }
  .pcth-hero-section-search-toggle .pcth-hero-section-searchbox-container .pcth-hero-section-searchbox-button svg {
    margin-right: 0;
  }
  .pcth-hero-section-search-toggle .pcth-hero-section-searchbox-container .pcth-hero-section-searchbox-button span {
    display: none;
  }
}

.pcth-product-card-default {
  border-radius: 5px;
  background-color: #ffffff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #E4E5E7;
}
.pcth-product-card-default .product-image img {
  object-fit: cover;
  width: 100%;
  aspect-ratio: 1.667;
}
.pcth-product-card-default .product-content {
  padding: 1rem 1rem 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  gap: 10px;
}
.pcth-product-card-default .product-content .product-title {
  font-size: 1.1rem;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
}
.pcth-product-card-default .product-content .product-desc {
  font-size: 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0;
  line-height: 1.45em;
}
.pcth-product-card-default .product-content .product-meta {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.pcth-product-card-default .product-content .product-meta .rating {
  color: #FFBF5B;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  font-weight: 500;
}
.pcth-product-card-default .product-content .product-meta .rating img {
  height: 1rem;
  width: 1rem;
  object-fit: contain;
}
.pcth-product-card-default .product-content .product-meta .rating .count {
  color: #B5B6BA;
  font-size: 0.8rem;
}
.pcth-product-card-default .product-content .product-meta .tag img {
  height: 1.25rem;
  width: auto;
  object-fit: contain;
}
.pcth-product-card-default .product-footer {
  border-top: 1px solid #E4E4E4;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pcth-product-card-default .product-footer .deal-info {
  width: 50%;
  line-height: 1.35em;
}
.pcth-product-card-default .product-footer .deal-info .deal-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #74767E;
  text-transform: uppercase;
}
.pcth-product-card-default .product-footer .current-price {
  font-size: 1.3rem;
  font-weight: 500;
  color: #404145;
}
.pcth-product-card-default .product-footer .old-price {
  font-size: 0.9rem;
  text-decoration: line-through;
  color: #6C6E75;
}
.pcth-product-card-default .product-footer .category-btn {
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  line-height: 1em;
  height: fit-content;
  background-color: rgba(0, 0, 0, 0.0470588235);
  color: rgba(0, 0, 0, 0.6274509804);
  border-radius: 4px;
}

/** --- Hero Section Post Slider --- **/
.pcth-hero-post-slider {
  margin-bottom: 64px;
}
.pcth-hero-post-slider .splide__arrows {
  position: absolute;
  bottom: -64px;
  display: flex;
  gap: 1rem;
}
.pcth-hero-post-slider .splide__arrows .splide__arrow {
  position: static !important;
  background: #fff !important;
  opacity: 1 !important;
  transition: background 0.3s ease;
  /** -- Override Haru Theme Styles -- **/
  align-items: center;
  border: 0;
  border-radius: 50% !important;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  height: 2em;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0.7;
  padding: 0 !important;
  top: 50%;
  transform: translateY(-50%);
  width: 2em !important;
  z-index: 1;
}
.pcth-hero-post-slider .splide__arrows .splide__arrow:hover {
  background: #e2e2e2 !important;
}
.pcth-hero-post-slider .splide__pagination {
  display: none;
}

/** --- General Post Slider Styles --- **/
.pcth-default-product-slider .splide__arrows .splide__arrow {
  background: #000 !important;
  color: #fff;
  opacity: 1 !important;
  transition: background 0.3s ease;
  /** -- Override Haru Theme Styles -- **/
  align-items: center;
  border: 0;
  border-radius: 50% !important;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  height: 2em;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0.7;
  padding: 0 !important;
  top: 50%;
  transform: translateY(-50%);
  width: 2em !important;
  z-index: 1;
}
.pcth-default-product-slider .splide__arrows .splide__arrow path {
  fill: #fff;
}
.pcth-default-product-slider .splide__arrows .splide__arrow:hover {
  background: #363636 !important;
}
@media (max-width: 1024px) {
  .pcth-default-product-slider .splide__arrows .splide__arrow {
    display: none !important;
  }
}
.pcth-default-product-slider .splide__arrows .splide__arrow--prev {
  left: -1rem !important;
}
.pcth-default-product-slider .splide__arrows .splide__arrow--next {
  right: -1rem !important;
}

.pcth-sign-up-form .pcth-btn-black,
.pcth-login-form .pcth-btn-black {
  margin-top: 1.25rem;
  font-weight: 600;
  text-transform: none !important;
}
.pcth-sign-up-form .pcth-login-form-seperator,
.pcth-login-form .pcth-login-form-seperator {
  display: flex;
  align-items: center;
  text-align: center;
  border-bottom: 2px solid #D9D9D9;
  height: 0.5rem;
  justify-content: center;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.pcth-sign-up-form .pcth-login-form-seperator span,
.pcth-login-form .pcth-login-form-seperator span {
  background-color: #fff;
  padding: 0 10px;
  font-size: 1rem;
  color: #D9D9D9;
  margin-top: 0.5rem;
}
.pcth-sign-up-form .nsl-container-buttons,
.pcth-login-form .nsl-container-buttons {
  width: 100% !important;
}
.pcth-sign-up-form label,
.pcth-login-form label {
  font-weight: 600 !important;
  margin-bottom: 0.15rem !important;
  color: #000 !important;
  display: block;
}
.pcth-sign-up-form input[type=text],
.pcth-sign-up-form input[type=email], .pcth-sign-up-form input[type=password],
.pcth-login-form input[type=text],
.pcth-login-form input[type=email],
.pcth-login-form input[type=password] {
  width: 100%;
  background-color: #fff;
  border: 1px solid #E4E5E7;
  padding: 0.35rem 0.7rem;
}
.pcth-sign-up-form input[type=text]::placeholder,
.pcth-sign-up-form input[type=email]::placeholder, .pcth-sign-up-form input[type=password]::placeholder,
.pcth-login-form input[type=text]::placeholder,
.pcth-login-form input[type=email]::placeholder,
.pcth-login-form input[type=password]::placeholder {
  color: #808080;
}
.pcth-sign-up-form .nsl-button-linkedin,
.pcth-sign-up-form .nsl-button-google,
.pcth-login-form .nsl-button-linkedin,
.pcth-login-form .nsl-button-google {
  background-color: #fff !important;
  border: 1px solid #E4E5E7 !important;
  color: #000 !important;
}
.pcth-sign-up-form .nsl-button-linkedin svg,
.pcth-login-form .nsl-button-linkedin svg {
  padding: 4px;
  background-color: #0A66C2 !important;
  border-radius: 4px;
}
.pcth-sign-up-form .woocommerce-privacy-policy-text,
.pcth-sign-up-form #nsl-custom-login-form-1,
.pcth-sign-up-form #nsl-custom-login-form-2,
.pcth-login-form .woocommerce-privacy-policy-text,
.pcth-login-form #nsl-custom-login-form-1,
.pcth-login-form #nsl-custom-login-form-2 {
  display: none !important;
}

.pcth-banner.pcth-purple-banner {
  border-radius: 4px;
  border: 2px solid #D2D3FF;
  background: #D2D3FF;
  color: #282773;
  font-style: normal;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
}
.pcth-banner.pcth-purple-banner svg {
  width: 2rem;
  height: 2rem;
  flex-grow: 0;
  flex-shrink: 0;
}
.pcth-banner.pcth-purple-banner b {
  font-weight: 700;
}
.pcth-banner.pcth-purple-banner a {
  color: #282773;
  font-weight: 700;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
}

.pcth-banner.pcth-green-banner {
  border-radius: 3px;
  border: 1px solid #00CA14;
  background: rgba(182, 254, 189, 0.55);
  color: #000;
  padding: 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.95rem;
}
.pcth-banner.pcth-green-banner .row {
  display: flex;
  align-items: start;
  gap: 10px;
}
.pcth-banner.pcth-green-banner svg {
  margin-top: 8px;
  width: 1.25rem;
  height: 1.25rem;
  flex-grow: 0;
  flex-shrink: 0;
}
.pcth-banner.pcth-green-banner b {
  font-weight: 700;
}
.pcth-banner.pcth-green-banner a {
  color: #000;
  font-weight: 700;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
}

.pcth-banner.pcth-deal-terms-banner {
  border-radius: 3px;
  border: 1px solid #DADBDD;
  color: #222325;
  padding: 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.95rem;
}
.pcth-banner.pcth-deal-terms-banner .row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pcth-banner.pcth-deal-terms-banner svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-grow: 0;
  flex-shrink: 0;
}
.pcth-banner.pcth-deal-terms-banner b {
  font-weight: 700;
  font-size: 1.2rem;
}

.pcth_wc_single_product_layout .pcth-single-product-image-slider-main {
  margin-bottom: 1rem !important;
}
.pcth_wc_single_product_layout .pcth-single-product-image-slider-main .splide__track {
  border-radius: 8px;
  overflow: hidden;
}
.pcth_wc_single_product_layout .pcth-single-product-image-slider-main .splide__arrows .splide__arrow {
  background: #fff !important;
  color: #000;
  opacity: 1 !important;
  transition: background 0.3s ease;
  /** -- Override Haru Theme Styles -- **/
  align-items: center;
  border: 0;
  border-radius: 50% !important;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  height: 2em;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0.7;
  padding: 0 !important;
  top: 50%;
  transform: translateY(-50%);
  width: 2em !important;
  z-index: 1;
  box-shadow: 0 1.28px 3.2px 0 rgba(0, 0, 0, 0.15);
}
.pcth_wc_single_product_layout .pcth-single-product-image-slider-main .splide__arrows .splide__arrow path {
  fill: #000;
}
.pcth_wc_single_product_layout .pcth-single-product-image-slider-main .splide__arrows .splide__arrow:hover {
  background: #b3b3b3 !important;
}
@media (max-width: 1024px) {
  .pcth_wc_single_product_layout .pcth-single-product-image-slider-main .splide__arrows .splide__arrow {
    display: none !important;
  }
}
.pcth_wc_single_product_layout .pcth-single-product-image-slider-main .splide__arrows .splide__arrow--prev {
  left: -1rem !important;
}
.pcth_wc_single_product_layout .pcth-single-product-image-slider-main .splide__arrows .splide__arrow--next {
  right: -1rem !important;
}
.pcth_wc_single_product_layout .pcth-single-product-image-slider-main img {
  object-fit: cover;
  aspect-ratio: 1.7778;
}
.pcth_wc_single_product_layout .pcth-single-product-image-slider-mini {
  padding: 0.75rem;
  margin-bottom: 1rem !important;
}
.pcth_wc_single_product_layout .pcth-single-product-image-slider-mini .splide__arrows .splide__arrow {
  background: transparent !important;
  color: #424242;
  opacity: 1 !important;
  transition: background 0.3s ease;
  /** -- Override Haru Theme Styles -- **/
  align-items: center;
  border: 0;
  border-radius: 50% !important;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  height: 2em;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0.7;
  padding: 0 !important;
  top: 50%;
  transform: translateY(-50%);
  width: 2em !important;
  z-index: 1;
}
.pcth_wc_single_product_layout .pcth-single-product-image-slider-mini .splide__arrows .splide__arrow path {
  fill: #424242;
}
.pcth_wc_single_product_layout .pcth-single-product-image-slider-mini .splide__arrows .splide__arrow:hover {
  fill: #424242;
}
@media (max-width: 1024px) {
  .pcth_wc_single_product_layout .pcth-single-product-image-slider-mini .splide__arrows .splide__arrow {
    display: none !important;
  }
}
.pcth_wc_single_product_layout .pcth-single-product-image-slider-mini .splide__arrows .splide__arrow--prev {
  left: -1rem !important;
}
.pcth_wc_single_product_layout .pcth-single-product-image-slider-mini .splide__arrows .splide__arrow--next {
  right: -1rem !important;
}
.pcth_wc_single_product_layout .pcth-single-product-image-slider-mini img {
  object-fit: cover;
  aspect-ratio: 1.7778;
  height: 65px;
}

.pcth-wc-variation-select {
  background-color: #fff;
  border: 1px solid #B5B6BA;
  border-radius: 4px;
}

.select-plan-for-variable-prod {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.select-plan-for-variable-prod a {
  text-decoration: underline;
}
.select-plan-for-variable-prod ahover {
  color: #000;
}

button.single_add_to_cart_button {
  background-color: #000000 !important;
  color: #ffffff !important;
  border-radius: 4px;
  line-height: 1em;
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
  padding: 0.25rem 0.75rem;
  transition: background-color 0.3s ease;
  cursor: pointer;
  margin-top: 1rem;
}
button.single_add_to_cart_button:hover {
  background-color: #272727 !important;
}
button.single_add_to_cart_button:disabled {
  background-color: #3b3b3b !important;
}
button.single_add_to_cart_button svg {
  width: 1rem;
  height: 1rem;
}

.pcth-company-profile {
  border: 1px solid #EAECF0;
  border-radius: 1rem;
  overflow: hidden;
}
.pcth-company-profile .pcth-founder-info-container {
  padding: 1.5rem;
  border-bottom: 1px solid #EAECF0;
}
.pcth-company-profile .founder-info {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  gap: 1.5rem;
}
.pcth-company-profile .founder-info .founder-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}
.pcth-company-profile .founder-info .founder-name {
  color: #404145;
  margin-top: 0;
  margin-bottom: 0.5rem;
  display: flex;
  flex-wrap: nowrap;
  line-height: 1em;
  gap: 0.25rem;
}
.pcth-company-profile .founder-info .founder-bio {
  color: #62646A;
  font-size: 0.875rem;
  line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.25rem;
}
.pcth-company-profile .founder-info .social-links {
  display: flex;
  gap: 0.5rem;
}
.pcth-company-profile .founder-info .social-links img {
  width: 18px;
  height: 18px;
}
.pcth-company-profile .company-profile-grid {
  display: grid;
  padding: 1.5rem;
  border-bottom: 1px solid #EAECF0;
  grid-template-columns: 1fr 1fr;
  row-gap: 1.5rem;
}
.pcth-company-profile .company-profile-grid .company-profile-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pcth-company-profile .company-profile-grid .company-profile-item-title {
  margin: 0;
  font-weight: 700;
  font-size: 1.125rem;
  color: #404145;
}
.pcth-company-profile .company-profile-grid .company-profile-item-content {
  color: #74767E;
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin: 0;
}
.pcth-company-profile .product-updates-container {
  padding: 1.5rem;
  border-bottom: 1px solid #EAECF0;
}
.pcth-company-profile .product-updates-container .product-updates-title {
  color: #222325;
  font-weight: 700;
  font-size: 1.25rem;
}
.pcth-company-profile .product-updates-container .product-updates-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pcth-company-profile .product-updates-container .product-update {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0;
}
.pcth-company-profile .product-updates-container .product-update .product-update-header {
  display: flex;
  align-items: center;
  border-radius: 8px;
  border: 1px solid #EAECF0;
  padding: 1rem !important;
  gap: 1rem;
  background: transparent;
}
.pcth-company-profile .product-updates-container .product-update .product-update-header:hover {
  background-color: #F9FAFB;
}
.pcth-company-profile .product-updates-container .product-update .product-update-header h6 {
  margin: 0;
  color: #62646A;
}
.pcth-company-profile .product-updates-container .product-update .product-update-header span {
  margin-left: auto;
  font-size: 0.875rem;
  color: #62646A;
}
.pcth-company-profile .product-updates-container .product-update .product-update-header svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
  transform: rotate(180deg);
}
.pcth-company-profile .product-updates-container .product-update .product-update-content {
  border: 1px solid #EAECF0;
  border-top: none;
  padding: 1rem;
  border-radius: 0 0 8px 8px;
  font-size: 0.875rem;
}
.pcth-company-profile .product-update.collapsed .product-update-header svg {
  transform: rotate(0deg) !important;
}
.pcth-company-profile .product-update.collapsed .product-update-content {
  display: none !important;
}
.pcth-company-profile .pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.pcth-company-profile .pagination .pagination-item {
  padding: 0.5rem 1rem;
  border: 1px solid #EAECF0;
  border-radius: 0.375rem;
  background-color: #FFFFFF;
  color: #62646A;
  cursor: pointer;
  font-size: 1rem;
  height: 48px;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1em;
}
.pcth-company-profile .pagination .pagination-item:hover {
  color: #FFFFFF;
  background-color: #404145;
}
.pcth-company-profile .pagination .pagination-item:hover path {
  fill: #FFFFFF;
}
.pcth-company-profile .pagination .pagination-item.active {
  background-color: #404145;
  color: #FFFFFF;
}
.pcth-company-profile .pagination .pagination-item.active path {
  fill: #FFFFFF;
}
.pcth-company-profile .helpful-links-container {
  padding: 1.5rem;
}
.pcth-company-profile .helpful-links-container .helpful-links-title {
  color: #222325;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.pcth-company-profile .helpful-links-container .helpful-links-list {
  list-style: none;
  padding: 0.5rem;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.pcth-company-profile .helpful-links-container .helpful-links-list .helpful-link-item a {
  color: #0492FF !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1em;
}
.pcth-company-profile .helpful-links-container .helpful-links-list .helpful-link-item a:hover {
  text-decoration: underline;
}

.pcth-pricing-plans-table-container {
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
  background-color: #ffffff;
  z-index: 2;
  width: 1170px;
  overflow-x: auto;
}

table.pcth-pricing-plans-table {
  font-size: 0.9rem !important;
  background-color: #ffffff;
}
table.pcth-pricing-plans-table.striped-table tbody tr:nth-child(odd) {
  background-color: #FAFAFA;
}
table.pcth-pricing-plans-table.striped-table th, table.pcth-pricing-plans-table.striped-table td {
  padding: 15px 20px;
  border: 1px solid #DADDE5;
}
table.pcth-pricing-plans-table thead .plan-title {
  font-size: 0.9rem !important;
  font-weight: 700;
  color: #404145;
}
table.pcth-pricing-plans-table thead .plan-price {
  display: flex;
  align-items: center;
  gap: 5px;
}
table.pcth-pricing-plans-table thead .plan-price .discounted-price {
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  color: #404145 !important;
}
table.pcth-pricing-plans-table thead .plan-price .regular-price {
  font-size: 0.9rem;
  color: #75777F !important;
}
table.pcth-pricing-plans-table thead .plan-subtitle {
  font-size: 0.8rem !important;
  color: #62646A;
}
table.pcth-pricing-plans-table tbody th {
  text-wrap: nowrap;
  text-align: left;
  vertical-align: middle;
  font-size: 0.9rem !important;
}
table.pcth-pricing-plans-table tbody td {
  text-align: center;
  vertical-align: middle;
  min-width: 250px;
}
table.pcth-pricing-plans-table tbody td svg {
  display: inline-block;
}

body {
  overflow: visible !important;
}

.pcth_wc_single_product_layout {
  display: flex;
  gap: 30px;
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
}
.pcth_wc_single_product_layout .pcth_wc_single_product_left_col {
  width: 64%;
}
.pcth_wc_single_product_layout .pcth_wc_single_product_left_col section {
  margin-bottom: 3.125rem;
}
.pcth_wc_single_product_layout .pcth_wc_single_product_left_col .pcth_single_product_description_section {
  padding: 0;
  color: #62646A;
}
.pcth_wc_single_product_layout .pcth_wc_single_product_left_col h2 {
  color: #404145;
  font-weight: 700;
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
}
.pcth_wc_single_product_layout .pcth_wc_single_product_left_col h3 {
  color: #404145;
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.pcth_wc_single_product_layout .pcth_wc_single_product_left_col ul {
  margin-bottom: 1rem;
  padding-left: 1.25rem;
  list-style-type: disc;
}
.pcth_wc_single_product_layout .pcth_wc_single_product_right_col {
  width: 36%;
  position: relative;
}
.pcth_wc_single_product_layout .pcth_wc_single_product_right_col .pcth_product_summary_card {
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 60px;
  border: 1px solid #E4E5E7;
  padding: 0;
  border-radius: 8px;
}
.pcth_wc_single_product_layout .pcth_wc_single_product_right_col .entry-summary {
  padding: 1.5rem;
  border-bottom: 1px solid #E4E5E7;
}
.pcth_wc_single_product_layout .pcth_wc_single_product_right_col .summary-footer {
  background-color: #F9FAFB;
  padding: 1.5rem;
  font-size: 0.85rem;
}
.pcth_wc_single_product_layout .pcth_wc_single_product_right_col .summary-footer .secure-checkout-feature-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: #404145;
  margin-bottom: 1rem;
}
.pcth_wc_single_product_layout .pcth_wc_single_product_right_col .summary-footer .secure-checkout-feature-list li {
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 1rem;
}
.pcth_wc_single_product_layout .pcth_wc_single_product_right_col .summary-footer .secure-checkout-feature-list img {
  width: 1em;
  height: 1em;
  margin-top: 0.2rem;
}
.pcth_wc_single_product_layout .pcth_wc_single_product_right_col .summary-footer .secure-checkout-feature-list a {
  color: currentColor;
  text-decoration: underline;
}
.pcth_wc_single_product_layout .pcth_wc_single_product_right_col .summary-footer .secure-checkout-info {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.5rem;
  color: #757575;
}
.pcth_wc_single_product_layout .pcth_wc_single_product_right_col .summary-footer .secure-checkout-info span {
  text-wrap: nowrap;
}
.pcth_wc_single_product_layout .pcth_wc_single_product_right_col .summary-footer .secure-checkout-info img {
  width: 100%;
  height: 1.2rem;
  object-fit: contain;
}
.pcth_wc_single_product_layout .pcth_wc_single_product_right_col .pcth_wc_badge_canyon_select img {
  width: auto;
  max-width: 100%;
  height: 1.25rem;
}
.pcth_wc_single_product_layout .pcth_wc_single_product_right_col .product-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #404145;
}
.pcth_wc_single_product_layout .pcth_wc_single_product_right_col .product-ratings-container {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.pcth_wc_single_product_layout .pcth_wc_single_product_right_col .product-ratings-container .starts {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 700;
  color: #FFB33E;
}
.pcth_wc_single_product_layout .pcth_wc_single_product_right_col .product-ratings-container .starts img {
  width: 1rem;
  height: 1rem;
}
.pcth_wc_single_product_layout .pcth_wc_single_product_right_col .product-ratings-container .n-reviews {
  color: #62646A;
  font-size: 0.9rem;
}
.pcth_wc_single_product_layout .pcth_wc_single_product_right_col .product-price {
  font-size: 2rem;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.pcth_wc_single_product_layout .pcth_wc_single_product_right_col .product-price .sale-price bdi {
  color: #F44334;
  font-weight: 700;
}
.pcth_wc_single_product_layout .pcth_wc_single_product_right_col .product-price .original-price bdi {
  text-decoration: line-through;
  color: #62646A;
  font-weight: 700;
}
.pcth_wc_single_product_layout .pcth_wc_single_product_right_col .product-price .regular-price bdi {
  color: #62646A;
  font-weight: 700;
}
.pcth_wc_single_product_layout .pcth_wc_single_product_right_col .deals-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}
.pcth_wc_single_product_layout .pcth_wc_single_product_right_col .deals-badges .sales-percent-badge {
  background-color: #DDEAE5;
  color: #007F52;
  padding: 0.125rem 0.5rem;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 700;
}
.pcth_wc_single_product_layout .pcth_wc_single_product_right_col .deals-badges .deal-out-of-stock,
.pcth_wc_single_product_layout .pcth_wc_single_product_right_col .deals-badges .deal-ends-in-badge {
  background: #FCE6E6;
  color: #F44334;
  padding: 0.125rem 0.5rem;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 700;
}
.pcth_wc_single_product_layout .pcth_wc_single_product_right_col .text-deal-type-text {
  color: #757575;
  line-height: 1.25em;
  font-size: 0.9rem;
  font-weight: 400;
}
.pcth_wc_single_product_layout .single-product-quick-links {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}
.pcth_wc_single_product_layout .single-product-quick-links .single-product-quick-link {
  border: 1px solid #DADDE5;
  border-radius: 6px;
  padding: 0.7rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background-color: #F9FAFB;
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
  line-height: 1em;
}
.pcth_wc_single_product_layout .single-product-quick-links .single-product-quick-link svg {
  width: 20px;
  height: 20px;
}
.pcth_wc_single_product_layout .single-product-quick-links .single-product-quick-link:hover {
  background-color: rgb(223, 223, 223);
}
.pcth_wc_single_product_layout {
  /* Color Palette based on image:
      Background/Borders: White/Light Grey
      Text: Near Black/Dark Grey
      Accent (Red Line): #e85a5a (approximate)
      */
}
.pcth_wc_single_product_layout .pcth-prod-faq-accordion {
  width: 100%;
  margin: 20px auto;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.pcth_wc_single_product_layout .pcth-prod-faq-accordion .pcth-accordion-item {
  border: 1px solid #EAECF0; /* Light border */
  background-color: #F9FAFB;
  overflow: hidden;
  border-radius: 6px;
}
.pcth_wc_single_product_layout .pcth-prod-faq-accordion .pcth-accordion-item:last-child {
  border-bottom: none;
}
.pcth_wc_single_product_layout .pcth-prod-faq-accordion .pcth-accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px;
  background-color: #F9FAFB;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.2s;
  color: #404145;
}
.pcth_wc_single_product_layout .pcth-prod-faq-accordion .pcth-accordion-header:hover {
  background-color: #e9e9e9;
}
.pcth_wc_single_product_layout .pcth-prod-faq-accordion {
  /* Style for the active/expanded item border, using the red accent color */
}
.pcth_wc_single_product_layout .pcth-prod-faq-accordion .pcth-accordion-header[aria-expanded=true] {
  border-bottom: 0px solid #e85a5a; /* Red border on active header */
}
.pcth_wc_single_product_layout .pcth-prod-faq-accordion .pcth-accordion-title {
  font-size: 18px; /* h3 size */
  margin: 0;
  color: #404145; /* Dark text */
  flex-grow: 1;
}
.pcth_wc_single_product_layout .pcth-prod-faq-accordion .pcth-accordion-indicator {
  width: 24px;
  height: 24px;
  margin-left: 10px;
  color: #404145; /* Indicator color */
  transition: transform 0.3s ease;
}
.pcth_wc_single_product_layout .pcth-prod-faq-accordion {
  /* Rotate the SVG to indicate open state */
}
.pcth_wc_single_product_layout .pcth-prod-faq-accordion .pcth-accordion-header[aria-expanded=true] .pcth-accordion-indicator {
  transform: rotate(180deg);
}
.pcth_wc_single_product_layout .pcth-prod-faq-accordion {
  /* --- Smooth Animation Key CSS --- */
}
.pcth_wc_single_product_layout .pcth-prod-faq-accordion .pcth-accordion-content {
  /* Initially hidden by setting max-height to 0 and hiding overflow */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out; /* The core animation transition */
  padding: 0 15px;
  color: #62646A;
}
.pcth_wc_single_product_layout .pcth-prod-faq-accordion .pcth-accordion-content p {
  padding-top: 0;
  padding-bottom: 15px;
  margin: 0;
  color: #62646A;
}
.pcth_wc_single_product_layout .pcth-prod-faq-accordion {
  /* The JavaScript will add the 'expanded' class to the content to trigger the height change */
}
.pcth_wc_single_product_layout .pcth-prod-faq-accordion .pcth-accordion-content.expanded {
  /* max-height will be dynamically set by JS to the content's scroll height + padding */
}
.pcth_wc_single_product_layout .pcth-single-product-overview .produt-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}
.pcth_wc_single_product_layout .pcth-single-product-overview .produt-overview-grid h3 {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  font-size: 1.25rem;
  gap: 0.5rem;
  color: #404145;
  font-weight: 700;
}
.pcth_wc_single_product_layout .pcth-single-product-overview .produt-overview-grid h3 svg {
  width: 1.25rem;
  height: 1.25rem;
}
.pcth_wc_single_product_layout .pcth-single-product-overview .produt-overview-grid ul {
  list-style-type: disc;
  padding-left: 1.5rem;
}
.pcth_wc_single_product_layout .pcth-single-product-overview .produt-overview-grid .overview-content {
  padding-left: 1.5rem;
}

.pcth-btn-black {
  width: 100%;
  background: #000 !important;
  border: none;
  padding: 8px 20px;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 500;
  color: #fff;
  transition: color 0.3 ease;
  position: relative;
  z-index: 1;
  border-radius: 4px;
  line-height: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pcth-btn-black:hover {
  background-color: #2b2b2b !important;
}
@media screen and (max-width: 767px) {
  .pcth-btn-black {
    font-size: 1rem;
  }
}

body {
  font-family: "Inter", sans-serif !important;
  margin: 0;
  padding: 0;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: #404145;
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 3.25rem;
}

p {
  margin-bottom: 1rem;
}

/*# sourceMappingURL=frontend.css.map */
