/* Yellow rgb - 245, 235, 8 */
/* Blue rgb - 0, 116, 179 */
.productSubNav {
  background-color: #eee;
}
.productSubNav__container {
  max-width: 1500px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 0 auto;
}
.productType {
  padding: 10px 15px;
  font-size: 12px;
}
.layout__flex {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
}
.layout--100 {
  width: 100%;
}
.layout--80 {
  width: 80%;
  margin: 0 auto;
}
.layout--80 .sfContentBlock {
  margin-bottom: 0 !important;
  flex-grow: 1;
}
@media screen and (min-width: 768px) {
  .layout--50 {
    width: calc(50% - 20px);
  }
}
@media screen and (min-width: 1024px) {
  .layout--30 {
    width: calc(30% - 40px);
  }
}
.category {
  box-sizing: border-box;
  padding: 10px;
  height: 100%;
}
.category__content {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  border: 2px solid rgba(0, 116, 179, 1);
  padding: 20px;
  height: 100%;
}
.category__link {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .layout--50 .category__link {
    height: 200px;
    width: auto;
  }
  .layout--50 .category__image {
    width: 100%;
    height: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .category__link {
    width: clamp(200px, 100%, 15%);
  }
}
.category__image {
  width: 100%;
  height: auto;
}
.category__copy {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .layout--100 .category__copy {
    width: clamp(300px, 100%, calc(85% - 40px));
  }
}
.category .category__title {
  font-size: 24px !important;
  font-weight: bold !important;
  margin: 20px 0 5px !important;
}
.category .category__subtitle {
  font-size: 18px !important;
  font-weight: bold !important;
  text-transform: unset !important;
  margin: 5px 0 10px !important;
}
.category .bodycopy {
  font-size: 16px !important;
  height: 100%;
}
:is(.button--reveal, .button--direct) {
  width: fit-content;
  font-weight: bold;
  background-color: rgba(245, 235, 8, 1);
  border: 3px solid rgba(245, 235, 8, 1);
  padding: 10px 20px;
  border-radius: 3px;
  cursor: pointer;
  margin: 0 auto;
}
.button--direct {
  display: block;
}
@media screen and (min-width: 1024px) {
  :is(.button--reveal, .button--direct) {
    margin: 0 auto 0 0;
  }
}
:is(.button--reveal:hover, .button--direct:hover) {
  background-color: rgba(245, 235, 8, 0);
  transition: all ease-out 300ms;
}
.content__hidden {
  visibility: hidden;
  opacity: 0;
  height: 0;
}
.content__visible {
  visibility: visible;
  opacity: 1;
  height: 100%;
  transition: all ease-out 400ms;
}
.featuredProducts {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
}
:is(.featuredProducts__title, .featuredProducts__viewMore) {
  width: 100%;
  text-align: center;
  margin: 15px 0 0;
}
.category .category__hidden .featuredProducts__title {
  font-size: 18px !important;
}
.product {
  width: 100%;
  box-sizing: border-box;
  padding: 15px;
}
@media screen and (min-width: 1024px) {
  .product {
    width: clamp(200px, 100%, calc(33% - 30px));
    transition: all ease-out 400ms;
  }
  .product:hover {
    box-shadow: 0px 20px 10px -15px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
    transition: all ease-out 400ms;
  }
}
.product__link {
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.productImage {
  max-height: 250px;
  width: auto;
  margin: 25px auto 10px;
}