/* Product category landing page polish - 2026-05-30 */
.product-category-landing {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
  padding: 34px 0 60px;
  color: #24364a;
  font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
}

.product-category-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.product-category-sidebar {
  position: sticky;
  top: 122px;
}

.category-side-card {
  overflow: hidden;
  border: 1px solid rgba(25, 60, 90, .1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(22, 45, 68, .05);
}

.category-side-card + .category-side-card {
  margin-top: 18px;
}

.category-side-title {
  margin: 0;
  padding: 15px 18px;
  color: #fff;
  background: linear-gradient(90deg, #008dd4, #01559c);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.category-side-list {
  margin: 0;
  padding: 8px 14px;
  list-style: none;
}

.category-side-list li {
  border-bottom: 1px solid rgba(25, 60, 90, .08);
}

.category-side-list li:last-child {
  border-bottom: 0;
}

.category-side-list a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 8px 6px 8px 22px;
  color: #2f4053;
  font-size: 14px;
  line-height: 1.35;
  text-decoration: none;
}

.category-side-list a::before {
  content: "";
  position: absolute;
  left: 5px;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(-45deg);
  opacity: .55;
}

.category-side-list a:hover,
.category-side-list .is-current a {
  color: #006aa8;
  font-weight: 700;
}

.category-recommended-list {
  margin: 0;
  padding: 14px;
  list-style: none;
}

.category-recommended-list li + li {
  margin-top: 12px;
}

.category-recommended-list a {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  color: #24364a;
  text-decoration: none;
}

.category-recommended-list img {
  display: block;
  width: 72px;
  height: 54px;
  object-fit: contain;
  border-radius: 6px;
  background: #f3f8fc;
}

.category-recommended-list span {
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
}

.category-content {
  min-width: 0;
}

.category-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, .75fr);
  gap: 24px;
  padding: 30px;
  border: 1px solid rgba(25, 60, 90, .1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(49, 164, 225, .13), rgba(255, 255, 255, 0) 42%),
    linear-gradient(180deg, #fff, #f7fbfe);
  box-shadow: 0 18px 45px rgba(22, 45, 68, .08);
}

.category-eyebrow {
  margin: 0 0 10px;
  color: #006aa8;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.category-title {
  margin: 0;
  color: #142638;
  font-size: 32px;
  font-weight: 720;
  line-height: 1.22;
  letter-spacing: 0;
}

.category-intro {
  margin: 15px 0 0;
  color: #526273;
  font-size: 16px;
  line-height: 1.78;
}

.category-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.category-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid #007fc5;
  border-radius: 6px;
  background: linear-gradient(90deg, #008dd4, #01559c);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.category-button:hover {
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 103, 170, .2);
}

.category-button-secondary {
  background: #fff;
  color: #006aa8;
}

.category-button-secondary:hover {
  color: #004f82;
  background: #f1f8fc;
}

.category-highlights {
  padding: 22px;
  border: 1px solid rgba(25, 60, 90, .1);
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
}

.category-highlights h2 {
  margin: 0 0 12px;
  color: #172b3d;
  font-size: 18px;
  line-height: 1.35;
}

.category-highlights ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.category-highlights li {
  position: relative;
  padding: 8px 0 8px 18px;
  color: #4d5f70;
  font-size: 14px;
  line-height: 1.55;
  border-top: 1px solid rgba(25, 60, 90, .08);
}

.category-highlights li:first-child {
  border-top: 0;
}

.category-highlights li::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #31a4e1;
}

.category-section {
  margin-top: 28px;
}

.category-section-head {
  margin-bottom: 16px;
}

.category-section-head h2 {
  margin: 0;
  color: #172b3d;
  font-size: 24px;
  font-weight: 720;
  line-height: 1.3;
  letter-spacing: 0;
}

.category-guide-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(25, 60, 90, .1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(22, 45, 68, .05);
}

.category-guide-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.category-guide-table th,
.category-guide-table td {
  padding: 15px 16px;
  border-bottom: 1px solid rgba(25, 60, 90, .09);
  color: #4e5f70;
  font-size: 14px;
  line-height: 1.58;
  text-align: left;
  vertical-align: top;
}

.category-guide-table th {
  color: #172b3d;
  background: #f3f8fc;
  font-weight: 720;
}

.category-guide-table tr:last-child td {
  border-bottom: 0;
}

.category-guide-table td:first-child {
  color: #172b3d;
  font-weight: 700;
}

.category-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.category-product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(25, 60, 90, .1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(22, 45, 68, .05);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.category-product-card:hover {
  border-color: rgba(49, 164, 225, .42);
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(22, 45, 68, .1);
}

.category-product-image {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  padding: 18px;
  background: linear-gradient(180deg, #f8fbfd, #eef5f9);
}

.category-product-image.is-image-missing {
  display: none;
}

.category-product-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .25s ease;
}

.category-product-card:hover .category-product-image img {
  transform: scale(1.035);
}

.category-product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px;
}

.category-product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 9px;
}

.category-product-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: #eef7fc;
  color: #006aa8;
  font-size: 12px;
  font-weight: 700;
}

.category-product-card h3 {
  margin: 0;
  color: #172b3d;
  font-size: 18px;
  font-weight: 720;
  line-height: 1.35;
}

.category-product-card p {
  margin: 10px 0 0;
  color: #647384;
  font-size: 14px;
  line-height: 1.62;
}

.category-product-link {
  margin-top: auto;
  padding-top: 15px;
  color: #006aa8;
  font-size: 14px;
  font-weight: 720;
  text-decoration: none;
}

.category-product-link::after {
  content: ">";
  margin-left: 7px;
}

.product-category-landing .pagination {
  margin-top: 34px;
  text-align: center;
}

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

.product-category-landing .pagination .page-numbers {
  display: inline-flex;
  min-width: 40px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid rgba(25, 60, 90, .12);
  border-radius: 6px;
  background: #fff;
  color: #526273;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.product-category-landing .pagination .page-numbers.current,
.product-category-landing .pagination a.page-numbers:hover {
  border-color: #007fc5;
  background: #007fc5;
  color: #fff;
}

.product-category-landing .no-products {
  margin: 24px 0 0;
  padding: 26px;
  border: 1px solid rgba(25, 60, 90, .1);
  border-radius: 8px;
  background: #fff;
  color: #647384;
  text-align: center;
}

.category-capability-grid,
.category-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.category-info-card {
  padding: 20px;
  border: 1px solid rgba(25, 60, 90, .1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(22, 45, 68, .05);
}

.category-info-card h3 {
  margin: 0;
  color: #172b3d;
  font-size: 17px;
  line-height: 1.35;
}

.category-info-card p {
  margin: 9px 0 0;
  color: #5d6d7e;
  font-size: 14px;
  line-height: 1.7;
}

.category-quote-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding: 22px 24px;
  border-radius: 8px;
  background: linear-gradient(90deg, #063b63, #007fc5);
  color: #fff;
}

.category-quote-strip h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.35;
}

.category-quote-strip p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  line-height: 1.6;
}

.category-quote-strip .category-button {
  border-color: rgba(255, 255, 255, .48);
  background: #fff;
  color: #005a9c;
  flex: 0 0 auto;
}

@media (max-width: 1180px) {
  .product-category-layout {
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 22px;
  }

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

@media (max-width: 940px) {
  .product-category-landing {
    width: min(100% - 32px, 900px);
  }

  .product-category-layout {
    grid-template-columns: 1fr;
  }

  .product-category-sidebar {
    position: static;
  }

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

@media (max-width: 680px) {
  .product-category-landing {
    width: min(100% - 24px, 640px);
    padding-top: 24px;
    padding-bottom: 42px;
  }

  .category-title {
    font-size: 26px;
  }

  .category-hero {
    padding: 22px;
  }

  .category-product-grid,
  .category-capability-grid,
  .category-faq-grid {
    grid-template-columns: 1fr;
  }

  .category-quote-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .category-quote-strip .category-button {
    width: 100%;
  }
}
