body.home #content.site-content {
  padding-top: 0;
  padding-bottom: 0;
}

.bx-home {
  --bx-red: #c52127;
  --bx-dark: #222;
  --bx-gray: #dadada;
  color: #222;
}

.bx-home a:hover {
  font-weight: inherit;
}

.bx-home__section {
  width: 100%;
  margin-inline: auto;
}

.bx-home__fullbleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.bx-home__inner {
  width: min(calc(100% - 32px), 1170px);
  margin-inline: auto;
}

.bx-home__heading {
  margin: 0 0 35px;
  color: #222;
  font-size: clamp(25px, 2.4vw, 36px);
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-transform: none;
}

.bx-home__heading--red {
  color: var(--bx-red);
  text-transform: uppercase;
}

.bx-home__hero {
  padding-top: 0;
}

.bx-home__hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.27fr) minmax(270px, 1fr);
  gap: 10px;
}

.bx-home-slider {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  background: #111;
}

.bx-home-slider__slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transition: opacity .5s ease;
  pointer-events: none;
}

.bx-home-slider__slide.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
}

.bx-home-slider__slide img,
.bx-home__side-banner img {
  display: block;
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.bx-home-slider__content {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
  line-height: 1.15;
}

.bx-home-slider__content--first {
  top: 88px;
  left: 60px;
}

.bx-home-slider__content--second {
  top: 86px;
  left: 54px;
}

.bx-home-slider__eyebrow {
  margin-bottom: 7px;
  color: #f04a23;
  font-size: 15px;
  font-weight: 700;
}

.bx-home-slider__title {
  font-size: 24px;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .7);
}

.bx-home-slider__button {
  margin-top: 22px;
  padding: 9px 18px;
  border: 1px solid rgba(255, 255, 255, .8);
  color: #fff;
  font-size: 13px;
}

.bx-home-slider__arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 42px;
  height: 58px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: rgba(0, 0, 0, .32);
  color: #fff;
  font-size: 36px;
  line-height: 1;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity .2s ease, background .2s ease;
  cursor: pointer;
}

.bx-home-slider:hover .bx-home-slider__arrow,
.bx-home-slider:focus-within .bx-home-slider__arrow {
  opacity: 1;
}

.bx-home-slider__arrow:hover,
.bx-home-slider__arrow:focus-visible {
  background: rgba(0, 0, 0, .7);
}

.bx-home-slider__arrow--prev {
  left: 0;
}

.bx-home-slider__arrow--next {
  right: 0;
}

.bx-home-slider__dots {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 13px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.bx-home-slider__dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid #fff;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.bx-home-slider__dots button.is-active {
  background: #fff;
}

.bx-home__side-banner {
  overflow: hidden;
}

.bx-home-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 24px 0 42px;
  border-bottom: 1px solid #e8e8e8;
}

.bx-home-benefits__item {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  color: #555;
  font-size: 14px;
  line-height: 1.35;
}

.bx-home-benefits__item img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex: 0 0 auto;
}

.bx-home-products {
  padding: 37px 0 0;
}

.bx-home-products ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 28px;
  margin: 0;
}

.bx-home-products ul.products::before,
.bx-home-products ul.products::after {
  display: none;
}

.bx-home-products ul.products li.product {
  display: flex;
  align-self: start;
  height: auto !important;
  padding-bottom: 0 !important;
  float: none !important;
  flex-direction: column;
  width: 100% !important;
  min-width: 0;
  min-height: 0;
  max-width: none;
  margin: 0 !important;
  overflow: hidden;
  border: 1px solid #e3e6ea;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 6px 22px rgba(25, 35, 50, .07);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.bx-home-products ul.products li.product::before,
.bx-home-products ul.products li.product::after {
  display: none;
}

.bx-home-products ul.products li.product:hover {
  border-color: #d6d9de;
  box-shadow: 0 12px 30px rgba(25, 35, 50, .12);
  transform: translateY(-3px);
}

.bx-home-products .woocommerce-image__wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #fff;
}

.bx-home-products .woocommerce-image__wrapper > a,
.bx-home-products .shoptimizer-plp-carousel-container,
.bx-home-products .shoptimizer-plp-image-wrapper {
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
}

.bx-home-products .woocommerce-image__wrapper img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  padding: 12px;
  object-fit: contain;
  transition: transform .25s ease;
}

.bx-home-products ul.products li.product:hover .woocommerce-image__wrapper img {
  transform: scale(1.025);
}

.bx-home-products .commercekit-wishlist.mini {
  top: 12px;
  right: 12px;
  z-index: 3;
  display: grid;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(0, 0, 0, .07);
  border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 4px 14px rgba(0, 0, 0, .08);
  place-items: center;
}

.bx-home-products .woocommerce-card__header {
  display: grid !important;
  flex: 0 0 auto;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: 2.8em auto auto;
  align-items: center;
  gap: 12px 8px;
  width: 100%;
  min-height: 126px;
  padding: 15px;
}

.bx-home-products .woocommerce-loop-product__title {
  display: -webkit-box;
  grid-column: 1 / -1;
  grid-row: 1;
  min-height: 2.8em;
  margin: 0;
  overflow: hidden;
  color: #20242a;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.bx-home-products .woocommerce-card__header > .star-rating,
.bx-home-products .woocommerce-card__header > .shoptimizer_ratingContainer {
  display: none !important;
}

.bx-home-products .woocommerce-loop-product__title a {
  color: inherit;
  text-decoration: none;
}

.bx-home-products ul.products li.product .price {
  grid-column: 1 / -1;
  grid-row: 2;
  align-self: center;
  margin: 0;
  color: var(--bx-red);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.bx-home-products ul.products li.product .button,
.bx-home-products ul.products li.product .added_to_cart {
  display: flex !important;
  grid-column: 1 / -1;
  grid-row: 3;
  align-self: center;
  justify-self: center;
  width: min(100%, 240px) !important;
  min-width: 0;
  min-height: 36px;
  margin: 0 !important;
  padding: 9px 12px;
  border: 0;
  border-radius: 10px;
  background: #ad2a31;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  position: static !important;
  opacity: 1 !important;
  visibility: visible !important;
  align-items: center;
  justify-content: center;
}

.bx-home-categories {
  padding: 44px 0 54px;
  background: var(--bx-gray);
}

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

@media (min-width: 901px) {
  .bx-home-category:nth-child(1) { grid-column: 1; grid-row: 1; }
  .bx-home-category:nth-child(2) { grid-column: 1; grid-row: 2; }
  .bx-home-category:nth-child(3) { grid-column: 2; grid-row: 1; }
  .bx-home-category:nth-child(4) { grid-column: 2; grid-row: 2; }
  .bx-home-category:nth-child(5) { grid-column: 3; grid-row: 1; }
  .bx-home-category:nth-child(6) { grid-column: 3; grid-row: 2; }
}

.bx-home-category {
  display: grid;
  grid-template-columns: 42% 1fr;
  grid-template-rows: auto 1fr;
  gap: 5px 18px;
  min-height: 214px;
  padding: 18px;
  overflow: hidden;
  border: 2px solid #eceaea;
  border-radius: 11px;
  background: radial-gradient(circle at 35% 35%, #fff 0, #f7f7f7 43%, #ddd 100%);
  color: #333;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.bx-home-category:hover {
  transform: translateY(-2px);
  box-shadow: 0 9px 22px rgba(0, 0, 0, .1);
}

.bx-home-category img {
  grid-row: 1 / 3;
  align-self: center;
  width: 100%;
  height: 170px;
  object-fit: contain;
}

.bx-home-category h3 {
  align-self: end;
  margin: 0;
  color: #222;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.25;
}

.bx-home-category p {
  margin: 0;
  color: #555;
  font-size: 12px;
  line-height: 1.55;
}

.bx-home-products--hot {
  padding-top: 54px;
}

.bx-home-about {
  display: grid;
  grid-template-columns: minmax(260px, 34%) 1fr;
  gap: 42px;
  align-items: start;
  padding: 50px 0 58px;
  border-top: 1px solid #ececec;
}

.bx-home-about__media img {
  display: block;
  width: 100%;
  height: auto;
}

.bx-home-about__content h2 {
  margin: 0 0 18px;
  color: #222;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.35;
}

.bx-home-about__content p,
.bx-home-about__content li {
  color: #6b6b6b;
  font-size: 14px;
  line-height: 1.62;
}

.bx-home-about__content p {
  margin: 0 0 12px;
}

.bx-home-about__content ul {
  margin: 0 0 13px;
  padding-left: 20px;
}

.bx-home-subscribe {
  padding: 42px 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(197, 33, 39, .08), transparent 32%),
    linear-gradient(135deg, #f5f6f8 0%, #eceff2 100%);
}

.bx-home-subscribe__inner {
  display: grid;
  grid-template-columns: minmax(260px, .85fr) minmax(520px, 1.6fr);
  gap: 42px;
  align-items: center;
  padding: 30px 34px;
  border: 1px solid rgba(15, 23, 42, .07);
  border-radius: 22px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 45px rgba(15, 23, 42, .09);
}

.bx-home-subscribe__copy {
  position: relative;
  padding-left: 58px;
}

.bx-home-subscribe__icon {
  position: absolute;
  top: 50%;
  left: 0;
  display: grid;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--bx-red);
  color: #fff;
  transform: translateY(-50%);
  box-shadow: 0 9px 20px rgba(197, 33, 39, .24);
  place-items: center;
}

.bx-home-subscribe__icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.bx-home-subscribe__copy h2 {
  margin: 0 0 6px;
  color: #20242a;
  font-size: clamp(21px, 2vw, 27px);
  font-weight: 700;
  line-height: 1.2;
}

.bx-home-subscribe__copy p {
  margin: 0;
  color: #68707c;
  font-size: 13px;
  line-height: 1.55;
}

.bx-home-subscribe__form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
}

.bx-home-subscribe__form input,
.bx-home-subscribe__form button {
  min-height: 48px;
  margin: 0;
  border-radius: 12px;
  font-size: 13px;
}

.bx-home-subscribe__form input {
  width: 100%;
  padding: 0 16px;
  border: 1px solid #d9dde3;
  outline: 0;
  background: #f8f9fb;
  color: #20242a;
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, .03);
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.bx-home-subscribe__form input::placeholder {
  color: #89919c;
}

.bx-home-subscribe__form input:focus {
  border-color: var(--bx-red);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(197, 33, 39, .12);
}

.bx-home-subscribe__form button {
  padding: 0 28px;
  border: 0;
  background: linear-gradient(135deg, #d22b32 0%, #b91920 100%);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 9px 20px rgba(197, 33, 39, .22);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer;
}

.bx-home-subscribe__form button:hover {
  background: linear-gradient(135deg, #bd1d24 0%, #a9151b 100%);
  box-shadow: 0 12px 24px rgba(197, 33, 39, .3);
  transform: translateY(-1px);
}

.bx-home-subscribe__form button:focus-visible {
  outline: 3px solid rgba(197, 33, 39, .22);
  outline-offset: 3px;
}

.bx-home-subscribe__honeypot {
  position: absolute !important;
  left: -9999px !important;
}

.bx-home-subscribe__notice {
  margin: 0 0 9px;
  font-size: 13px;
  line-height: 1.4;
}

.bx-home-subscribe__notice.is-success {
  color: #176b2d;
}

.bx-home-subscribe__notice.is-error {
  color: #9f151a;
}

.bx-home-news {
  padding: 42px 0 60px;
}

.bx-home-news__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.bx-home-news__card {
  overflow: hidden;
  border: 1px solid #e5e5e5;
  background: #fff;
  box-shadow: 0 3px 12px rgba(0, 0, 0, .06);
}

.bx-home-news__image {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.bx-home-news__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.bx-home-news__card:hover .bx-home-news__image img {
  transform: scale(1.025);
}

.bx-home-news__body {
  padding: 18px 20px 20px;
}

.bx-home-news__body h2 {
  min-height: 48px;
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
}

.bx-home-news__body h2 a {
  color: #222;
  text-decoration: none;
}

.bx-home-news__more {
  color: #555;
  font-size: 12px;
  text-decoration: none;
}

@media (max-width: 900px) {
  .bx-home__hero-grid {
    grid-template-columns: minmax(0, 2fr) minmax(220px, 1fr);
  }

  .bx-home-benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .bx-home-products ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bx-home-categories__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bx-home-subscribe__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px;
  }
}

@media (max-width: 767px) {
  .bx-home__hero {
    padding-top: 0;
  }

  .bx-home__hero-grid {
    display: block;
  }

  .bx-home-slider {
    width: 100vw;
    min-height: 0;
    margin-left: calc(50% - 50vw);
    aspect-ratio: 2.485 / 1;
  }

  .bx-home-slider__slide img {
    height: 100%;
  }

  .bx-home-slider__content--first,
  .bx-home-slider__content--second {
    top: 25%;
    left: 7%;
  }

  .bx-home-slider__eyebrow {
    margin-bottom: 3px;
    font-size: clamp(8px, 2.8vw, 13px);
  }

  .bx-home-slider__title {
    font-size: clamp(12px, 4.4vw, 21px);
  }

  .bx-home-slider__button {
    margin-top: 8px;
    padding: 4px 9px;
    font-size: clamp(7px, 2.3vw, 11px);
  }

  .bx-home__side-banner,
  .bx-home-benefits {
    display: none;
  }

  .bx-home-slider__arrow {
    display: none;
  }

  .bx-home-products {
    padding: 24px 0 0;
  }

  .bx-home__heading {
    margin-bottom: 24px;
    font-size: 24px;
  }

  .bx-home-products ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .bx-home-products ul.products li.product {
    max-width: none;
  }

  .bx-home-products .woocommerce-image__wrapper img {
    padding: 8px;
  }

  .bx-home-products .commercekit-wishlist.mini {
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
  }

  .bx-home-products .woocommerce-card__header {
    grid-template-rows: 48px auto auto;
    gap: 9px 6px;
    min-height: 112px;
    padding: 11px;
  }

  .bx-home-products .woocommerce-loop-product__title {
    display: flex;
    align-items: center;
    height: 48px;
    min-width: 0;
    min-height: 48px;
    overflow: hidden;
    font-size: clamp(11px, 2.2vw, 14px);
    -webkit-line-clamp: initial;
  }

  .bx-home-products .woocommerce-loop-product__title a {
    display: block;
    width: 100%;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .bx-home-products ul.products li.product .price {
    grid-column: 1 / -1;
    font-size: clamp(13px, 2.7vw, 17px);
  }

  .bx-home-products ul.products li.product .button,
.bx-home-products ul.products li.product .added_to_cart {
    display: flex !important;
    grid-column: 1 / -1;
    grid-row: 3;
    align-items: center;
    justify-content: center;
    max-width: none;
    width: min(100%, 240px) !important;
    min-height: 38px;
    padding: 8px 10px;
    font-size: clamp(9px, 1.9vw, 12px);
    line-height: 1.2;
  }

  .bx-home-categories {
    padding: 32px 0 38px;
  }

  .bx-home-categories__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .bx-home-category {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 300px;
    padding: 25px 22px 22px;
    text-align: center;
  }

  .bx-home-category img {
    width: 170px;
    height: 155px;
    margin-bottom: 5px;
  }

  .bx-home-category h3 {
    align-self: center;
    margin: 0 0 6px;
    font-size: 18px;
    text-align: center;
  }

  .bx-home-category p {
    font-size: 14px;
    line-height: 1.65;
  }

  .bx-home-about {
    display: block;
    padding: 35px 0 42px;
  }

  .bx-home-about__media {
    display: none;
  }

  .bx-home-about__content h2 {
    font-size: 21px;
  }

  .bx-home-subscribe {
    padding: 28px 0;
  }

  .bx-home-subscribe__inner {
    width: min(calc(100% - 24px), 1170px);
    gap: 22px;
    padding: 24px 18px;
    border-radius: 18px;
  }

  .bx-home-subscribe__copy {
    padding-left: 52px;
  }

  .bx-home-subscribe__icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .bx-home-subscribe__form {
    grid-template-columns: 1fr;
  }

  .bx-home-subscribe__form button {
    width: 100%;
  }

  .bx-home-news {
    padding: 34px 0 45px;
  }

  .bx-home-news__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .bx-home-news__body h2 {
    min-height: 0;
  }
}

.bx-home-products ul.products li.product .button:hover,
.bx-home-products ul.products li.product .added_to_cart:hover {
  background: #8f2026;
  color: #fff;
}

@media (max-width: 380px) {
  .bx-home-products ul.products {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bx-home-slider__slide,
  .bx-home-category,
  .bx-home-news__image img {
    transition: none;
  }
}
