.category-header {
  margin-bottom: 50px;
  background-repeat: no-repeat;
  background-size: cover;
  height: 14.15625vw;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: row;
  min-height: 26vh;
  background-position: center center;

  & h1 {
    font-size: clamp(1.8rem, 2.5vw, 2.5rem) !important;
    color: #fff;
    max-width: 475px;
    text-wrap: pretty;
    word-break: keep-all;
    word-wrap: normal;
    line-height: 1.4;
    position: relative;
    text-align: left;
    height: 100%;

    &::after {
      content: "";
      position: absolute;
      bottom: -30px;
      left: 0;
      width: 151px;
      height: 3px;
      background-color: #fff;
    }
  }
}

.category-description {
  font-size: 1.1875rem;
  font-weight: 500;
  line-height: 1.74;
  margin-bottom: 50px;

  & .category-description__disclosure {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 40px;
  }

  & .btn {
    background-color: var(--color-grey);
    outline: 2px solid transparent;
    outline-offset: 2px;

    &:hover,
    &:active,
    &:focus {
      background-color: var(--color-orange) !important;
    }
    &:focus-visible {
      outline: 2px solid var(--color-orange);
    }
  }
}

.product-grid > div {
  margin-bottom: 4.6875vw;
}

.product-miniature {
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.15);
}
@media(max-width:455px){
  .product-miniature {
    & .product-price {
              flex-direction: column;
              align-items: center;
              gap: 35px;
    }
  }
  .btn{
        padding-block: 19px
  }
  .card-body > div:not(div.description-short){
    width: 100%;
    display: flex;
    align-items: center;
            justify-content: center;
  }
  .product-miniature {
    & .btn {
    min-width: unset;
    width: calc(100% - 40px);   
    } 
  }
}


.product-title > a{
  font-size: 1.55rem;
  min-height: 86px;
}
#main {
  display: flex;
  flex-wrap: wrap;

  & .row{
    width: 100% !important;
    order:1;
  }
  & .category-description{
    order:2;
    margin-top: 50px;
  }
  & #js-product-list-top{
    order:3;
    margin-top: 50px;
  }
}