#breadcrumb {
  > .container {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 12px;
    padding: 24px 12px;

    a,
    span {
      font-size: 14px;
      font-weight: 400;
      color: #000036;

      &:last-child {
        font-weight: 600;
      }
    }
  }
}

#about-header {
  background-color: #0e3ea0;
  height: auto;

  .prod-desc {
    margin-top: 2rem;
  }

  h1,
  .prod-desc {
    @media (min-width: 800px) {
      max-width: 75%;
    }
  }

  p {
    color: white;
  }
}

section.product-cat-grid-container {
  background-color: #dae2ea;
  margin-bottom: 48px;

  .container {
    padding: 32px 1.5rem;

    @media (min-width: 768px) {
      padding: 48px 1.5rem;
    }
  }

  .accordion {
    .accordion-button {
      display: flex;
      width: fit-content;
      padding: 12px 1rem !important;
      border-radius: 16px !important;
      border: 3px solid #000036;
      margin-bottom: 2rem !important;

      @media (min-width: 768px) {
        display: none;
      }

      > div {
        flex-grow: 1;
      }

      .closed {
        display: none;

        @media (min-width: 768px) {
          display: block;
        }
      }

      .opened {
        @media (min-width: 768px) {
          display: none;
        }
      }

      &.collapsed {
        .closed {
          display: block;
        }
        .opened {
          display: none;
        }
      }
    }

    .accordion-body {
      font-size: 16px;
      padding-top: 0 !important;
      padding-bottom: 2rem !important;

      h4 {
        margin-top: 36px;
      }

      nav.filter-categories {
        ul {
          padding-left: 0;
          list-style: none;
          display: flex;
          flex-direction: column;
          gap: 2rem;

          &.parent-category {
            margin-bottom: 2rem;
          }

          &.sub-categories {
            padding-left: 1.5rem;
            margin-top: 0;
          }

          li {
            label {
              width: 100%;
            }
            a {
              display: flex;
              justify-content: space-between;
              align-items: baseline;
              font-size: 14px;
              font-weight: 600;
              color: #000036;
              gap: 1.5rem;

              &:has(svg) {
                justify-content: start;
                gap: 1rem;
                font-size: 16px;
                font-weight: 700;
                align-items: center;
              }
            }
          }
        }
      }
    }
  }

  .product-cat-grid {
    padding-top: 0;
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 32px;

    @media (min-width: 768px) {
      grid-template-columns: repeat(2, 1fr);
      padding-top: 0;
    }

    @media (min-width: 1024px) {
      grid-template-columns: repeat(3, 1fr);
    }

    .prod-container {
      background-color: white;
      border-radius: 20px;
      padding: 1rem;
      min-height: 235px;

      a {
        &:hover {
          h4 {
            color: #000036;
          }
        }
      }

      img {
        width: auto;
        max-width: 100%;
        max-height: 175px;
        object-fit: contain;
      }

      .prod-title {
        font-size: 16px !important;
        font-weight: 800;
      }
    }
  }

  .facetwp-pager {
    margin-top: 2rem;

    .facetwp-page {
      font-size: 18px;
      font-weight: 400;
      color: #0e3ea0;

      &.active {
        font-weight: 700;
        color: #000036;
      }
    }
  }

  .facetwp-facet-product_paging {
    margin-bottom: 0 !important;
  }
}
