.products-section {
  background:
    radial-gradient(
      1100px 820px at -4% 54%,
      var(--surface-glow-strong) 0%,
      var(--surface-glow-mid) 28%,
      var(--surface-glow-soft) 44%,
      rgba(20, 160, 255, 0) 72%
    ),
    linear-gradient(
      90deg,
      var(--surface-glow-base-start) 0%,
      var(--surface-glow-base-mid) 58%,
      var(--surface-glow-base-end) 100%
    );
}

.card-category {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.13) 100%);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  overflow: hidden;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.card-category-link {
  color: inherit;
  display: block;
  height: 100%;
  text-decoration: none;
}

.card-category-link:hover,
.card-category-link:focus,
.card-category-link:active {
  color: inherit;
  text-decoration: none;
}

.card-category .card-body {
  color: #fff;
  padding: 1.25rem 1.5rem 1.5rem;
}

.card-category .card-title {
  color: #fff;
  font-size: clamp(1.4rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.9rem;
}

.card-category .btn {
  border-radius: 10px;
}


.prometec-catalog-page,
.prometec-product-single {
  background: var(--primary-main);
}

.prometec-catalog-shell {
  background:
    radial-gradient( 
      1409px 1409px at 1% 1%,
       rgb(0, 148, 216) 0%, 
       rgba(43, 180, 255, 0.12) 30%, 
       rgba(43, 180, 255, 0) 68%) ,
    radial-gradient(
      1409px 1409px at 80% 1%, 
      rgb(0, 148, 216) 0%, 
      rgba(43, 180, 255, 0.12) 30%, 
      rgba(43, 180, 255, 0) 68% 
    ),
    var(--primary-main);
}

.prometec-catalog-panel {
  background: #fff;
  border-radius: 32px;
  padding: clamp(1.5rem, 2.5vw, 2.75rem);
  box-shadow: 0 28px 80px rgba(8, 3, 34, 0.22);
}

.prometec-product-single__panel {
  min-height: clamp(440px, 58vw, 560px);
}

.prometec-product-single__back-row {
  position: relative;
  z-index: 2;
}

.prometec-product-single__back {
  align-items: center;
  color: #4b63b8;
  display: inline-flex;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.prometec-product-single__layout {
  margin-top: 0;
}

.prometec-product-single__back:hover {
  color: #1d3a94;
  transform: translateX(-2px);
}

.prometec-product-single__back-icon {
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 1.1rem;
  line-height: 1;
}

.prometec-product-single__media {
  background: linear-gradient(180deg, #edf5fc 0%, #dfeef9 100%);
  border: 1px solid #d7e5f3;
  border-radius: 0;
  min-height: clamp(260px, 34vw, 380px);
  overflow: hidden;
  padding: clamp(1rem, 2vw, 1.4rem);
}

.prometec-product-single__media img {
  display: block;
  height: auto;
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  width: auto;
}

.prometec-product-single__thumbs .js-prometec-thumb img {
  border-radius: 14px;
}

.prometec-product-single__content {
  max-width: 44rem;
  padding-top: clamp(0.25rem, 1vw, 0.75rem);
}

.prometec-product-single__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.4rem;
}

.prometec-product-single__tag {
  background: #f2f6fc;
  border: 1px solid #d8e2f1;
  border-radius: 999px;
  color: #3756a6;
  display: inline-flex;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
  padding: 0.6rem 0.95rem;
}

.prometec-product-single__tag strong {
  color: #1d3a94;
  font-weight: 700;
}

.prometec-product-single__title {
  color: #1d3a94;
  font-size: clamp(1.2rem, 4vw, 3.1rem);
  font-weight: 800;
  line-height: 1.04;
  margin-bottom: 1.5rem;
}

.prometec-product-single__description,
.prometec-product-single__description p,
.prometec-product-single__description li {
  color: #5f7cc6;
  font-size: 1rem;
  line-height: 1.78;
}

.prometec-product-single__description p + p,
.prometec-product-single__description ul + p,
.prometec-product-single__description ol + p,
.prometec-product-single__description p + ul,
.prometec-product-single__description p + ol {
  margin-top: 1rem !important;
}

.prometec-product-single__description ul,
.prometec-product-single__description ol {
  margin-bottom: 0;
  padding-left: 1.25rem;
}

.prometec-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.prometec-breadcrumb__item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #3857a7;
  font-size: 0.95rem;
}

.prometec-breadcrumb__item:not(:last-child)::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #1d3a94;
  border-right: 2px solid #1d3a94;
  transform: rotate(45deg);
}

.prometec-breadcrumb__item a,
.prometec-breadcrumb__item span {
  color: inherit;
  text-decoration: none;
}

.prometec-breadcrumb__item[aria-current="page"] {
  font-weight: 700;
  color: #1d3a94;
}

.prometec-catalog-eyebrow,
.prometec-catalog-sidebar__eyebrow {
  display: inline-block;
  color: #6f7ea7;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.prometec-catalog-title {
  color: #1d3a94;
  font-size: clamp(2.5rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
}

.prometec-catalog-summary {
  color: #5b6784;
  font-size: 1rem;
}

.prometec-catalog-reset {
  color: #1d3a94;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.prometec-catalog-reset:hover {
  color: #0a2f88;
}

.prometec-catalog-search-field {
  position: relative;
}

.prometec-catalog-search-field .form-control {
  min-height: 58px;
  border: 1px solid #d8e1f0;
  border-radius: 999px;
  color: #23304a;
  padding: 0.9rem 7.6rem 0.9rem 3.25rem;
  box-shadow: none;
}

.prometec-catalog-search-field .form-control::placeholder {
  color: #8a95ae;
}

.prometec-catalog-search-field .form-control:focus {
  border-color: #8fb5ec;
  box-shadow: 0 0 0 0.2rem rgba(29, 58, 148, 0.08);
}

.prometec-catalog-search-icon {
  position: absolute;
  top: 25%;
  left: 1.15rem;
  display: inline-flex;
  width: 1.25rem;
  height: 1.25rem;
  color: #6b7590;
  pointer-events: none;
  transform: translateY(-50%);
}

.prometec-catalog-search-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.prometec-catalog-search-submit {
  position: absolute;
  top: 7px;
  right: 7px;
  bottom: 7px;
  border: 0;
  border-radius: 999px;
  background: #1d3a94;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0 1.35rem;
  transition: background-color 0.2s ease;
}

.prometec-catalog-search-submit:hover {
  background: #0a2f88;
}

.prometec-catalog-sidebar {
  position: sticky;
  top: 108px;
}

.prometec-catalog-sidebar__details {
  width: 100%;
}

.prometec-catalog-sidebar__toggle {
  align-items: center;
  background: #f4f7fc;
  border: 1px solid #d9e0ec;
  border-radius: 18px;
  color: #1d3a94;
  cursor: pointer;
  display: none;
  font-size: 0.95rem;
  font-weight: 700;
  gap: 0.85rem;
  list-style: none;
  padding: 0.95rem 1rem;
  user-select: none;
}

.prometec-catalog-sidebar__toggle::-webkit-details-marker {
  display: none;
}

.prometec-catalog-sidebar__toggle-icon {
  display: inline-flex;
  flex-direction: column;
  gap: 0.25rem;
  width: 18px;
}

.prometec-catalog-sidebar__toggle-icon span {
  background: currentColor;
  border-radius: 999px;
  display: block;
  height: 2px;
  transform-origin: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
  width: 100%;
}

.prometec-catalog-sidebar__body {
  width: 100%;
}

.prometec-catalog-menu li + li {
  margin-top: 0.45rem;
}

.prometec-catalog-menu a {
  color: #36549f;
  display: inline-flex;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.5;
  transition: color 0.2s ease, transform 0.2s ease;
}

.prometec-catalog-menu a:hover,
.prometec-catalog-menu a.is-active {
  color: #1d3a94;
  font-weight: 700;
  transform: translateX(2px);
}

.prometec-catalog-submenu {
  border-left: 1px solid #d9e0ec;
  margin: 0.85rem 0 0 0.35rem;
  padding-left: 1rem;
}

.prometec-catalog-submenu li + li {
  margin-top: 0.4rem;
}

.prometec-catalog-submenu a {
  color: #667596;
  font-size: 0.92rem;
}

.prometec-catalog-content {
  border-left: 1px solid #d9e0ec;
  min-height: 100%;
  padding-left: clamp(1rem, 2vw, 2.2rem);
}

.prometec-catalog-results-bar {
  border-bottom: 1px solid #edf1f7;
  color: #66718a;
  font-size: 0.95rem;
  padding-bottom: 0.25rem;
}

.prometec-product-card {
  height: 100%;
}

.prometec-product-card__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.prometec-product-card__thumb {
  align-items: center;
  background: #eef2f7;
  border-radius: 24px;
  display: flex;
  justify-content: center;
  min-height: 250px;
  overflow: hidden;
  padding: 1.5rem;
  text-align: center;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.prometec-product-card__thumb:hover {
  box-shadow: 0 18px 36px rgba(15, 35, 83, 0.12);
  transform: translateY(-4px);
}

.prometec-product-card__thumb img {
  height: 220px;
  max-width: 100%;
  object-fit: contain;
  width: auto;
}

.prometec-product-card__placeholder {
  align-items: center;
  border: 1px dashed #cbd5e5;
  border-radius: 16px;
  color: #6f7682;
  display: grid;
  min-height: 220px;
  place-items: center;
  width: 100%;
}

.prometec-product-card__content {
  padding-top: 1rem;
}

.prometec-product-card__meta {
  color: #7b8ab2;
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 0.3rem !important;
}

.prometec-product-card__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.prometec-product-card__title a {
  color: #1d3a94;
  text-decoration: none;
}

.prometec-product-card__title a:hover {
  color: #0a2f88;
}

.prometec-product-card__excerpt {
  color: #59657d;
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 0 !important;
}

.prometec-product-card__actions {
  padding-top: 1rem;
}

.prometec-product-card__actions .btn {
  border-radius: 999px;
  font-size: 0.92rem;
  line-height: 1.2;
  min-height: 46px;
  padding: 0.7rem 1rem;
}

.prometec-product-card__actions .btn.btn-primary-main,
.prometec-product-card__actions .btn.btn-secondary-main {
  border-width: 2px;
}

.prometec-product-card__actions .btn.btn-outline-secondary {
  border-width: 2px;
  color: #1d3a94;
}

.prometec-product-card__actions .btn.btn-outline-secondary:hover {
  background: #1d3a94;
  border-color: #1d3a94;
  color: #fff;
}

.prometec-catalog-empty-state {
  background: #f7f9fd;
  border: 1px solid #e0e6f0;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  text-align: center;
}

.prometec-product-gallery__main {
  background: #fff;
  border: 1px solid #e5e9f2;
  border-radius: 12px;
  display: grid;
  min-height: 360px;
  padding: 20px;
  place-items: center;
}

.prometec-product-gallery__main img {
  height: auto;
  max-height: 420px;
  max-width: 100%;
  object-fit: contain;
  width: auto;
}

.prometec-product-gallery__placeholder {
  border: 1px dashed #cfd5df;
  color: #6f7682;
  display: grid;
  min-height: 340px;
  place-items: center;
  width: 100%;
}

.js-prometec-thumb img {
  height: 72px;
  object-fit: cover;
  width: 72px;
}

.prometec-product-content p + p {
  margin-top: 14px !important;
}

.prometec-quote-form .form-control,
.prometec-quote-form .form-select {
  border-radius: 10px;
  min-height: 44px;
}

.prometec-quote-form textarea.form-control {
  min-height: 110px;
}

.prometec-honeypot {
  height: 1px;
  left: -9999px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.pagination .page-numbers {
  align-items: center;
  background: #fff;
  border: 1px solid #d5dbe7;
  border-radius: 999px;
  color: #0a2f88;
  display: inline-flex;
  height: 38px;
  justify-content: center;
  margin: 0 4px;
  min-width: 38px;
  text-decoration: none;
  padding: 16px;
}

.pagination .page-numbers.current {
  background: #0a2f88;
  border-color: #0a2f88;
  color: #fff;
}

@media (max-width: 1199.98px) {
  .prometec-product-card__thumb {
    min-height: 220px;
  }

  .prometec-product-card__thumb img {
    height: 190px;
  }
}

@media (max-width: 991.98px) {
  .products-section {
    background:
      radial-gradient(
        620px 500px at -18% 44%,
        rgba(20, 160, 255, 0.28) 0%,
        rgba(20, 160, 255, 0.14) 28%,
        rgba(20, 160, 255, 0) 72%
      ),
      linear-gradient(
        180deg,
        var(--surface-glow-base-start) 0%,
        var(--surface-glow-base-mid) 60%,
        var(--surface-glow-base-end) 100%
      );
  }

  .prometec-catalog-shell {
    background:
      radial-gradient(
        520px 420px at 110% 8%,
        rgba(43, 180, 255, 0.24) 0%,
        rgba(43, 180, 255, 0) 68%
      ),
      linear-gradient(
        180deg,
        #0878b4 0%,
        #0a2f88 18%,
        #080322 76%,
        #080322 100%
      );
  }

  .prometec-catalog-panel {
    border-radius: 26px;
  }

  .prometec-catalog-sidebar {
    position: static;
  }

  .prometec-catalog-sidebar__toggle {
    display: inline-flex;
    width: 100%;
  }

  .prometec-catalog-sidebar__details[open] .prometec-catalog-sidebar__toggle {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .prometec-catalog-sidebar__details[open] .prometec-catalog-sidebar__toggle-icon span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .prometec-catalog-sidebar__details[open] .prometec-catalog-sidebar__toggle-icon span:nth-child(2) {
    opacity: 0;
  }

  .prometec-catalog-sidebar__details[open] .prometec-catalog-sidebar__toggle-icon span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .prometec-catalog-sidebar__body {
    border: 1px solid #d9e0ec;
    border-top: 0;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    padding: 1rem 1rem 0;
  }

  .prometec-catalog-content {
    border-left: 0;
    border-top: 1px solid #d9e0ec;
    padding-left: 0;
    padding-top: 1.5rem;
  }

  .prometec-product-single__panel {
    min-height: auto;
  }

  .prometec-product-single__content {
    max-width: none;
    padding-top: 0;
  }

  .prometec-product-single__media {
    min-height: 320px;
  }
}

@media (min-width: 992px) {
  .prometec-catalog-sidebar__body {
    display: block !important;
  }
}

@media (max-width: 767.98px) {
  .prometec-catalog-panel {
    border-radius: 22px;
    padding: 1.25rem;
  }

  .prometec-catalog-search-field .form-control {
    padding-right: 1rem;
  }

  .prometec-catalog-search-submit {
    margin-top: 0.75rem;
    min-height: 48px;
    position: static;
    width: 100%;
  }

  .prometec-catalog-search-field {
    display: flex;
    flex-direction: column;
  }

  .prometec-product-card__thumb {
    min-height: 200px;
  }

  .prometec-product-card__thumb img,
  .prometec-product-card__placeholder {
    height: 170px;
    min-height: 170px;
  }

  .prometec-product-single__tag {
    font-size: 0.84rem;
    width: 100%;
  }

  .prometec-product-single__media {
    min-height: 240px;
  }

  .prometec-product-single__description,
  .prometec-product-single__description p,
  .prometec-product-single__description li {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}

@media (min-width: 768px) {
  .prometec-catalog-search-icon {
    top: 50%;
  }
}
