
:root {
  --pcs-blue: #064a96;
  --pcs-blue-2: #0a61b7;
  --pcs-green: #11ad62;
  --pcs-text: #101828;
  --pcs-muted: #586577;
  --pcs-border: #dce4ee;
  --pcs-soft: #f7f9fc;
  --pcs-star: #ffb400;
  --pcs-radius: 5px;
}

.pcs-product-page,
.pcs-product-page * {
  box-sizing: border-box;
}

.pcs-product-page {
  background: #fff;
  color: var(--pcs-text);
  font-family: inherit;
  font-size: 15px;
  line-height: 1.55;
  width: 100%;
}

.pcs-page-shell {
  margin: 0 auto;
  max-width: 1220px;
  padding: 22px 20px 60px;
}

.pcs-breadcrumbs {
  color: var(--pcs-muted);
  font-size: 13px;
  margin: 0 0 24px;
}

.pcs-breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.pcs-crumb-separator {
  display: inline-block;
  margin: 0 10px;
}

.pcs-product-hero {
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  align-items: start;
}

.pcs-gallery {
  display: grid;
  gap: 18px;
  grid-template-columns: 84px minmax(0, 1fr);
}

.pcs-thumbs {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.pcs-thumb {
  align-items: center;
  background: #fff;
  border: 1px solid var(--pcs-border);
  border-radius: var(--pcs-radius);
  cursor: pointer;
  display: flex;
  height: 74px;
  justify-content: center;
  padding: 6px;
  transition: border-color .2s ease, box-shadow .2s ease;
  width: 100%;
}

.pcs-thumb:hover,
.pcs-thumb.is-active {
  border-color: var(--pcs-blue-2);
  box-shadow: 0 0 0 1px var(--pcs-blue-2);
}

.pcs-thumb img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.pcs-main-image-wrap {
  align-items: center;
  background: #f8fafc;
  border: 1px solid var(--pcs-border);
  border-radius: var(--pcs-radius);
  display: flex;
  justify-content: center;
  min-height: 490px;
  overflow: hidden;
  padding: 24px;
}

.pcs-main-image {
  display: block;
  height: auto;
  max-height: 440px;
  max-width: 100%;
  object-fit: contain;
  transition: opacity .15s ease;
}

.pcs-product-summary {
  padding-top: 2px;
}

.pcs-grade-badge {
  background: linear-gradient(90deg, #2582c9, #44a4d7);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 13px;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  padding: 7px 17px;
}

.pcs-product-title {
  color: var(--pcs-text);
  font-size: clamp(29px, 3vw, 40px);
  font-weight: 750;
  letter-spacing: -.02em;
  line-height: 1.14;
  margin: 15px 0 9px;
}

.pcs-rating-row {
  align-items: center;
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.pcs-rating-row .star-rating {
  color: var(--pcs-star);
  float: none;
  font-size: 16px;
  margin: 0;
}

.pcs-rating-row a {
  color: var(--pcs-blue);
  font-size: 13px;
  text-decoration: none;
}

.pcs-quick-specs {
  align-items: stretch;
  border-bottom: 1px solid var(--pcs-border);
  border-top: 1px solid var(--pcs-border);
  display: grid;
  grid-template-columns: 1.15fr .8fr 1.3fr;
  margin-bottom: 18px;
  padding: 12px 0;
}

.pcs-quick-specs > div {
  display: flex;
  gap: 6px;
  min-width: 0;
  padding: 0 14px;
}

.pcs-quick-specs > div:first-child {
  padding-left: 0;
}

.pcs-quick-specs > div + div {
  border-left: 1px solid var(--pcs-border);
}

.pcs-quick-specs strong,
.pcs-quick-specs span {
  font-size: 13px;
  overflow-wrap: anywhere;
}

.pcs-feature-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pcs-feature-card {
  align-items: center;
  background: linear-gradient(180deg, #fff, #f8fafc);
  border: 1px solid var(--pcs-border);
  border-radius: var(--pcs-radius);
  display: flex;
  flex-direction: column;
  gap: 9px;
  justify-content: center;
  min-height: 94px;
  padding: 12px 8px;
  text-align: center;
}

.pcs-feature-card svg,
.pcs-btn svg,
.pcs-check-list svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.pcs-feature-card svg {
  color: var(--pcs-blue-2);
  height: 28px;
  width: 28px;
}

.pcs-feature-card span {
  color: var(--pcs-text);
  font-size: 12px;
  line-height: 1.25;
}

.pcs-short-description {
  border-bottom: 1px solid var(--pcs-border);
  color: #3e4a59;
  font-size: 14px;
  margin: 16px 0 13px;
  padding-bottom: 13px;
}

.pcs-short-description p {
  margin: 0;
}

.pcs-action-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}

.pcs-btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: var(--pcs-radius);
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  gap: 10px;
  justify-content: center;
  min-height: 49px;
  padding: 12px 16px;
  text-decoration: none !important;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.pcs-btn:hover {
  box-shadow: 0 7px 18px rgba(16, 24, 40, .12);
  transform: translateY(-1px);
}

.pcs-btn svg {
  height: 19px;
  width: 19px;
}

.pcs-btn-primary {
  background: linear-gradient(90deg, var(--pcs-blue), var(--pcs-blue-2));
  color: #fff !important;
}

.pcs-btn-whatsapp {
  background: linear-gradient(90deg, #0fae61, #13bf6d);
  color: #fff !important;
}

.pcs-btn-outline {
  background: #fff;
  border-color: var(--pcs-blue);
  color: var(--pcs-text) !important;
}

.pcs-details-section {
  margin-top: 42px;
}

.pcs-tabs {
  border-bottom: 1px solid var(--pcs-border);
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.pcs-tab-button {
  background: transparent;
  border: 0;
  border-bottom: 3px solid transparent;
  color: #344054;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  padding: 0 8px 13px;
  white-space: nowrap;
}

.pcs-tab-button.is-active {
  border-bottom-color: var(--pcs-blue);
  color: var(--pcs-blue);
}

.pcs-tab-panels {
  padding-top: 17px;
}

.pcs-tab-panel {
  display: none;
}

.pcs-tab-panel.is-active {
  display: block;
}

.pcs-info-card,
.pcs-brands-section {
  background: #fff;
  border: 1px solid var(--pcs-border);
  border-radius: var(--pcs-radius);
  padding: 18px;
}

.pcs-info-card h2,
.pcs-brands-section h2,
.pcs-related-section > h2 {
  color: #0b2f5b;
  font-size: 18px;
  font-weight: 750;
  margin: 0 0 13px;
}

.pcs-table-wrap {
  overflow-x: auto;
}

.pcs-spec-table {
  border-collapse: collapse;
  font-size: 13px;
  width: 100%;
}

.pcs-spec-table th,
.pcs-spec-table td {
  border: 1px solid var(--pcs-border);
  padding: 9px 11px;
  text-align: left;
  vertical-align: top;
}

.pcs-spec-table th {
  background: #f3f6fa;
  font-weight: 700;
}

.pcs-spec-table td:first-child {
  font-weight: 550;
  width: 39%;
}

.pcs-note {
  color: var(--pcs-muted);
  font-size: 11px;
  margin: 10px 0 0;
}

.pcs-check-list {
  display: grid;
  gap: 9px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pcs-check-list li {
  align-items: flex-start;
  display: flex;
  gap: 9px;
}

.pcs-check-list svg {
  color: var(--pcs-blue);
  flex: 0 0 auto;
  height: 17px;
  margin-top: 3px;
  width: 17px;
}

.pcs-safety-list {
  margin: 0;
}

.pcs-safety-list > div {
  border-bottom: 1px solid var(--pcs-border);
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(140px, .35fr) 1fr;
  padding: 9px 0;
}

.pcs-safety-list > div:last-child {
  border-bottom: 0;
}

.pcs-safety-list dt {
  font-weight: 650;
}

.pcs-safety-list dd {
  margin: 0;
}

.pcs-shipping-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pcs-shipping-grid > div {
  background: var(--pcs-soft);
  border: 1px solid var(--pcs-border);
  border-radius: var(--pcs-radius);
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 16px;
}

.pcs-shipping-grid strong {
  color: var(--pcs-blue);
}

.pcs-empty-state {
  color: var(--pcs-muted);
  margin: 0;
}

.pcs-review-list {
  display: grid;
  gap: 14px;
}

.pcs-review {
  border-bottom: 1px solid var(--pcs-border);
  padding-bottom: 14px;
}

.pcs-review:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.pcs-review-head {
  display: flex;
  justify-content: space-between;
}

.pcs-review-head span {
  color: var(--pcs-muted);
  font-size: 12px;
}

.pcs-review-stars {
  color: var(--pcs-star);
  letter-spacing: 1px;
  margin: 5px 0;
}

.pcs-brands-section {
  margin-top: 14px;
}

.pcs-brand-strip {
  align-items: center;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.pcs-brand-name {
  align-items: center;
  border-right: 1px solid var(--pcs-border);
  color: #194f91;
  display: flex;
  font-size: clamp(15px, 2vw, 23px);
  font-weight: 800;
  justify-content: center;
  min-height: 60px;
  padding: 8px 16px;
  text-align: center;
}

.pcs-brand-name:last-child {
  border-right: 0;
}

.pcs-related-section {
  margin-top: 22px;
}

.pcs-related-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.pcs-product-card {
  background: #fff;
  border: 1px solid var(--pcs-border);
  border-radius: var(--pcs-radius);
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  padding: 14px;
  text-align: center;
}

.pcs-card-image {
  align-items: center;
  background: #f8fafc;
  display: flex;
  height: 180px;
  justify-content: center;
  margin: -14px -14px 12px;
  padding: 15px;
}

.pcs-card-image img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.pcs-product-card h3 {
  font-size: 14px;
  line-height: 1.35;
  margin: 0 0 5px;
}

.pcs-product-card h3 a {
  color: var(--pcs-text);
  text-decoration: none;
}

.pcs-product-card p {
  color: var(--pcs-muted);
  font-size: 12px;
  margin: 0 0 12px;
}

.pcs-view-product {
  border: 1px solid var(--pcs-blue);
  border-radius: 4px;
  color: var(--pcs-blue) !important;
  font-size: 12px;
  font-weight: 700;
  margin-top: auto;
  padding: 8px 10px;
  text-decoration: none !important;
}

/* Theme wrapper normalization */
body.single-product .site-main,
body.single-product main {
  max-width: none;
}

body.single-product .woocommerce-breadcrumb {
  margin: 0;
}

@media (max-width: 1024px) {
  .pcs-product-hero {
    gap: 26px;
    grid-template-columns: .92fr 1.08fr;
  }

  .pcs-gallery {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .pcs-main-image-wrap {
    min-height: 410px;
  }

  .pcs-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pcs-related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pcs-brand-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pcs-brand-name:nth-child(3n) {
    border-right: 0;
  }
}

@media (max-width: 767px) {
  .pcs-page-shell {
    padding: 16px 14px 42px;
  }

  .pcs-product-hero {
    grid-template-columns: 1fr;
  }

  .pcs-gallery {
    display: flex;
    flex-direction: column-reverse;
  }

  .pcs-thumbs {
    flex-direction: row;
    overflow-x: auto;
  }

  .pcs-thumb {
    flex: 0 0 68px;
    height: 68px;
  }

  .pcs-main-image-wrap {
    min-height: 340px;
  }

  .pcs-product-title {
    font-size: 29px;
  }

  .pcs-quick-specs {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .pcs-quick-specs > div,
  .pcs-quick-specs > div:first-child {
    padding: 10px 0;
  }

  .pcs-quick-specs > div + div {
    border-left: 0;
    border-top: 1px solid var(--pcs-border);
  }

  .pcs-action-grid {
    grid-template-columns: 1fr;
  }

  .pcs-tabs {
    gap: 14px;
  }

  .pcs-shipping-grid {
    grid-template-columns: 1fr;
  }

  .pcs-safety-list > div {
    gap: 5px;
    grid-template-columns: 1fr;
  }

  .pcs-brand-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pcs-brand-name,
  .pcs-brand-name:nth-child(3n) {
    border-right: 1px solid var(--pcs-border);
  }

  .pcs-brand-name:nth-child(2n) {
    border-right: 0;
  }

  .pcs-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .pcs-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pcs-related-grid {
    grid-template-columns: 1fr;
  }

  .pcs-card-image {
    height: 230px;
  }
}


/* Prochem v1.4 finishing overrides */
.pcs-product-page {
  background: #ffffff;
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  max-width: 100vw !important;
  position: relative;
  right: 50%;
  width: 100vw !important;
}

.pcs-page-shell {
  max-width: 1260px;
  padding: 30px 28px 72px;
}

.pcs-breadcrumbs {
  color: #66758a;
  font-size: 13px;
  margin-bottom: 28px;
}

.pcs-product-hero {
  gap: 48px;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
}

.pcs-gallery {
  gap: 16px;
  grid-template-columns: 84px minmax(0, 1fr);
}

.pcs-thumb {
  border-radius: 8px;
  height: 82px;
  padding: 8px;
}

.pcs-main-image-wrap {
  background: linear-gradient(145deg, #ffffff, #f5f8fc);
  border-color: #d4dfeb;
  border-radius: 11px;
  box-shadow: 0 14px 38px rgba(15, 45, 78, .07);
  min-height: 540px;
  padding: 38px;
}

.pcs-main-image {
  max-height: 470px;
}

.pcs-product-summary {
  align-self: center;
  padding: 14px 0;
}

.pcs-grade-badge {
  box-shadow: 0 5px 14px rgba(10, 97, 183, .18);
  font-size: 13px;
  padding: 8px 18px;
}

.pcs-product-title {
  color: #071a31;
  font-size: clamp(34px, 3vw, 43px);
  line-height: 1.12;
  margin: 17px 0 10px;
}

.pcs-quick-specs {
  background: #f7faff;
  border: 1px solid #dbe6f1;
  border-radius: 8px;
  margin-bottom: 18px;
  overflow: hidden;
  padding: 0;
}

.pcs-quick-specs > div,
.pcs-quick-specs > div:first-child {
  align-items: center;
  min-height: 60px;
  padding: 12px 15px;
}

.pcs-quick-specs strong {
  color: #0b376d;
  white-space: nowrap;
}

.pcs-feature-grid {
  gap: 13px;
}

.pcs-feature-card {
  border-radius: 9px;
  box-shadow: 0 7px 20px rgba(15, 45, 78, .045);
  min-height: 105px;
  padding: 15px 10px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.pcs-feature-card:hover {
  border-color: #8fbbe5;
  box-shadow: 0 12px 26px rgba(15, 45, 78, .09);
  transform: translateY(-2px);
}

.pcs-feature-card span {
  font-size: 13px;
  font-weight: 650;
}

.pcs-short-description {
  color: #44546a;
  font-size: 15px;
  line-height: 1.72;
  margin: 18px 0 15px;
  padding-bottom: 16px;
}

.pcs-action-grid {
  gap: 13px;
}

.pcs-btn {
  border-radius: 7px;
  font-size: 14px;
  min-height: 52px;
}

.pcs-details-section {
  margin-top: 48px;
}

.pcs-tabs {
  gap: 32px;
}

.pcs-tab-button {
  font-size: 14px;
  padding-bottom: 14px;
}

.pcs-tab-panels {
  padding-top: 20px;
}

.pcs-info-card,
.pcs-brands-section {
  border-color: #d7e1ec;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(15, 45, 78, .045);
  padding: 22px;
}

.pcs-info-card h2,
.pcs-brands-section h2,
.pcs-related-section > h2 {
  color: #0b376d;
  font-size: 19px;
  margin-bottom: 15px;
}

.pcs-spec-table th,
.pcs-spec-table td {
  border-color: #dbe4ee;
  padding: 10px 12px;
}

.pcs-spec-table th {
  background: #eff5fb;
  color: #17385f;
}

.pcs-spec-table tbody tr:nth-child(even) td {
  background: #fbfcfe;
}

.pcs-brand-strip {
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  border-radius: 7px;
  overflow: hidden;
}

.pcs-brand-name {
  color: #094b98;
  font-size: clamp(16px, 1.8vw, 22px);
  min-height: 72px;
}

.pcs-product-card {
  border-radius: 10px;
  box-shadow: 0 9px 25px rgba(15, 45, 78, .045);
}

@media (max-width: 1024px) {
  .pcs-page-shell {
    padding-left: 22px;
    padding-right: 22px;
  }

  .pcs-product-hero {
    gap: 28px;
  }

  .pcs-main-image-wrap {
    min-height: 455px;
  }
}

@media (max-width: 767px) {
  .pcs-product-page {
    left: auto;
    margin-left: 0;
    margin-right: 0;
    right: auto;
    width: 100% !important;
  }

  .pcs-page-shell {
    padding: 18px 14px 44px;
  }

  .pcs-main-image-wrap {
    min-height: 340px;
    padding: 24px;
  }

  .pcs-product-title {
    font-size: 29px;
  }
}


/* Prochem v1.5 website colour matching */
:root {
  --pcs-blue: #335d6a;
  --pcs-blue-2: #53b3c1;
  --pcs-green: #15ac17;
  --pcs-text: #253947;
  --pcs-muted: #657c87;
  --pcs-border: #cbd9df;
  --pcs-soft: #f3f8fa;
  --pcs-star: #ffb400;
  --pcs-radius: 8px;
}

.pcs-product-page {
  color: var(--pcs-text);
}

.pcs-breadcrumbs {
  color: #6d818b;
}

.pcs-breadcrumbs a:hover {
  color: #337b91;
}

.pcs-grade-badge {
  background: linear-gradient(90deg, #3f8295, #53b3c1);
  box-shadow: 0 5px 15px rgba(63, 130, 149, .22);
}

.pcs-product-title {
  color: #243b48;
}

.pcs-rating-row a {
  color: #335d6a;
}

.pcs-quick-specs {
  background: #f2f7f9;
  border-color: #cbd9df;
}

.pcs-quick-specs strong {
  color: #335d6a;
}

.pcs-feature-card {
  background: linear-gradient(180deg, #ffffff, #f4f8fa);
  border-color: #cad9df;
}

.pcs-feature-card:hover {
  border-color: #53b3c1;
  box-shadow: 0 12px 28px rgba(51, 93, 106, .12);
}

.pcs-feature-card svg {
  color: #337b91;
}

.pcs-short-description {
  color: #4d6570;
}

.pcs-btn-primary {
  background: linear-gradient(90deg, #315d70, #3f8295);
  color: #ffffff !important;
}

.pcs-btn-primary:hover {
  background: linear-gradient(90deg, #294f60, #367387);
}

.pcs-btn-whatsapp {
  background: linear-gradient(90deg, #119f18, #15b91c);
  color: #ffffff !important;
}

.pcs-btn-whatsapp:hover {
  background: linear-gradient(90deg, #0d8813, #10a916);
}

.pcs-btn-outline {
  background: #ffffff;
  border-color: #3f8295;
  color: #335d6a !important;
}

.pcs-btn-outline:hover {
  background: #f1f8fa;
  border-color: #335d6a;
}

.pcs-tabs {
  border-bottom-color: #cbd9df;
}

.pcs-tab-button {
  color: #405a65;
}

.pcs-tab-button.is-active {
  border-bottom-color: #53b3c1;
  color: #335d6a;
}

.pcs-info-card,
.pcs-brands-section {
  border-color: #cbd9df;
  box-shadow: 0 10px 30px rgba(51, 93, 106, .07);
}

.pcs-info-card h2,
.pcs-brands-section h2,
.pcs-related-section > h2 {
  color: #335d6a;
}

.pcs-spec-table th {
  background: #eaf2f5;
  color: #335d6a;
}

.pcs-spec-table th,
.pcs-spec-table td {
  border-color: #d4e0e5;
}

.pcs-spec-table tbody tr:nth-child(even) td {
  background: #f7fafb;
}

.pcs-check-list svg,
.pcs-shipping-grid strong {
  color: #337b91;
}

.pcs-shipping-grid > div {
  background: #f3f8fa;
  border-color: #cbd9df;
}

.pcs-brand-strip {
  background: linear-gradient(180deg, #ffffff, #f3f8fa);
}

.pcs-brand-name {
  color: #335d6a;
}

.pcs-product-card {
  border-color: #cbd9df;
  box-shadow: 0 9px 25px rgba(51, 93, 106, .07);
}

.pcs-card-image {
  background: #f3f8fa;
}

.pcs-view-product {
  border-color: #3f8295;
  color: #335d6a !important;
}

.pcs-view-product:hover {
  background: #335d6a;
  color: #ffffff !important;
}

.pcs-thumb:hover,
.pcs-thumb.is-active {
  border-color: #53b3c1;
  box-shadow: 0 0 0 1px #53b3c1;
}

.pcs-main-image-wrap {
  background: linear-gradient(145deg, #ffffff, #eef5f7);
  border-color: #cbd9df;
  box-shadow: 0 14px 38px rgba(51, 93, 106, .09);
}


/* Prochem v1.6 force website-matching hover colours */
/*
 * Some WordPress themes apply their global pink link/button hover colour.
 * These higher-specificity rules keep every interactive element inside the
 * Prochem analytical product page in the website's teal colour system.
 */
body .pcs-product-page a:hover,
body .pcs-product-page a:focus,
body .pcs-product-page button:hover,
body .pcs-product-page button:focus {
  color: #335d6a !important;
  text-decoration-color: #53b3c1 !important;
}

body .pcs-product-page .pcs-tab-button:hover,
body .pcs-product-page .pcs-tab-button:focus,
body .pcs-product-page .pcs-tab-button.is-active {
  background: transparent !important;
  border-bottom-color: #53b3c1 !important;
  color: #335d6a !important;
  box-shadow: none !important;
  outline-color: #53b3c1 !important;
}

body .pcs-product-page .pcs-tab-button:hover::before,
body .pcs-product-page .pcs-tab-button:hover::after,
body .pcs-product-page .pcs-tab-button:focus::before,
body .pcs-product-page .pcs-tab-button:focus::after {
  background: #53b3c1 !important;
  border-color: #53b3c1 !important;
}

body .pcs-product-page .pcs-breadcrumbs a:hover,
body .pcs-product-page .pcs-rating-row a:hover {
  color: #337b91 !important;
}

body .pcs-product-page .pcs-thumb:hover,
body .pcs-product-page .pcs-thumb:focus,
body .pcs-product-page .pcs-thumb.is-active {
  background: #f2f8fa !important;
  border-color: #53b3c1 !important;
  box-shadow: 0 0 0 1px #53b3c1 !important;
}

body .pcs-product-page .pcs-feature-card:hover {
  background: linear-gradient(180deg, #ffffff, #eef7f9) !important;
  border-color: #53b3c1 !important;
  box-shadow: 0 12px 28px rgba(51, 93, 106, .12) !important;
}

body .pcs-product-page .pcs-btn-primary:hover,
body .pcs-product-page .pcs-btn-primary:focus {
  background: linear-gradient(90deg, #294f60, #3f8295) !important;
  border-color: #3f8295 !important;
  color: #ffffff !important;
}

body .pcs-product-page .pcs-btn-whatsapp:hover,
body .pcs-product-page .pcs-btn-whatsapp:focus {
  background: linear-gradient(90deg, #0d8813, #10a916) !important;
  border-color: #10a916 !important;
  color: #ffffff !important;
}

body .pcs-product-page .pcs-btn-outline:hover,
body .pcs-product-page .pcs-btn-outline:focus {
  background: #edf6f8 !important;
  border-color: #335d6a !important;
  color: #335d6a !important;
}

body .pcs-product-page .pcs-view-product:hover,
body .pcs-product-page .pcs-view-product:focus {
  background: #335d6a !important;
  border-color: #335d6a !important;
  color: #ffffff !important;
}

body .pcs-product-page .pcs-product-card h3 a:hover,
body .pcs-product-page .pcs-product-card h3 a:focus {
  color: #337b91 !important;
}

body .pcs-product-page *::selection {
  background: #bfe6ec;
  color: #243b48;
}


/* Prochem v1.7 brand logo images */
.pcs-brand-strip {
  align-items: stretch;
}

.pcs-brand-item {
  align-items: center;
  background: #ffffff;
  border-right: 1px solid var(--pcs-border);
  display: flex;
  justify-content: center;
  min-height: 92px;
  padding: 16px 20px;
  transition: background .18s ease, transform .18s ease;
}

.pcs-brand-item:last-child {
  border-right: 0;
}

.pcs-brand-item:hover {
  background: #f1f8fa;
}

.pcs-brand-logo {
  display: block;
  filter: none;
  height: 52px;
  max-width: 150px;
  object-fit: contain;
  transition: transform .18s ease;
  width: 100%;
}

.pcs-brand-item:hover .pcs-brand-logo {
  transform: scale(1.04);
}

.pcs-brand-item .pcs-brand-name {
  border-right: 0;
  min-height: 0;
  padding: 0;
  width: 100%;
}

@media (max-width: 1024px) {
  .pcs-brand-item:nth-child(3n) {
    border-right: 0;
  }

  .pcs-brand-logo {
    max-width: 135px;
  }
}

@media (max-width: 767px) {
  .pcs-brand-item,
  .pcs-brand-item:nth-child(3n) {
    border-right: 1px solid var(--pcs-border);
    min-height: 82px;
    padding: 13px;
  }

  .pcs-brand-item:nth-child(2n) {
    border-right: 0;
  }

  .pcs-brand-logo {
    height: 44px;
    max-width: 125px;
  }
}
