.product-archive,
.product-single,
.standard-page {
  background: #fff;
  color: #151515;
  font-family: var(--site-font-body, "Roboto", "Poppins", "Helvetica Neue", Arial, sans-serif);
}

.product-archive *,
.product-archive *::before,
.product-archive *::after,
.product-single *,
.product-single *::before,
.product-single *::after,
.standard-page *,
.standard-page *::before,
.standard-page *::after {
  box-sizing: border-box;
}

.product-archive .container,
.product-single .container,
.standard-page .container {
  width: min(85%, 1920px);
  margin-right: auto;
  margin-left: auto;
}

.product-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(430px, 28vw, 540px);
  padding: clamp(150px, 10vw, 190px) 24px clamp(82px, 6vw, 116px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(11, 28, 38, 0.42), rgba(11, 28, 38, 0.12)),
    url("../rpbz/static/images/92fc81d3-c681-4a8b-8af5-0377a7d2e6d6.jpg") center / cover no-repeat;
  text-align: center;
  isolation: isolate;
  animation: product-hero-reveal 0.85s ease both;
}

.product-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(3, 14, 20, 0.02), rgba(3, 14, 20, 0.28));
  pointer-events: none;
}

.product-hero__content {
  position: relative;
  z-index: 1;
  color: #fff;
  width: min(92vw, 980px);
  animation: product-fade-up 0.75s ease 0.12s both;
}

.product-hero__title {
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-hero__summary {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.45;
}

.product-breadcrumb-bar {
  width: 100%;
  background: #f5f6f7;
  border-bottom: 1px solid #eceff1;
  animation: product-fade-up 0.65s ease 0.22s both;
}

.product-breadcrumb-bar > .product-breadcrumb.container {
  display: flex;
  align-items: center;
  gap: 8px;
  width: min(85%, 1920px);
  max-width: none;
  min-height: 58px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 0;
  padding-left: 0;
  color: #8b8b8b;
  font-size: 14px;
  line-height: 1.4;
  text-transform: uppercase;
}

.product-breadcrumb a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #8b8b8b;
  text-decoration: none;
  transition:
    color 0.22s ease,
    transform 0.22s ease;
}

.product-breadcrumb a:hover,
.product-breadcrumb a:focus-visible {
  color: #ef4b00;
  transform: translateY(-1px);
}

.product-breadcrumb__separator {
  flex: 0 0 auto;
  color: #b8bdc2;
}

.product-breadcrumb__current {
  min-width: 0;
  color: #6f7478;
}

.product-breadcrumb__home-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: linear-gradient(145deg, rgba(239, 75, 0, 0.14), rgba(239, 75, 0, 0.04));
  color: #ef4b00;
  box-sizing: border-box;
  transition:
    background-color 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease;
}

.product-breadcrumb a:hover .product-breadcrumb__home-icon,
.product-breadcrumb a:focus-visible .product-breadcrumb__home-icon {
  background: #ef4b00;
  color: #fff;
  transform: translateY(-1px);
}

.product-breadcrumb__home-icon::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 10px;
  height: 9px;
  border: 1.7px solid currentColor;
  border-top: 0;
  border-radius: 2px;
}

.product-breadcrumb__home-icon::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 6px;
  width: 8px;
  height: 8px;
  border-top: 1.7px solid currentColor;
  border-left: 1.7px solid currentColor;
  border-radius: 2px 0 0;
  transform: rotate(45deg);
}

.product-catalog-section {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(180deg, #f7f8fa 0, #fff 150px), #fff;
}

.product-catalog {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 390px) minmax(0, 1fr);
  gap: clamp(28px, 3vw, 48px);
  padding: clamp(44px, 4.4vw, 76px) 0 clamp(68px, 5vw, 96px);
  animation: product-fade-up 0.7s ease 0.32s both;
}

.product-filter-toggle,
.product-category-drawer-backdrop,
.product-category-menu__close {
  display: none;
}

.product-sidebar {
  display: grid;
  gap: 28px;
  align-content: start;
}

.product-category-menu,
.product-card,
.product-empty,
.product-single__layout,
.product-single__description {
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(20, 20, 20, 0.08);
}

.product-category-menu {
  overflow: hidden;
  border: 1px solid #ececec;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.product-category-menu:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(20, 20, 20, 0.11);
}

.product-category-menu__heading {
  margin: 0;
  padding: 20px 26px;
  background: #ef4b00;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
}

.product-category-menu__header {
  background: #ef4b00;
}

.product-category-menu__list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-category-menu__item {
  border-bottom: 1px solid #ededed;
}

.product-category-menu__item:last-child {
  border-bottom: 0;
}

.product-category-menu__link {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 56px;
  line-height: 1.35;
  padding: 0 20px 0 46px;
  color: #303030;
  font-size: 16px;
  text-decoration: none;
  transition:
    background-color 0.22s ease,
    color 0.22s ease,
    padding-left 0.22s ease;
}

.product-category-menu__link::before {
  content: "";
  position: absolute;
  left: 22px;
  width: 7px;
  height: 7px;
  border-top: 1.6px solid currentColor;
  border-right: 1.6px solid currentColor;
  color: #9a9a9a;
  transform: rotate(45deg);
  transition:
    color 0.22s ease,
    transform 0.22s ease;
}

.product-category-menu__item.is-active .product-category-menu__link,
.product-category-menu__link:hover,
.product-category-menu__link:focus-visible {
  background: #f3f4f6;
  color: #ef4b00;
  padding-left: 50px;
}

.product-category-menu__item.is-active .product-category-menu__link::before,
.product-category-menu__link:hover::before,
.product-category-menu__link:focus-visible::before {
  color: #ef4b00;
  transform: translateX(3px) rotate(45deg);
}

.product-grid-wrap {
  min-width: 0;
}

.product-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(26px, 2.1vw, 38px);
}

/*.product-grid::before,*/
/*.product-grid::after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  z-index: 0;*/
/*  width: 230px;*/
/*  height: 310px;*/
/*  border-radius: 10px;*/
/*  opacity: 0.42;*/
/*  background: url("../rpbz/static/picture/1780908746294052.png") center / contain no-repeat;*/
/*  pointer-events: none;*/
/*}*/

.product-grid::before {
  top: 0;
  right: -210px;
}

.product-grid::after {
  right: -210px;
  bottom: 0;
  transform: rotate(180deg);
}

.product-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid #e7e7e7;
  animation: product-card-enter 0.72s ease both;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(239, 75, 0, 0.22);
  box-shadow: 0 28px 58px rgba(20, 20, 20, 0.15);
}

.product-card__image-link {
  display: block;
  overflow: hidden;
  background: #f3f3f3;
}

.product-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 1.12;
  object-fit: cover;
  transition:
    transform 0.45s ease,
    filter 0.45s ease;
}

.product-card:hover .product-card__image {
  transform: scale(1.06);
  filter: saturate(1.04) contrast(1.03);
}

.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(18px, 1.5vw, 24px);
}

.product-card__title {
  margin: 0 0 10px;
  font-size: clamp(18px, 1.25vw, 22px);
  line-height: 1.2;
  font-weight: 800;
}

.product-card__title a {
  display: -webkit-box;
  min-height: 1.2em;
  overflow: hidden;
  color: #111;
  text-decoration: none;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.product-card__title a:hover,
.product-card__title a:focus-visible {
  color: #ef4b00;
}

.product-card__excerpt {
  display: -webkit-box;
  min-height: calc(1.55em * 2);
  margin: 0 0 18px;
  overflow: hidden;
  color: #333;
  font-size: 14px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
}

.product-card__quote,
.product-card__details {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition:
    background-color 0.24s ease,
    border-color 0.24s ease,
    color 0.24s ease,
    transform 0.24s ease;
}

.product-card__quote:hover,
.product-card__quote:focus-visible,
.product-card__details:hover,
.product-card__details:focus-visible {
  transform: translateY(-2px);
}

.product-card__quote {
  background: #ef4b00;
  color: #fff;
}

.product-card__details {
  border: 1px solid #ef4b00;
  background: #fff;
  color: #ef4b00;
}

.product-card__quote:hover,
.product-card__quote:focus-visible {
  background: #1e1e1e;
  color: #fff;
}

.product-card__details:hover,
.product-card__details:focus-visible {
  background: #ef4b00;
  color: #fff;
}

.product-grid-wrap .navigation.pagination {
  margin: clamp(38px, 3vw, 56px) 0 0;
}

.product-grid-wrap .nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.product-grid-wrap .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: #000;
  text-decoration: none;
  transition:
    background-color 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease;
}

.product-grid-wrap .page-numbers.current,
.product-grid-wrap .page-numbers:hover,
.product-grid-wrap .page-numbers:focus-visible {
  border-color: #ef4b00;
  background: #ef4b00;
  color: #fff;
  transform: translateY(-2px);
}

.product-card:nth-child(1) {
  animation-delay: 0.38s;
}

.product-card:nth-child(2) {
  animation-delay: 0.46s;
}

.product-card:nth-child(3) {
  animation-delay: 0.54s;
}

.product-card:nth-child(4) {
  animation-delay: 0.62s;
}

.product-card:nth-child(5) {
  animation-delay: 0.7s;
}

.product-card:nth-child(6) {
  animation-delay: 0.78s;
}

@keyframes product-hero-reveal {
  from {
    background-position: center 42%;
  }

  to {
    background-position: center center;
  }
}

@keyframes product-fade-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes product-card-enter {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-empty {
  padding: 52px;
  text-align: center;
}

.product-empty h2 {
  margin: 0 0 10px;
  font-size: 26px;
}

.product-empty p {
  margin: 0;
  color: #666;
}

.product-single__hero {
  padding: 0;
  background: linear-gradient(180deg, #f7f8fa 0, #fff 100%);
}

.product-breadcrumb--single {
  min-height: auto;
}

.product-single-section,
.product-single-description-section {
  width: 100%;
}

.product-single-section {
  padding: 30px 0 42px;
  background: #fff;
}

.product-single-description-section {
  padding: 22px 0 36px;
  background: #fff;
}

.standard-page-section {
  width: 100%;
  padding: clamp(36px, 4vw, 72px) 0 clamp(56px, 5vw, 96px);
  background: linear-gradient(180deg, #f7f8fa 0, #fff 140px), #fff;
}

.standard-page__content {
  padding: clamp(24px, 3vw, 42px);
  border: 1px solid #ececec;
  border-radius: 8px;
  background: #fff;
  color: #333;
  font-size: 16px;
  line-height: 1.8;
  box-shadow: 0 18px 42px rgba(20, 20, 20, 0.06);
}

.standard-page__content > :first-child {
  margin-top: 0;
}

.standard-page__content img,
.standard-page__content figure {
  max-width: 100%;
  height: auto;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(360px, 1.05fr) minmax(360px, 0.95fr) minmax(240px, 300px);
  gap: clamp(22px, 2vw, 34px);
  align-items: start;
}

.product-detail-media,
.product-detail-summary,
.product-detail-trust-card {
  animation: product-fade-up 0.68s ease both;
}

.product-detail-summary {
  animation-delay: 0.12s;
}

.product-detail-trust-card {
  animation-delay: 0.2s;
}

.product-detail-media {
  position: relative;
  min-width: 0;
}

.product-detail-badge {
  position: absolute;
  z-index: 3;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 2px;
  background: #ef4b00;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.product-detail-gallery {
  overflow: hidden;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  background: #f2f2f2;
}

.product-detail-gallery__image {
  display: block;
  width: 100%;
  aspect-ratio: 1.32;
  object-fit: cover;
  background: #f2f2f2;
}

.product-detail-gallery-prev,
.product-detail-gallery-next,
.related-products-prev,
.related-products-next {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 12px 28px rgba(20, 20, 20, 0.18);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background-color 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.product-detail-gallery-prev {
  left: 14px;
}

.product-detail-gallery-next {
  right: 14px;
}

.product-detail-gallery-prev::before,
.product-detail-gallery-next::before,
.related-products-prev::before,
.related-products-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.product-detail-gallery-prev::before,
.related-products-prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.product-detail-gallery-next::before,
.related-products-next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.product-detail-gallery-prev:hover,
.product-detail-gallery-next:hover,
.related-products-prev:hover,
.related-products-next:hover {
  background: #ef4b00;
  color: #fff;
  box-shadow: 0 16px 34px rgba(239, 75, 0, 0.28);
}

.product-detail-thumbs {
  margin-top: 16px;
}

.product-detail-thumbs .swiper-slide {
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 6px;
  background: #f5f5f5;
  cursor: pointer;
  opacity: 0.7;
  transition:
    border-color 0.22s ease,
    opacity 0.22s ease;
}

.product-detail-thumbs .swiper-slide-thumb-active {
  border-color: #ef4b00;
  opacity: 1;
}

.product-detail-thumbs__image {
  display: block;
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
}

.product-detail-summary {
  min-width: 0;
}

.product-single__title {
  margin: 0 0 12px;
  font-size: clamp(32px, 2.8vw, 24px);
  line-height: 1.05;
  color: #111;
}

.product-single__summary {
  margin: 0 0 22px;
  color: #ef4b00;
  font-size: clamp(16px, 1.15vw, 20px);
  line-height: 1.45;
  font-weight: 800;
}

.wp-block-table .has-fixed-layout thead {
  border-bottom: 0;
}

.wp-block-table .has-fixed-layout thead th {
  background: linear-gradient(90deg, #ef4b00 0%, #f25c16 100%);
  color: #fff;
  text-align: center;
}

.product-detail-feature-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.product-detail-feature-list li {
  position: relative;
  display: grid;
  gap: 8px;
  place-items: center;
  min-height: 70px;
  padding: 10px 6px;
  color: #222;
  font-size: 13px;
  text-align: center;
  transition:
    color 0.22s ease,
    transform 0.22s ease;
}

.product-detail-feature-list li:hover {
  color: #ef4b00;
  transform: translateY(-3px);
}

.product-detail-feature-list__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 2px solid #ef4b00;
  border-radius: 50%;
  color: #ef4b00;
  transition:
    background-color 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease;
}

.product-detail-feature-list li:hover .product-detail-feature-list__icon {
  background: #ef4b00;
  color: #fff;
  transform: scale(1.08);
}

.product-detail-feature-list__icon::before,
.product-detail-feature-list__icon::after {
  content: "";
  position: absolute;
}

.product-detail-feature-list__icon--safe::before {
  width: 8px;
  height: 5px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.product-detail-feature-list__icon--size::before {
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.product-detail-feature-list__icon--size::after {
  width: 12px;
  height: 12px;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
}

.product-detail-feature-list__icon--light::before {
  width: 12px;
  height: 12px;
  border-radius: 10px 10px 10px 0;
  border: 2px solid currentColor;
  transform: rotate(-28deg);
}

.product-detail-feature-list__icon--recycle::before {
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.product-detail-feature-list__icon--recycle::after {
  width: 12px;
  height: 12px;
  border: 2px solid currentColor;
  border-left-color: transparent;
  border-radius: 50%;
}

.product-parameter-table,
.product-specification-table {
  width: 100%;
  border-collapse: collapse;
  color: #303030;
  font-size: 14px;
}

.product-parameter-table {
  margin: 0 0 22px;
  border: 1px solid #dedede;
}

.product-parameter-table th,
.product-parameter-table td,
.product-specification-table th,
.product-specification-table td {
  padding: 11px 14px;
  border: 1px solid #dedede;
  text-align: left;
  vertical-align: top;
}

.product-parameter-table th,
.product-specification-table th {
  width: 28%;
  background: #faf6f2;
  font-weight: 700;
}

.product-detail-contact {
  display: grid;
  gap: 10px;
  margin: 0 0 20px;
}

.product-detail-contact a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #1f1f1f;
  font-weight: 700;
  text-decoration: none;
  transition:
    color 0.22s ease,
    transform 0.22s ease;
}

.product-detail-contact a:hover,
.product-detail-contact a:focus-visible {
  color: #ef4b00;
  transform: translateX(3px);
}

.product-detail-contact__icon {
  position: relative;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border: 1.8px solid currentColor;
  border-radius: 50%;
}

.product-detail-contact__icon--whatsapp::before {
  content: "";
  position: absolute;
  right: 1px;
  bottom: 0;
  width: 5px;
  height: 5px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(28deg);
}

.product-detail-contact__icon--email {
  border-radius: 4px;
}

.product-detail-contact__icon--email::before,
.product-detail-contact__icon--email::after {
  content: "";
  position: absolute;
  top: 5px;
  width: 9px;
  height: 1.8px;
  background: currentColor;
}

.product-detail-contact__icon--email::before {
  left: 1px;
  transform: rotate(28deg);
}

.product-detail-contact__icon--email::after {
  right: 1px;
  transform: rotate(-28deg);
}

.product-detail-message-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 10px;
  background: #ef4b00;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease;
}

.product-detail-message-button__icon {
  position: relative;
  width: 18px;
  height: 15px;
  border: 2px solid currentColor;
  border-radius: 5px;
  transition: transform 0.22s ease;
}

.product-detail-message-button__icon::before {
  content: "";
  position: absolute;
  right: 2px;
  bottom: -5px;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: skew(-16deg);
}

.product-detail-message-button:hover .product-detail-message-button__icon,
.product-detail-message-button:focus-visible .product-detail-message-button__icon {
  transform: translateX(2px);
}

.product-detail-message-button:hover,
.product-detail-message-button:focus-visible {
  background: #151515;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(239, 75, 0, 0.25);
}

.product-detail-trust-card {
  overflow: hidden;
  min-height: 100%;
  padding: 24px 20px;
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(239, 75, 0, 0.18), transparent 42%), linear-gradient(160deg, #061421 0%, #102a46 100%);
  color: #fff;
  box-shadow: 0 18px 42px rgba(12, 28, 44, 0.18);
}

.product-detail-trust-card h2 {
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(239, 75, 0, 0.75);
  font-size: 20px;
  line-height: 1.2;
}

.product-detail-trust-card ul {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-detail-trust-card li {
  display: grid;
  gap: 2px;
  padding-left: 42px;
  position: relative;
  transition: transform 0.24s ease;
}

.product-detail-trust-card li:hover {
  transform: translateX(4px);
}

.product-detail-trust-card__icon {
  position: absolute;
  left: 0;
  top: 3px;
  width: 26px;
  height: 26px;
  border: 2px solid #ef4b00;
  border-radius: 8px;
  color: #ef4b00;
}

.product-detail-trust-card__icon::before,
.product-detail-trust-card__icon::after {
  content: "";
  position: absolute;
}

.product-detail-trust-card__icon--years::before {
  inset: 5px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.product-detail-trust-card__icon--customers::before {
  top: 6px;
  left: 8px;
  width: 7px;
  height: 7px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.product-detail-trust-card__icon--customers::after {
  left: 5px;
  bottom: 5px;
  width: 13px;
  height: 6px;
  border: 2px solid currentColor;
  border-radius: 10px 10px 0 0;
}

.product-detail-trust-card__icon--solutions::before {
  inset: 5px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.product-detail-trust-card__icon--response::before {
  top: 6px;
  left: 7px;
  width: 10px;
  height: 10px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.product-detail-trust-card strong {
  font-size: 20px;
  line-height: 1;
}

.product-detail-trust-card li > span:not(.product-detail-trust-card__icon) {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.product-description-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 3vw, 52px);
  padding: clamp(28px, 3vw, 46px);
  border: 1px solid #ececec;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(20, 20, 20, 0.06);
}

.product-description-panel h2,
.related-products-heading h2 {
  margin: 0 0 24px;
  color: #ef4b00;
  font-size: clamp(22px, 1.6vw, 30px);
  line-height: 1.15;
}

.product-description-panel__body {
  min-width: 0;
  color: #333;
  font-size: 16px;
  line-height: 1.75;
}

.product-description-panel__content,
.product-description-panel__visual {
  min-width: 0;
}

.product-description-panel__body img,
.product-description-panel__body figure {
  max-width: 100%;
  height: auto;
}

.product-description-panel__body > :first-child {
  margin-top: 0;
}

.product-specification-table {
  margin-top: 22px;
}

.product-specification-table thead th {
  background: #ef4b00;
  color: #fff;
}

.product-description-panel__visual img {
  display: block;
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 1.35;
  object-fit: cover;
  background: #f2f2f2;
}

.related-products-section {
  padding: 8px 0 34px;
  background: #fff;
}

.related-products-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.related-products-controls {
  display: flex;
  gap: 12px;
}

.related-products-prev,
.related-products-next {
  position: relative;
  top: auto;
  transform: none;
}

.related-product-card a {
  display: grid;
  min-height: 228px;
  padding: 16px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  background: #fff;
  color: #111;
  text-align: center;
  text-decoration: none;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.related-product-card a:hover,
.related-product-card a:focus-visible {
  border-color: rgba(239, 75, 0, 0.35);
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(20, 20, 20, 0.1);
}

.related-product-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: contain;
}

.related-product-card h3 {
  margin: 12px 0 8px;
  font-size: 15px;
  line-height: 1.3;
}

.related-product-card span {
  justify-self: center;
  align-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 16px;
  border-radius: 999px;
  background: #ef4b00;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.product-inquiry-section {
  padding: 0 0 36px;
  background: #fff;
}

.product-inquiry-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  border: 1px solid rgba(239, 75, 0, 0.28);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 42px rgba(20, 20, 20, 0.07);
}

.product-inquiry-panel__intro {
  padding: clamp(28px, 3vw, 44px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 38%), #ef4b00;
  color: #fff;
}

.product-inquiry-panel__intro h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.5;
}

.product-inquiry-panel__intro p {
  margin: 0 0 60px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
}

.product-inquiry-panel__contact {
  display: grid;
  gap: 12px;
  font-weight: 700;
}

.product-inquiry-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(24px, 2.5vw, 38px);
}

.product-inquiry-form label {
  display: grid;
  gap: 7px;
  color: #777;
  font-size: 13px;
}

.product-inquiry-form__wide,
.product-inquiry-form__message {
  grid-column: 1 / -1;
}

.product-inquiry-form input,
.product-inquiry-form textarea {
  width: 100%;
  border: 1px solid #dedede;
  border-radius: 6px;
  background: #fff;
  color: #151515;
  font-size: 15px;
  outline: none;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.product-inquiry-form input {
  min-height: 42px;
  padding: 0 14px;
}

.product-inquiry-form textarea {
  /*min-height: 120px;*/
  padding: 12px 14px;
  resize: vertical;
}

.product-inquiry-form input:focus,
.product-inquiry-form textarea:focus {
  border-color: #ef4b00;
  box-shadow: 0 0 0 3px rgba(239, 75, 0, 0.12);
}

.product-inquiry-form button {
  grid-column: 1 / -1;
  justify-self: center;
  min-width: min(100%, 560px);
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  background: #ef4b00;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition:
    background-color 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.product-inquiry-form button:hover,
.product-inquiry-form button:focus-visible {
  background: #151515;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(239, 75, 0, 0.22);
}

.product-inquiry-form__notice {
  grid-column: 1 / -1;
  margin: 0;
  padding: 12px 14px;
  border-radius: 6px;
  font-weight: 700;
}

.product-inquiry-form__notice.is-success {
  background: #eaf7ef;
  color: #126a35;
}

.product-inquiry-form__notice.is-error {
  background: #fff0ec;
  color: #b53612;
}

.product-breadcrumb-bar--compact {
  margin-top: 0;
}

.product-breadcrumb-bar--compact .product-breadcrumb__home::before {
  content: none;
}

.product-single__hero {
  background: radial-gradient(circle at 50% 0, rgba(239, 75, 0, 0.06), transparent 28%), #fff;
}

.product-single__hero > .product-hero {
  min-height: clamp(330px, 24vw, 460px);
  padding-top: clamp(132px, 8vw, 164px);
  padding-bottom: clamp(64px, 5vw, 96px);
}

.product-single-section {
  padding: 22px 0 28px;
}

.product-detail-layout {
  grid-template-columns: minmax(420px, 1.08fr) minmax(390px, 0.94fr) minmax(260px, 300px);
  gap: clamp(22px, 2.4vw, 36px);
}

.product-detail-layout > *,
.product-description-panel > *,
.related-products-swiper,
.product-detail-gallery,
.product-detail-thumbs {
  min-width: 0;
}

.product-detail-gallery {
  border-radius: 4px;
  border-color: #d9dde1;
  box-shadow: none;
}

.product-detail-gallery__image {
  aspect-ratio: 1.28;
}

.product-detail-badge {
  top: 0;
  left: 0;
  min-width: 58px;
  min-height: 34px;
  border-radius: 0 0 4px;
  background: #ef4b00;
  font-size: 15px;
}

.product-detail-thumbs {
  margin-top: 18px;
}

.product-detail-thumbs .swiper-slide {
  border-radius: 4px;
  border-width: 1px;
  opacity: 1;
}

.product-detail-thumbs .swiper-slide-thumb-active {
  border-color: #ef4b00;
}

.product-detail-thumbs__image {
  aspect-ratio: 1.25;
}

.product-single__title {
  margin-bottom: 10px;
  font-size: clamp(30px, 2.45vw, 24px);
  line-height: 1.08;
}

.product-single__summary {
  margin-bottom: 24px;
  color: #ef4b00;
  font-size: 16px;
}

.product-detail-feature-list {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 24px;
}

.product-detail-feature-list li {
  min-height: 64px;
  padding: 0;
  color: #1f2933;
  font-size: 12px;
}

.product-detail-feature-list__icon {
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  color: #ef4b00;
  font-size: 31px;
  line-height: 1;
}

.product-detail-feature-list__icon::before,
.product-detail-feature-list__icon::after,
.product-detail-contact__icon::before,
.product-detail-contact__icon::after,
.product-detail-message-button__icon::before,
.product-detail-trust-card__icon::before,
.product-detail-trust-card__icon::after {
  content: none;
}

.product-detail-feature-list li:hover .product-detail-feature-list__icon {
  background: transparent;
  color: #ef4b00;
  transform: translateY(-3px);
}

.product-parameter-table {
  margin-bottom: 22px;
  border-color: #d8d8d8;
  font-size: 13px;
}

.product-parameter-table th,
.product-parameter-table td {
  padding: 9px 13px;
}

.product-parameter-table th {
  width: 25%;
  background: #fbf7f4;
  color: #555;
}

.product-detail-contact {
  gap: 9px;
  margin-bottom: 16px;
  display: flex;
}

.product-detail-contact a {
  gap: 10px;
  font-size: 14px;
}

.product-detail-contact__icon {
  width: 18px;
  height: 18px;
  border: 0;
  border-radius: 0;
  color: #ef4b00;
  font-size: 18px;
  line-height: 1;
}

.product-detail-message-button {
  vertical-align: middle;
  min-height: 44px;
  line-height: 1;
  border-radius: 8px;
  background: #ef4b00;
  font-size: 14px;
}

.product-detail-message-button__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 0;
  border-radius: 0;
  font-size: 18px;
  line-height: 18px;
  transform: translateY(0);
}

.product-detail-message-button .product-detail-message-button__icon.dashicons {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 18px;
}

.product-detail-trust-card {
  position: relative;
  min-height: 550px;
  padding: 24px 20px 18px;
  border: 2px solid #ef4b00;
  border-radius: 10px;
  /* background:
    linear-gradient(160deg, rgba(3, 20, 42, 0.96), rgba(4, 42, 87, 0.92)),
    #061421; */
  background-image: url("https://www.rongpinpack.com/wp-content/uploads/2026/07/21a2ac3a-fd1a-4ef6-a33c-553843d2cf22.png");
  background-size: 100% 100%;
  box-shadow: 0 22px 46px rgba(4, 28, 56, 0.2);
}

.product-detail-trust-card h2 {
  margin-bottom: 20px;
  border-bottom-color: rgba(239, 75, 0, 0.9);
  font-size: 18px;
}

.product-detail-trust-card li {
  min-height: 42px;
  padding-left: 54px;
}

.product-detail-trust-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 10px;
  background: rgba(239, 75, 0, 0.13);
  color: #ef4b00;
  font-size: 24px;
  line-height: 1;
}

.product-detail-trust-card strong {
  color: #fff;
  font-size: 18px;
}

.product-detail-trust-card__visual {
  margin-top: 22px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.product-detail-trust-card__visual img {
  display: block;
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
  mix-blend-mode: screen;
  opacity: 0.82;
}

.product-single-description-section {
  padding: 28px 0 24px;
}

.product-description-panel {
  position: relative;
  display: flex;
  gap: clamp(22px, 2.4vw, 34px);
  align-items: flex-start;
  padding: 62px 18px 18px;
  border: 1px solid #dfe2e5;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(20, 20, 20, 0.035);
}

.product-description-panel__content {
  flex: 0 1 46%;
  min-width: 0;
  padding: 10px 20px 0 2px;
}

.product-description-panel__right {
  display: flex;
  flex: 1 1 54%;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.product-description-panel__top {
  display: grid;
  grid-template-columns: minmax(190px, 0.38fr) minmax(360px, 0.92fr);
  gap: 20px;
  align-items: stretch;
}

.product-description-panel__title {
  position: absolute;
  top: -1px;
  left: -1px;
  z-index: 2;
  display: flex;
  align-items: center;
  min-width: clamp(190px, 18vw, 250px);
  min-height: 48px;
  margin: 0;
  padding: 0 22px;
  border: 0;
  border-top: 3px solid #ef4b00;
  border-right: 1px solid #e6e6e6;
  background: #fff;
  color: #ef4b00;
  font-size: 19px;
  line-height: 1;
  box-shadow: 8px 8px 20px rgba(20, 20, 20, 0.025);
}

.product-description-panel__body {
  color: #151515;
  font-size: 13px;
  line-height: 1.68;
}

.product-description-panel__body p {
  margin: 0 0 12px;
}

.product-description-checklist {
  display: grid;
  gap: 6px;
  margin: 14px 0 16px;
  padding: 0;
  list-style: none;
}

.product-description-checklist li {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding-left: 24px;
  color: #171717;
  font-size: 12px;
  line-height: 1.4;
}

.product-description-checklist li::before {
  content: "\f12a";
  position: absolute;
  left: 0;
  top: 0;
  color: #ef4b00;
  font-family: dashicons;
  font-size: 18px;
  line-height: 1;
}

.product-description-checklist strong {
  font-weight: 800;
}

.product-description-panel__body > ul,
.product-description-panel__body > ol,
.product-description-panel__body .wp-block-list {
  display: grid;
  gap: 6px;
  margin: 14px 0 16px;
  padding: 0;
  list-style: none;
}

.product-description-panel__body > ul > li,
.product-description-panel__body > ol > li,
.product-description-panel__body .wp-block-list > li {
  position: relative;
  padding-left: 24px;
  color: #171717;
  font-size: 12px;
  line-height: 1.4;
}

.product-description-panel__body > ul > li::before,
.product-description-panel__body > ol > li::before,
.product-description-panel__body .wp-block-list > li::before {
  content: "\f12a";
  position: absolute;
  top: 0;
  left: 0;
  color: #ef4b00;
  font-family: dashicons;
  font-size: 18px;
  line-height: 1;
}

.product-description-panel__body > ul strong,
.product-description-panel__body > ol strong,
.product-description-panel__body .wp-block-list strong {
  font-weight: 800;
}

.product-description-panel__body .wp-block-table {
  width: 100%;
  margin: 14px 0 16px;
  overflow-x: auto;
  border: 1px solid #d8d8d8;
}

.product-description-panel__body .wp-block-table .has-fixed-layout {
  width: 100%;
  margin: 0;
  border: 0;
  border-collapse: collapse;
  table-layout: fixed;
  color: #303030;
  font-size: 11px;
  line-height: 1.25;
}

.product-description-panel__body .wp-block-table .has-fixed-layout th,
.product-description-panel__body .wp-block-table .has-fixed-layout td {
  padding: 5px 10px;
  border: 1px solid #d8d8d8;
  overflow-wrap: anywhere;
  text-align: left;
  vertical-align: top;
}

.product-description-panel__body .wp-block-table .has-fixed-layout thead {
  border-bottom: 0;
}

.product-description-panel__body .wp-block-table .has-fixed-layout thead th {
  background: linear-gradient(90deg, #ef4b00 0%, #f25c16 100%);
  color: #fff;
  font-weight: 700;
  text-align: center;
}

.product-description-panel__body .wp-block-table .has-fixed-layout tbody th {
  width: 28%;
  background: #fff;
  font-weight: 500;
}

.product-description-panel__body .wp-block-table .has-fixed-layout tbody tr:nth-child(even) th,
.product-description-panel__body .wp-block-table .has-fixed-layout tbody tr:nth-child(even) td {
  background: #faf5f1;
}

.product-description-panel__body .wp-block-table figcaption {
  margin: 7px 0 0;
  color: #737373;
  font-size: 10px;
  text-align: center;
}

.product-specification-table {
  margin-top: 14px;
  border: 1px solid #d8d8d8;
  font-size: 11px;
  line-height: 1.25;
}

.product-specification-table th,
.product-specification-table td {
  padding: 5px 10px;
  border-color: #d8d8d8;
}

.product-specification-table thead th {
  background: linear-gradient(90deg, #ef4b00 0%, #f25c16 100%);
  color: #fff;
  text-align: center;
}

.product-specification-table tbody th {
  width: 28%;
  background: #fff;
  font-weight: 500;
}

.product-specification-table tbody tr:nth-child(even) th,
.product-specification-table tbody tr:nth-child(even) td {
  background: #faf5f1;
}

.product-description-panel__support {
  display: grid;
  gap: 14px;
  min-height: 254px;
  padding: 16px 15px;
  border: 1px solid #e5e8eb;
  border-radius: 6px;
  background: linear-gradient(145deg, #fbfcfd 0%, #f4f6f8 100%);
  align-content: center;
}

.product-description-panel__support article {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 3px 12px;
  align-items: center;
}

.product-description-panel__support .dashicons {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(11, 92, 168, 0.12);
  border-radius: 50%;
  background: #fff;
  color: #0b5ca8;
  font-size: 24px;
  line-height: 34px;
}

.product-description-panel__support strong {
  color: #11345a;
  font-size: 12px;
  line-height: 1.25;
}

.product-description-panel__support em {
  color: #52616f;
  font-size: 10px;
  font-style: normal;
}

.product-description-panel__visual {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #ececec;
  border-radius: 6px;
  background: linear-gradient(145deg, #f7f7f7 0%, #ededed 100%);
}

.product-description-panel__visual img {
  display: block;
  width: 100%;
  height: 254px;
  min-height: 254px;
  padding: 10px;
  border-radius: inherit;
  object-fit: contain;
  background: transparent;
}

.product-cavity-structure {
  min-width: 0;
}

.product-cavity-structure h2 {
  min-height: auto;
  margin: 2px 0 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ef4b00;
  font-size: 17px;
  box-shadow: none;
}

.product-cavity-structure__diagram {
  position: relative;
  min-height: 220px;
  padding: 30px 42px 22px;
  overflow: hidden;
  background: #fff;
}

.product-cavity-structure__diagram::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 12%;
  left: 12%;
  border-top: 1px solid #ef4b00;
}

.product-cavity-structure__diagram::after {
  content: "";
  position: absolute;
  top: 18%;
  bottom: 18%;
  left: 24px;
  border-left: 1px solid #ef4b00;
}

.product-cavity-structure__diagram img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: contain;
  opacity: 0.72;
  filter: grayscale(1) contrast(1.45) brightness(1.08);
}

.product-cavity-structure__measure {
  position: absolute;
  z-index: 1;
  color: #ef4b00;
  font-size: 10px;
  font-weight: 800;
  text-shadow:
    0 0 5px #fff,
    0 0 5px #fff;
}

.product-cavity-structure__measure--width {
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
}

.product-cavity-structure__measure--length {
  top: 50%;
  left: 2px;
  transform: translateY(-50%) rotate(-90deg);
}

.product-cavity-structure__measure--height {
  right: 4px;
  bottom: 12px;
  min-height: 34px;
  padding-top: 24px;
  border-right: 1px solid #ef4b00;
}

.related-products-section {
  padding: 4px 0 28px;
}

.related-products-heading h2 {
  margin-bottom: 6px;
  color: #ef4b00;
  font-size: 21px;
}

.related-product-card a {
  min-height: 188px;
  padding: 14px 12px;
  border-radius: 6px;
}

.related-product-card img {
  aspect-ratio: 1.35;
  object-fit: contain;
}

.related-product-card h3 {
  display: -webkit-box;
  min-height: 2.5em;
  margin: 8px 0 3px;
  overflow: hidden;
  font-size: 13px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.related-product-card p {
  display: -webkit-box;
  min-height: 2.4em;
  margin: 0 0 8px;
  overflow: hidden;
  color: #4a4a4a;
  font-size: 11px;
  line-height: 1.2;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.related-product-card span {
  min-height: 26px;
  padding: 0 15px;
  background: #ef4b00;
  font-size: 11px;
}

.product-inquiry-section {
  padding-bottom: 30px;
}

.product-inquiry-panel {
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1fr);
  border-color: rgba(239, 75, 0, 0.38);
  border-radius: 8px;
}

.product-inquiry-panel__intro {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 90% 82%, rgba(255, 255, 255, 0.18), transparent 28%), #ef4b00;
}

.product-inquiry-panel__intro::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 10%);
  width: 100%;
  height: 80%;
  background: url("../rpbz/static/images/word.png") center / contain no-repeat;
  opacity: 0.16;
  pointer-events: none;
}

.product-inquiry-panel__contact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.product-inquiry-panel__contact span {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  line-height: 1.5;
}

.product-inquiry-panel__contact .product-inquiry-panel__location {
  grid-column: 1 / -1;
  align-items: start;
}

.product-inquiry-panel__contact .dashicons {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  font-size: 15px;
  line-height: 24px;
  text-align: center;
}

.product-inquiry-form {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-content: center;
}

.product-inquiry-form__wide {
  grid-column: 1 / -1;
}

.product-inquiry-form__message {
  grid-column: span 2;
}

.product-inquiry-form select {
  width: 100%;
  padding: 0 34px 0 14px;
  border: 1px solid #dedede;
  border-radius: 6px;
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, #ef4b00 50%) right 16px center / 6px 6px no-repeat,
    linear-gradient(135deg, #ef4b00 50%, transparent 50%) right 11px center / 6px 6px no-repeat,
    #fff;
  color: #151515;
  font-size: 15px;
  outline: none;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.product-inquiry-form select:focus {
  border-color: #ef4b00;
  box-shadow: 0 0 0 3px rgba(239, 75, 0, 0.12);
}

.product-inquiry-form button {
  grid-column: 1 / -1;
  min-width: min(100%, 640px);
  border-radius: 7px;
}

@media screen and (max-width: 1180px) {
  .product-archive .container,
  .product-single .container,
  .standard-page .container {
    width: min(92%, 1120px);
  }

  .product-catalog {
    grid-template-columns: 300px minmax(0, 1fr);
  }

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

  .product-grid::before,
  .product-grid::after {
    display: none;
  }

  .product-detail-layout {
    grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1.05fr);
  }

  .product-detail-trust-card {
    grid-column: 1 / -1;
  }

  .product-description-panel,
  .product-inquiry-panel {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 820px) {
  .product-archive .container,
  .product-single .container,
  .standard-page .container {
    width: min(92%, 680px);
  }

  .product-hero {
    min-height: 320px;
    padding-top: 120px;
  }

  .product-breadcrumb-bar > .product-breadcrumb.container {
    width: min(92%, 680px);
    min-height: 50px;
    padding: 11px 0;
    overflow-x: auto;
    overflow-y: hidden;
    font-size: 12px;
    line-height: 1.3;
    white-space: nowrap;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .product-breadcrumb::-webkit-scrollbar {
    display: none;
  }

  .product-breadcrumb__home-icon {
    width: 18px;
    height: 18px;
    border-radius: 5px;
  }

  .product-breadcrumb__home-icon::before {
    top: 5px;
    left: 5px;
    width: 8px;
    height: 8px;
  }

  .product-breadcrumb__home-icon::after {
    top: 4px;
    left: 6px;
    width: 6px;
    height: 6px;
  }

  .product-breadcrumb__current {
    display: inline-block;
    max-width: 58vw;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: bottom;
  }

  .product-catalog,
  .product-detail-layout,
  .product-description-panel,
  .product-inquiry-panel {
    grid-template-columns: 1fr;
  }

  .product-catalog {
    gap: 18px;
    padding: 18px 0 42px;
    animation: none;
    transform: none;
  }

  .product-filter-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: start;
    gap: 8px;
    min-height: 40px;
    padding: 0 16px;
    border: 1px solid rgba(239, 75, 0, 0.28);
    border-radius: 999px;
    background: #fff;
    color: #ef4b00;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(20, 20, 20, 0.08);
    transition:
      background-color 0.22s ease,
      color 0.22s ease,
      transform 0.22s ease,
      box-shadow 0.22s ease;
  }

  .product-filter-toggle:hover,
  .product-filter-toggle:focus-visible {
    background: #ef4b00;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(239, 75, 0, 0.18);
  }

  .product-filter-toggle__icon {
    position: relative;
    width: 15px;
    height: 12px;
  }

  .product-filter-toggle__icon::before,
  .product-filter-toggle__icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 15px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
  }

  .product-filter-toggle__icon::before {
    top: 2px;
    box-shadow: 0 4px 0 currentColor;
  }

  .product-filter-toggle__icon::after {
    bottom: 0;
    width: 9px;
  }

  .product-category-drawer-backdrop {
    position: fixed;
    inset: 0;
    z-index: 9997;
    display: block;
    opacity: 0;
    visibility: hidden;
    background: rgba(7, 16, 22, 0.46);
    backdrop-filter: blur(2px);
    transition:
      opacity 0.24s ease,
      visibility 0.24s ease;
  }

  .product-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9998;
    display: block;
    width: min(82vw, 340px);
    height: 100vh;
    padding: 18px;
    overflow-y: auto;
    background: #fff;
    box-shadow: -18px 0 44px rgba(7, 16, 22, 0.2);
    transform: translateX(104%);
    transition: transform 0.3s ease;
  }

  .product-category-drawer-is-open {
    overflow: hidden;
  }

  .product-category-drawer-is-open .product-sidebar {
    transform: translateX(0);
  }

  .product-category-drawer-is-open .product-category-drawer-backdrop {
    opacity: 1;
    visibility: visible;
  }

  .product-category-menu {
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .product-category-menu:hover {
    transform: none;
    box-shadow: none;
  }

  .product-category-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: -18px -18px 10px;
    padding: 18px;
    background: #ef4b00;
  }

  .product-category-menu__heading {
    padding: 0;
    font-size: 18px;
  }

  .product-category-menu__close {
    position: relative;
    display: inline-flex;
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
  }

  .product-category-menu__close::before,
  .product-category-menu__close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 15px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
  }

  .product-category-menu__close::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .product-category-menu__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .product-category-menu__item {
    border-bottom-color: #f0f0f0;
  }

  .product-category-menu__link {
    min-height: 48px;
    padding-left: 40px;
    font-size: 15px;
  }

  .product-category-menu__link::before {
    left: 18px;
  }

  .product-category-menu__item.is-active .product-category-menu__link,
  .product-category-menu__link:hover,
  .product-category-menu__link:focus-visible {
    padding-left: 44px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .product-card {
    border-radius: 7px;
    box-shadow: 0 10px 24px rgba(20, 20, 20, 0.07);
  }

  .product-card:hover {
    transform: translateY(-3px);
  }

  .product-card__image {
    aspect-ratio: 1.08;
  }

  .product-card__body {
    padding: 10px;
  }

  .product-card__title {
    margin-bottom: 6px;
    font-size: 14px;
  }

  .product-card__excerpt {
    min-height: calc(1.4em * 2);
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 1.4;
  }

  .product-card__actions {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .product-card__quote,
  .product-card__details {
    min-height: 30px;
    padding: 0 8px;
    font-size: 11px;
  }

  .product-single__hero {
    padding-top: 0;
  }

  .product-detail-feature-list,
  .product-inquiry-form {
    grid-template-columns: 1fr;
  }

  .product-description-panel {
    padding: 22px;
  }

  .product-inquiry-form {
    padding: 22px;
  }

  .related-products-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media screen and (min-width: 1440px) {
  .product-catalog {
    grid-template-columns: minmax(300px, 410px) minmax(0, 1fr);
  }
}

@media screen and (min-width: 1680px) {
  .product-archive .container {
    width: min(85%, 1920px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-hero,
  .product-hero__content,
  .product-breadcrumb-bar,
  .product-catalog,
  .product-card {
    animation: none;
  }

  .product-card,
  .product-card__image,
  .product-category-menu,
  .product-card__quote,
  .product-card__details,
  .product-grid-wrap .page-numbers {
    transition: none;
  }
}

@media screen and (max-width: 1180px) {
  .product-description-panel {
    flex-direction: column;
  }

  .product-description-panel__content,
  .product-description-panel__right {
    flex-basis: auto;
    width: 100%;
  }

  .product-description-panel__content {
    padding-right: 2px;
  }

  .product-description-panel__support {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 820px) {
  .product-breadcrumb-bar--compact > .product-breadcrumb.container {
    min-height: 50px;
  }

  .product-detail-feature-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px 8px;
  }

  .product-detail-feature-list li {
    min-height: 58px;
    font-size: 11px;
  }

  .product-detail-feature-list__icon {
    font-size: 26px;
  }

  .product-detail-trust-card__visual img {
    aspect-ratio: 1.65;
  }

  .product-description-panel {
    gap: 18px;
    padding: 60px 14px 14px;
  }

  .product-description-panel__content {
    padding: 0;
  }

  .product-description-panel__top {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .product-description-panel__right {
    gap: 6px;
  }

  .product-description-panel__support,
  .product-inquiry-panel__contact,
  .product-inquiry-form {
    grid-template-columns: 1fr;
  }

  .product-description-panel__visual img {
    height: 240px;
    min-height: 240px;
  }

  .product-inquiry-form__message {
    grid-column: 1 / -1;
  }

  .product-cavity-structure__diagram {
    min-height: 180px;
    padding: 24px 20px 18px;
  }
}

@media screen and (max-width: 520px) {
  .product-detail-feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-description-panel h2,
  .related-products-heading h2 {
    font-size: 18px;
  }

  .product-cavity-structure__measure {
    font-size: 10px;
  }
}

/* Product gallery sizing: prevent Swiper from stretching to the summary column height. */
.product-detail-media {
  align-self: start;
}

.product-detail-gallery {
  width: 100%;
  height: auto !important;
  aspect-ratio: 1.28;
}

.product-detail-gallery > .swiper-wrapper,
.product-detail-gallery > .swiper-wrapper > .swiper-slide {
  height: 100% !important;
}

.product-detail-gallery > .swiper-wrapper > .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #f2f2f2;
}

.product-detail-gallery__image {
  width: 100%;
  height: 100% !important;
  aspect-ratio: auto !important;
  object-fit: cover;
}

.product-detail-thumbs {
  width: 100%;
  height: clamp(74px, 6.8vw, 92px) !important;
}

.product-detail-thumbs > .swiper-wrapper,
.product-detail-thumbs > .swiper-wrapper > .swiper-slide {
  height: 100% !important;
}

.product-detail-thumbs__image {
  width: 100%;
  height: 100% !important;
  aspect-ratio: auto !important;
  object-fit: cover;
}

@media screen and (max-width: 820px) {
  .product-detail-gallery {
    aspect-ratio: 1.18;
  }

  .product-detail-thumbs {
    height: clamp(70px, 22vw, 92px) !important;
    margin-top: 12px;
  }
}

/* Product category content background */
.product-archive[style*="--product-category-background"] .product-catalog-section {
  background-image: var(--product-category-background);
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

@media screen and (max-width: 820px) {
  .product-archive[style*="--product-category-background"] .product-catalog-section {
    background-attachment: scroll;
  }
}

.product-inquiry-modal {
  position: relative;
}

.product-inquiry-modal__backdrop,
.product-inquiry-modal__close {
  display: none;
}

.product-inquiry-modal__dialog {
  position: relative;
  width: 100%;
  overflow: visible;
}

.product-inquiry-modal.is-modal-active {
  position: fixed;
  inset: 0;
  z-index: 100050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 220ms ease,
    visibility 220ms ease;
}

.product-inquiry-modal.is-modal-active.is-open {
  opacity: 1;
  visibility: visible;
}

.product-inquiry-modal.is-modal-active .product-inquiry-modal__backdrop {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: rgba(9, 24, 34, 0.72);
  backdrop-filter: blur(7px);
  cursor: default;
}

.product-inquiry-modal.is-modal-active .product-inquiry-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100vw - 48px));
  max-height: calc(100dvh - 48px);
  overflow: auto;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(5, 20, 29, 0.34);
  transform: translateY(24px) scale(0.98);
  transition: transform 220ms ease;
  overscroll-behavior: contain;
}

.product-inquiry-modal.is-modal-active.is-open .product-inquiry-modal__dialog {
  transform: translateY(0) scale(1);
}

.product-inquiry-modal.is-modal-active .product-inquiry-panel {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.product-inquiry-modal.is-modal-active .product-inquiry-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(19, 45, 61, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: #132d3d;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(19, 45, 61, 0.14);
  transition:
    color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.product-inquiry-modal.is-modal-active .product-inquiry-modal__close:hover,
.product-inquiry-modal.is-modal-active .product-inquiry-modal__close:focus-visible {
  background: #ef4b00;
  color: #fff;
  outline: none;
  transform: rotate(90deg);
}

body.has-product-inquiry-modal {
  overflow: hidden;
}

@media screen and (max-width: 820px) {
  .product-inquiry-modal.is-modal-active {
    align-items: flex-end;
    padding: 0;
  }

  .product-inquiry-modal.is-modal-active .product-inquiry-modal__dialog {
    width: 100%;
    max-height: 92dvh;
    border-radius: 18px 18px 0 0;
    transform: translateY(100%);
  }

  .product-inquiry-modal.is-modal-active.is-open .product-inquiry-modal__dialog {
    transform: translateY(0);
  }

  .product-inquiry-modal.is-modal-active .product-inquiry-panel {
    grid-template-columns: 1fr;
  }

  .product-inquiry-modal.is-modal-active .product-inquiry-panel__intro {
    padding: 24px 58px 22px 22px;
  }

  .product-inquiry-modal.is-modal-active .product-inquiry-panel__intro p {
    margin-bottom: 18px;
  }

  .product-inquiry-modal.is-modal-active .product-inquiry-form {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-inquiry-modal.is-modal-active,
  .product-inquiry-modal.is-modal-active .product-inquiry-modal__dialog,
  .product-inquiry-modal.is-modal-active .product-inquiry-modal__close {
    transition: none;
  }
}

/* Product feature video */
.product-detail-gallery__video-slide,
.product-detail-gallery__video {
  position: relative;
  width: 100%;
  height: 100%;
}
.product-detail-gallery__video {
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #111;
}
.product-detail-gallery__video-poster,
.product-detail-gallery__video-player {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-detail-gallery__video-player {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  background: #000;
  transition: opacity 0.22s ease;
}
.product-detail-gallery__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(239, 75, 0, 0.92);
  color: #fff;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.3);
  transform: translate(-50%, -50%);
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}
.product-detail-gallery__play span {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid currentColor;
}
.product-detail-gallery__play:hover,
.product-detail-gallery__play:focus-visible {
  background: #d94300;
  outline: none;
  transform: translate(-50%, -50%) scale(1.08);
}
.product-detail-gallery__video-slide.is-playing .product-detail-gallery__video-player {
  opacity: 1;
  pointer-events: auto;
}
.product-detail-gallery__video-slide.is-playing .product-detail-gallery__video-poster,
.product-detail-gallery__video-slide.is-playing .product-detail-gallery__play {
  opacity: 0;
  pointer-events: none;
}
.product-detail-thumbs__video {
  position: relative;
}
.product-detail-thumbs__video .dashicons {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(239, 75, 0, 0.9);
  color: #fff;
  font-size: 18px;
  line-height: 30px;
  transform: translate(-50%, -50%);
}
@media (max-width: 640px) {
  .product-detail-gallery__play {
    width: 58px;
    height: 58px;
  }
  .product-detail-gallery__play span {
    border-top-width: 9px;
    border-bottom-width: 9px;
    border-left-width: 14px;
  }
}
