:root {
  --rz-green: #78b900;
  --rz-green-dark: #5fa000;
  --rz-dark: #102726;
  --rz-muted: #6f7a7a;
  --rz-border: #ececec;
  --rz-soft: #f7f5ee;
  --rz-cream: #f3f0e6;
  --rz-container: 1210px;
  --rz-font: 'Open Sans', sans-serif;
  --ltn__heading-font: 'Open Sans', sans-serif;
  --ltn__body-font: 'Open Sans', sans-serif;
}

body,
button,
input,
select,
textarea,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
strong,
small,
label,
li {
  font-family: var(--rz-font);
}

.storefront-header,
.storefront-header input,
.storefront-header button,
.storefront-root-nav,
.storefront-page,
.storefront-page input,
.storefront-page button,
.checkout-page,
.checkout-page input,
.checkout-page select,
.checkout-page textarea,
.checkout-page button,
.home,
.home input,
.home button {
  font-family: var(--rz-font);
}

.storefront-header,
.storefront-header *,
.storefront-page,
.storefront-page *,
.checkout-page,
.checkout-page *,
.home,
.home * {
  box-sizing: border-box;
}

.storefront-header {
  background: #fff;
  border-bottom: 1px solid var(--rz-border);
  position: sticky;
  top: 0;
  z-index: 1020;
}

.storefront-header__top {
  align-items: center;
  display: flex;
  gap: 22px;
  margin: 0 auto;
  max-width: var(--rz-container);
  padding: 22px 0;
  position: relative;
  z-index: 1044;
}

.storefront-header__logo img {
  display: block;
  height: 66px;
  width: auto;
}

.storefront-header__search {
  align-items: center;
  background: #fff;
  border: 1px solid var(--rz-border);
  border-radius: 999px;
  box-shadow: 0 4px 18px rgba(16, 39, 38, .08);
  display: flex;
  overflow: hidden;
  position: relative;
}

.storefront-header__search--desktop {
  flex: 1;
  margin-left: 18px;
  max-width: 530px;
}

.storefront-header__search--mobile {
  display: none;
  margin: 24px 32px;
}

.storefront-header__search input {
  border: 0;
  color: var(--rz-dark);
  flex: 1;
  font-size: 15px;
  height: 52px;
  outline: 0;
  padding: 0 24px;
}

.storefront-header__search button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--rz-dark);
  display: flex;
  font-size: 18px;
  height: 52px;
  justify-content: center;
  width: 52px;
}

.storefront-search-panel {
  background: #fff;
  border: 1px solid var(--rz-border);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(16, 39, 38, .18);
  display: none;
  left: 0;
  max-height: 350px;
  overflow-y: auto;
  padding: 14px;
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  z-index: 1046;
}

.storefront-header__search.is-open {
  overflow: visible;
  z-index: 1045;
}

.storefront-header__search.is-open .storefront-search-panel {
  display: block;
}

.storefront-header__search--desktop.is-open .storefront-search-panel {
  left: 50% !important;
  max-width: none;
  position: fixed;
  right: auto !important;
  top: 99px;
  transform: translateX(-50%);
  width: 530px;
  z-index: 20000;
}

.storefront-search-panel__title {
  color: var(--rz-muted);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.storefront-search-panel__items {
  display: grid;
  gap: 4px;
}

.storefront-search-panel a {
  align-items: center;
  border-radius: 6px;
  color: var(--rz-dark);
  display: flex;
  font-size: 14px;
  font-weight: 700;
  gap: 10px;
  padding: 10px;
  text-decoration: none !important;
}

.storefront-search-panel a:hover {
  background: var(--rz-soft);
  color: var(--rz-green);
}

.storefront-search-panel__empty {
  color: var(--rz-muted);
  font-size: 14px;
  padding: 8px 0;
}

.storefront-search-backdrop {
  background: rgba(0, 0, 0, .48);
  display: block;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity .18s ease;
  z-index: 1042;
}

.storefront-search-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.storefront-search-open .storefront-header__top > :not(.storefront-header__search),
.storefront-search-open .storefront-root-nav {
  opacity: .45;
  pointer-events: none;
}

.storefront-header__delivery {
  color: var(--rz-dark);
  font-size: 15px;
  font-weight: 700;
}

.storefront-header__phone,
.storefront-header__cart,
.storefront-header__menu {
  align-items: center;
  display: flex;
  justify-content: center;
}

.storefront-header__phone {
  background: #f2f2f2;
  border-radius: 999px;
  color: var(--rz-dark);
  font-size: 14px;
  gap: 10px;
  padding: 12px 20px;
}

.storefront-header__phone img {
  height: 18px;
  width: 18px;
}

.storefront-header__cart {
  background: var(--rz-green);
  border-radius: 999px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
}

.storefront-header__cart:hover {
  color: #fff;
}

.storefront-header__cart img {
  height: 21px;
  width: 21px;
}

.storefront-header__menu {
  background: transparent;
  border: 0;
  display: none;
  flex-direction: column;
  gap: 7px;
  height: 48px;
  padding: 0;
  width: 48px;
}

.storefront-header__menu span {
  background: #050505;
  border-radius: 2px;
  display: block;
  height: 4px;
  width: 34px;
}

.storefront-root-nav {
  background: var(--rz-green);
  position: relative;
  z-index: 1030;
}

.storefront-nav-backdrop,
.storefront-root-nav__close {
  display: none;
}

.storefront-root-nav__inner {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  max-width: var(--rz-container);
  min-height: 68px;
  overflow: visible;
  white-space: nowrap;
  width: 100%;
}

.storefront-root-nav__list {
  align-items: stretch;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.storefront-root-nav__item {
  align-items: center;
  align-self: stretch;
  display: block;
  margin: 0;
  position: static;
}

.storefront-root-nav .storefront-root-nav__item > a {
  color: #fff !important;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none !important;
}

.storefront-root-nav .storefront-root-nav__list > .storefront-root-nav__item > a {
  align-items: center;
  display: flex !important;
  justify-content: center;
  height: 68px;
  line-height: 1.2 !important;
  min-height: 68px;
  padding: 0 4px !important;
  text-align: center;
  width: 100%;
}

.storefront-root-nav a.is-active {
  color: #fff !important;
  text-decoration: none !important;
}

.storefront-root-nav__item:hover > a,
.storefront-root-nav__item:focus-within > a {
  background: #fff;
  color: var(--rz-dark) !important;
  text-decoration: none !important;
}

.storefront-root-nav .menu-icon > a::before {
  display: none;
}

.storefront-root-nav__mega {
  box-sizing: border-box;
  left: 50% !important;
  right: auto !important;
  opacity: 0;
  max-width: calc(100vw - 80px);
  padding: 22px;
  pointer-events: none;
  position: absolute !important;
  top: 100% !important;
  transform: translateX(-50%) !important;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  visibility: hidden;
  white-space: normal;
  width: min(var(--rz-container), calc(100vw - 80px)) !important;
  z-index: 1002;
  background: #fff;
  border: 1px solid var(--rz-border);
  border-radius: 0;
  box-shadow: 0 18px 38px rgba(16, 39, 38, .18);
  display: grid !important;
  column-gap: 20px;
  row-gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  margin: 0;
}

.storefront-root-nav__mega--cols-1 {
  grid-template-columns: minmax(0, 1fr);
}

.storefront-root-nav__mega--cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.storefront-root-nav__item:hover > .storefront-root-nav__mega,
.storefront-root-nav__item:focus-within > .storefront-root-nav__mega {
  opacity: 1 !important;
  pointer-events: auto;
  transform: translateX(-50%) !important;
  visibility: visible !important;
}

.storefront-root-nav__mega > li {
  display: block;
  float: none !important;
  list-style: none;
  margin: 0;
  max-width: none !important;
  min-width: 0;
  padding-left: 0 !important;
  padding-right: 0 !important;
  width: 100% !important;
}

.storefront-root-nav__mega > li > a {
  background: var(--rz-soft);
  color: var(--rz-dark);
  display: block;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 20px;
  padding: 11px 14px;
  text-decoration: none !important;
}

.storefront-root-nav__mega ul {
  display: grid;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0 4px;
}

.storefront-root-nav__mega ul a {
  color: var(--rz-muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  padding: 0;
  text-decoration: none !important;
}

.storefront-root-nav__mega a:hover {
  color: var(--rz-green);
}

.storefront-mobile-categories {
  display: none;
}

.home {
  background: #fff;
  color: var(--rz-dark);
}

body.home,
body.storefront-page,
body.catalog-page {
  overflow-x: hidden;
}

.home__container {
  margin: 0 auto;
  max-width: var(--rz-container);
  padding-left: 0;
  padding-right: 0;
}

.home__section {
  padding: 78px 0;
}

.home__section--soft {
  background: var(--rz-cream);
}

.home__eyebrow {
  color: var(--rz-green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.home__title {
  color: var(--rz-dark);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.08;
  margin: 0 0 18px;
}

.home__text {
  color: var(--rz-dark);
  font-size: 17px;
  line-height: 1.75;
  margin: 0;
}

.home__center {
  margin: 0 auto 42px;
  max-width: 700px;
  text-align: center;
}

.home-btn {
  align-items: center;
  background: var(--rz-green);
  border: 0;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  justify-content: center;
  min-height: 44px;
  padding: 0 26px;
}

.home-btn:hover {
  background: var(--rz-green-dark);
  color: #fff;
}

.home-hero {
  padding: 34px 0 26px;
}

.home-hero__grid {
  align-items: stretch;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-width: 0;
}

.home-hero__main,
.home-hero__promo {
  border-radius: 8px;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  position: relative;
}

.home-hero__main {
  aspect-ratio: 1 / .96;
  min-height: 0;
}

.home-hero__main img,
.home-hero__promo img,
.home-about__image img,
.home-delivery__image img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  width: 100%;
}

.home-hero__overlay {
  background: linear-gradient(180deg, rgba(16, 39, 38, 0) 10%, rgba(16, 39, 38, .72) 100%);
  bottom: 0;
  color: #fff;
  left: 0;
  padding: 0 34px 34px;
  position: absolute;
  right: 0;
}

.home-hero__overlay h1 {
  color: #fff;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 18px;
  max-width: 360px;
}

.home-hero__side {
  display: grid;
  gap: 24px;
  grid-template-rows: repeat(2, auto);
}

.home-hero__promo {
  align-items: center;
  aspect-ratio: 2.18 / 1;
  background: #f7f7f7;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 0;
  padding: 0;
}

.home-hero__promo img {
  bottom: 0;
  height: 100%;
  left: 0;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.home-hero__promo::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, .94) 0%, rgba(255, 255, 255, .76) 44%, rgba(255, 255, 255, 0) 72%);
  bottom: 0;
  content: '';
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.home-hero__promo:nth-child(2)::after {
  background: linear-gradient(270deg, rgba(255, 255, 255, .94) 0%, rgba(255, 255, 255, .78) 44%, rgba(255, 255, 255, 0) 72%);
}

.home-hero__promo-content {
  grid-column: 1;
  max-width: 260px;
  min-width: 0;
  padding-left: 32px;
  position: relative;
  z-index: 1;
}

.home-hero__promo:nth-child(2) .home-hero__promo-content {
  grid-column: 2;
  padding-left: 0;
  padding-right: 32px;
}

.home-hero__promo h2 {
  color: var(--rz-dark);
  font-size: clamp(19px, 2.1vw, 24px);
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 16px;
}

.home-hero__promo span {
  align-items: center;
  background: var(--rz-green);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  min-height: 34px;
  padding: 0 18px;
}

.home-feature-strip {
  background: #fff;
  border: 1px solid var(--rz-border);
  border-radius: 8px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 28px;
  padding: 18px 24px;
}

.home-feature-strip__item {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: center;
}

.home-feature-strip__item img {
  height: 34px;
  object-fit: contain;
  width: 44px;
}

.home-feature-strip__item strong {
  color: var(--rz-dark);
  display: block;
  font-size: 13px;
  line-height: 1.2;
}

.home-feature-strip__item span {
  color: var(--rz-muted);
  display: block;
  font-size: 12px;
  line-height: 1.2;
}

.home-about {
  display: grid;
  gap: 58px;
  grid-template-columns: .95fr 1.05fr;
}

.home-about__images {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr 1fr;
}

.home-about__image {
  border-radius: 8px;
  height: 360px;
  overflow: hidden;
}

.home-about__image:nth-child(2) {
  margin-top: 46px;
}

.home-about__content {
  align-self: center;
}

.home-about__content .home-btn,
.home-delivery__content .home-btn {
  margin-top: 26px;
}

.home-category-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, 1fr);
}

.home-category-card {
  align-items: center;
  background: #fff;
  border: 1px solid var(--rz-border);
  border-radius: 8px;
  color: var(--rz-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 160px;
  padding: 24px 16px;
  text-align: center;
}

.home-category-card:hover,
.home-category-card.is-active {
  border-color: var(--rz-green);
  color: var(--rz-dark);
}

.home-category-card__icon {
  align-items: center;
  background: transparent;
  border-radius: 50%;
  display: flex;
  height: 84px;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
  width: 84px;
}

.home-category-card__icon-img {
  height: 84px;
  object-fit: contain;
  transition: opacity .18s ease;
  width: 84px;
}

.home-category-card__icon-img--active {
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.home-category-card:hover .home-category-card__icon-img--default,
.home-category-card.is-active .home-category-card__icon-img--default {
  opacity: 0;
}

.home-category-card:hover .home-category-card__icon-img--active,
.home-category-card.is-active .home-category-card__icon-img--active {
  opacity: 1;
}

.home-category-card strong {
  font-size: 14px;
  line-height: 1.25;
}

.home-category-card__count {
  color: var(--rz-muted);
  font-size: 12px;
  margin-top: 5px;
}

.home-category-cta {
  align-self: center;
  grid-column: span 2;
  justify-self: center;
  max-width: 430px;
  padding: 18px 26px;
  text-align: center;
}

.home-category-cta__title {
  color: var(--rz-green);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.home-value-grid,
.home-contact-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}

.home-value-card,
.home-contact-card {
  background: #fff;
  border-radius: 8px;
  padding: 32px;
}

.home-value-card img,
.home-contact-card img {
  height: 42px;
  margin-bottom: 18px;
  width: 42px;
}

.home-value-card h3,
.home-contact-card h3 {
  color: var(--rz-dark);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px;
}

.home-value-card p,
.home-contact-card p {
  color: var(--rz-muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.home-contact-card a,
.home-contact-card span {
  color: var(--rz-dark);
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  margin-top: 16px;
}

.home-delivery {
  align-items: center;
  display: grid;
  gap: 70px;
  grid-template-columns: 1fr 1fr;
}

.home-delivery__image {
  border-radius: 8px;
  height: 430px;
  overflow: hidden;
}

.home-products {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(4, 1fr);
}

.home-blog-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(3, 1fr);
}

.home-blog-card {
  background: #fff;
  border: 1px solid var(--rz-border);
  border-radius: 8px;
  overflow: hidden;
}

.home-blog-card img {
  aspect-ratio: 1.55;
  display: block;
  object-fit: cover;
  width: 100%;
}

.home-blog-card__body {
  padding: 20px;
}

.home-blog-card__meta {
  color: var(--rz-green);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 8px;
}

.home-blog-card h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 12px;
}

.home-blog-card h3 a {
  color: var(--rz-dark);
}

.home-blog-card p {
  color: var(--rz-muted);
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 14px;
}

.home-blog-card__link {
  color: var(--rz-green);
  font-size: 13px;
  font-weight: 700;
}

.home-faq {
  align-items: start;
  display: grid;
  gap: 52px;
  grid-template-columns: 1fr .85fr;
}

.home-faq__accordion {
  display: grid;
  gap: 10px;
}

.home-faq__item {
  border: 1px solid var(--rz-border);
  border-radius: 4px;
  overflow: hidden;
}

.home-faq__question {
  align-items: center;
  background: #fff;
  border: 0;
  color: var(--rz-dark);
  display: flex;
  font-size: 15px;
  font-weight: 700;
  justify-content: space-between;
  padding: 16px 18px;
  text-align: left;
  width: 100%;
}

.home-faq__answer {
  color: var(--rz-muted);
  display: none;
  font-size: 14px;
  line-height: 1.7;
  padding: 0 18px 18px;
}

.home-faq__item.is-open .home-faq__answer {
  display: block;
}

.home-faq__image img {
  display: block;
  max-width: 100%;
}

.home-faq__image {
  align-self: start;
  display: flex;
  justify-content: center;
  position: sticky;
  top: 150px;
}

.home-empty {
  border: 1px solid var(--rz-border);
  color: var(--rz-muted);
  padding: 32px;
  text-align: center;
}

.storefront-page {
  background: #fff;
  color: var(--rz-dark);
}

.storefront-page__hero {
  padding: 56px 0 34px;
}

.storefront-page__section {
  padding: 54px 0;
}

.storefront-page__section--center {
  padding-top: 66px;
}

.storefront-breadcrumb {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.storefront-breadcrumb a {
  color: #222;
  font-size: 18px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.storefront-breadcrumb span {
  color: #d8c9c9;
  font-size: 18px;
  font-weight: 700;
}

.storefront-breadcrumb strong {
  color: var(--rz-green);
  font-size: 18px;
  font-weight: 700;
}

.storefront-page__title {
  color: #050505;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 20px;
}

.storefront-page__lead {
  color: var(--rz-dark);
  font-size: 19px;
  line-height: 1.7;
  margin: 0 0 34px;
  max-width: 760px;
}

.categories-index-hero__grid {
  align-items: end;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 1fr) 420px;
}

.categories-index-search {
  display: grid;
  gap: 10px;
}

.categories-index-search label {
  color: var(--rz-dark);
  font-size: 14px;
  font-weight: 700;
}

.categories-index-search > div {
  align-items: center;
  background: #fff;
  border: 1px solid var(--rz-border);
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(16, 39, 38, .08);
  display: flex;
  min-height: 58px;
  overflow: hidden;
}

.categories-index-search input {
  border: 0;
  color: var(--rz-dark);
  flex: 1;
  font-size: 15px;
  min-width: 0;
  outline: 0;
  padding: 0 22px;
}

.categories-index-search button {
  align-items: center;
  background: var(--rz-green);
  border: 0;
  color: #fff;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  gap: 8px;
  height: 58px;
  justify-content: center;
  padding: 0 22px;
}

.categories-index-section {
  padding-top: 58px;
}

.categories-index-list {
  align-items: start;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 36px;
}

.categories-index-root-list {
  border: 1px solid var(--rz-border);
  border-radius: 0;
  display: grid;
  margin: 0;
  overflow: hidden;
  width: 100%;
}

.categories-index-root-list__title {
  align-items: center;
  background: var(--rz-soft);
  color: var(--rz-dark);
  display: flex;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  min-height: 52px;
  padding: 14px 18px;
  text-decoration: none !important;
  text-transform: uppercase;
}

.categories-index-root-list__title:hover {
  color: var(--rz-green);
}

.categories-index-root-list__title strong {
  display: block;
}

.categories-index-root-list__children {
  display: grid;
  gap: 0;
}

.categories-index-root-list__group {
  display: grid;
}

.categories-index-root-list__group-title {
  color: var(--rz-dark);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
  padding: 16px 18px 9px;
  text-decoration: none !important;
}

.categories-index-root-list__group-title span,
.categories-index-root-list__group a:not(.categories-index-root-list__group-title) span {
  color: inherit;
  font-weight: inherit;
}

.categories-index-root-list__group a:not(.categories-index-root-list__group-title) {
  color: var(--rz-muted);
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  padding: 7px 18px;
  text-decoration: none !important;
}

.categories-index-root-list__group a:hover {
  color: var(--rz-green);
}

.categories-index-search-title {
  margin-bottom: 32px;
}

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

.categories-index-section--tree {
  background: #fff;
  padding-top: 28px;
}

.categories-index-tree {
  display: grid;
  gap: 24px;
  margin-top: 38px;
}

.categories-index-root {
  border: 1px solid var(--rz-border);
  border-radius: 8px;
  padding: 28px;
}

.categories-index-root__head {
  align-items: center;
  border-bottom: 1px solid var(--rz-border);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 18px;
}

.categories-index-root__head h3 {
  color: var(--rz-dark);
  font-size: 24px;
  font-weight: 800;
  margin: 0;
}

.categories-index-root__head a {
  color: var(--rz-green);
  font-size: 14px;
  font-weight: 700;
}

.categories-index-children {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.categories-index-group {
  min-width: 0;
}

.categories-index-card {
  align-items: center;
  background: #fff;
  border: 1px solid var(--rz-border);
  border-radius: 8px;
  color: var(--rz-dark);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  min-height: 86px;
  padding: 18px 20px;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.categories-index-card:hover {
  border-color: var(--rz-green);
  box-shadow: 0 12px 30px rgba(16, 39, 38, .08);
  color: var(--rz-dark);
  transform: translateY(-2px);
}

.categories-index-card strong {
  color: var(--rz-dark);
  display: block;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
}

.categories-index-card small {
  color: var(--rz-muted);
  display: block;
  font-size: 13px;
  margin-top: 6px;
}

.categories-index-card i {
  align-items: center;
  background: var(--rz-soft);
  border-radius: 50%;
  color: var(--rz-green);
  display: flex;
  flex: 0 0 auto;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.categories-index-card--parent {
  margin-bottom: 14px;
}

.categories-index-group__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-left: 4px;
}

.categories-index-group__links a {
  background: var(--rz-soft);
  border-radius: 999px;
  color: var(--rz-dark);
  font-size: 13px;
  padding: 8px 12px;
}

.categories-index-group__links a:hover {
  background: var(--rz-green);
  color: #fff;
}

.delivery-hero {
  align-items: stretch;
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .88fr);
}

.delivery-hero__main {
  display: flex;
  flex-direction: column;
}

.delivery-hero__image,
.delivery-process__image,
.delivery-note__image,
.about-values__image {
  border-radius: 8px;
  overflow: hidden;
}

.delivery-hero__image {
  aspect-ratio: 1 / .72;
  margin-top: 8px;
}

.delivery-hero__image img,
.delivery-process__image img,
.delivery-note__image img,
.about-values__image img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  width: 100%;
}

.delivery-facts {
  align-self: end;
  display: grid;
  gap: 18px;
}

.delivery-fact {
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--rz-border);
  border-radius: 8px;
  display: grid;
  gap: 16px;
  grid-template-columns: 46px minmax(0, 1fr);
  padding: 20px;
}

.delivery-fact img {
  height: 36px;
  object-fit: contain;
  width: 36px;
}

.delivery-fact h2,
.delivery-process h2,
.delivery-note h2,
.delivery-contact h2,
.about-value h2 {
  color: var(--rz-dark);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 8px;
}

.delivery-fact p,
.delivery-process p,
.delivery-note p,
.delivery-contact p,
.about-value p {
  color: var(--rz-muted);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

.delivery-process,
.delivery-note,
.about-values {
  align-items: center;
  display: grid;
  gap: 72px;
  grid-template-columns: 1fr 1fr;
}

.delivery-process__copy {
  display: grid;
  gap: 30px;
}

.delivery-process__image,
.delivery-note__image,
.about-values__image {
  aspect-ratio: 1 / .82;
}

.delivery-note__content {
  display: grid;
  gap: 34px;
}

.delivery-contact__grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
  margin-top: 22px;
}

.delivery-contact__grid a {
  background: #fff;
  border: 1px solid var(--rz-border);
  border-radius: 8px;
  color: var(--rz-dark);
  display: block;
  padding: 18px;
}

.delivery-contact__grid img {
  height: 32px;
  margin-bottom: 10px;
  width: 32px;
}

.delivery-contact__grid span {
  color: var(--rz-muted);
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
}

.delivery-contact__grid strong {
  color: var(--rz-dark);
  display: block;
  font-size: 14px;
  line-height: 1.35;
}

.about-intro {
  padding-bottom: 22px;
}

.about-story {
  align-items: center;
  display: grid;
  gap: 62px;
  grid-template-columns: .95fr 1.05fr;
}

.about-story__title {
  color: var(--rz-dark);
  font-size: 54px;
  font-weight: 700;
  line-height: 1.08;
  margin: 0 0 22px;
}

.about-story__highlight {
  border-left: 4px solid var(--rz-green);
  color: var(--rz-dark);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.6;
  margin: 0 0 20px;
  padding-left: 22px;
}

.about-values__list {
  display: grid;
  gap: 24px;
}

.about-value {
  align-items: flex-start;
  display: grid;
  gap: 18px;
  grid-template-columns: 46px minmax(0, 1fr);
}

.about-value img {
  height: 40px;
  object-fit: contain;
  width: 40px;
}

.storefront-benefits {
  background: linear-gradient(180deg, #fff 0%, #fff 50%, var(--rz-cream) 50%, var(--rz-cream) 100%);
  padding: 0 0 26px;
  position: relative;
  z-index: 2;
}

.storefront-benefits__inner {
  background: #fff;
  border: 1px solid var(--rz-border);
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(16, 39, 38, .07);
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  max-width: var(--rz-container);
  padding: 20px 24px;
}

.storefront-benefits__item {
  align-items: flex-start;
  display: grid;
  gap: 12px;
  grid-template-columns: 34px minmax(0, 1fr);
}

.storefront-benefits__item img {
  height: 30px;
  object-fit: contain;
  width: 30px;
}

.storefront-benefits__item h3 {
  color: var(--rz-dark);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 5px;
}

.storefront-benefits__item p {
  color: var(--rz-muted);
  font-size: 12px;
  line-height: 1.45;
  margin: 0;
}

.home .storefront-benefits + .ltn__footer-area .footer-top-area,
.storefront-page .storefront-benefits + .ltn__footer-area .footer-top-area {
  padding-top: 50px;
}

.catalog-page .catalog-product-card,
.home .catalog-product-card {
  border: 1px solid var(--rz-border);
  box-shadow: none;
  margin-bottom: 0;
}

.catalog-product-card__image {
  aspect-ratio: 1 / 1;
  background: #fafafa;
  display: block;
  overflow: hidden;
  position: relative;
}

.catalog-product-card__image img:first-child {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.ltn__product-item-3 .catalog-product-card__body {
  padding: 18px 20px 22px;
}

.ltn__product-item-3 .catalog-product-card__title {
  color: var(--rz-dark);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.22;
  margin: 0 0 14px;
  min-height: 44px;
}

.catalog-product-card__title a {
  color: var(--rz-dark);
}

.ltn__product-item-3 .catalog-product-card__price del {
  color: #7a8282;
  display: block;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 6px;
}

.ltn__product-item-3 .catalog-product-card__price {
  color: var(--rz-green);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 14px;
}

.catalog-product-card__stock {
  align-items: center;
  color: var(--rz-dark);
  display: flex;
  font-size: 16px;
  font-weight: 700;
  gap: 8px;
  justify-content: center;
  margin-bottom: 18px;
}

.catalog-product-card__stock span {
  border-radius: 50%;
  display: block;
  height: 14px;
  width: 14px;
}

.catalog-product-card__stock.is-available span {
  background: var(--rz-green);
}

.catalog-product-card__stock.is-unavailable span {
  background: #c90000;
}

.catalog-product-card__form {
  align-items: stretch;
  display: flex;
  gap: 10px;
  justify-content: center;
  min-width: 0;
}

.catalog-product-card__quantity {
  align-items: stretch;
  border: 2px solid #e5e5e5;
  box-shadow: 0 2px 10px rgba(16, 39, 38, .04);
  display: flex;
  flex: 0 0 118px;
  height: 44px;
  margin: 0;
  overflow: hidden;
  width: 118px;
}

.catalog-product-card__quantity,
.catalog-product-card__quantity .dec.qtybutton,
.catalog-product-card__quantity .inc.qtybutton {
  background: #fff;
  height: 44px;
  line-height: 44px;
}

.catalog-product-card__quantity .dec.qtybutton,
.catalog-product-card__quantity .inc.qtybutton {
  align-items: center;
  border: 0;
  color: var(--rz-dark);
  cursor: pointer;
  display: flex;
  flex: 0 0 33%;
  float: none;
  font-size: 22px;
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  position: static;
  width: auto;
}

.catalog-product-card__quantity .dec.qtybutton {
  border-right: 2px solid #e5e5e5;
}

.catalog-product-card__quantity .inc.qtybutton {
  border-left: 2px solid #e5e5e5;
}

.catalog-product-card__quantity input.cart-plus-minus-box {
  border: 0;
  color: var(--rz-dark);
  flex: 1 1 34%;
  font-size: 15px;
  font-weight: 700;
  height: 44px;
  line-height: 44px;
  padding: 0;
  text-align: center;
  width: 34%;
}

.catalog-product-card__quantity.is-disabled {
  opacity: .45;
  pointer-events: none;
}

.catalog-product-card__cta {
  align-items: center;
  background: var(--rz-green);
  border-radius: 6px;
  color: #fff;
  display: inline-flex;
  flex: 1 1 auto;
  font-size: 15px;
  font-weight: 900;
  gap: 8px;
  height: 44px;
  justify-content: center;
  margin: 0;
  min-width: 104px;
  padding: 0 14px;
}

.catalog-product-card__cta:disabled {
  background: #d2d2d2;
  color: #fff;
}

@media (max-width: 1280px) {
  .storefront-header__top,
  .storefront-root-nav__inner,
  .home__container,
  .storefront-benefits__inner {
    max-width: calc(100% - 64px);
  }

  .storefront-root-nav__inner {
    justify-content: flex-start;
  }
}

@media (max-width: 991px) {
  .storefront-header__top {
    display: grid;
    gap: 14px;
    grid-template-columns: minmax(150px, 1fr) 58px 108px 54px;
    justify-content: initial;
    max-width: none;
    padding: 28px 34px 18px;
  }

  .storefront-header__logo {
    flex: 0 1 auto;
    margin-right: 0;
  }

  .storefront-header__logo img {
    height: 58px;
  }

  .storefront-header__search--desktop,
  .storefront-header__delivery,
  .storefront-header__phone span {
    display: none;
  }

  .storefront-header__phone {
    border-radius: 50%;
    height: 58px;
    padding: 0;
    width: 58px;
  }

  .storefront-header__cart {
    font-size: 0;
    flex: 0 0 108px;
    gap: 12px;
    height: 58px;
    min-height: 58px;
    padding: 0;
    width: 108px;
  }

  .storefront-header__cart img {
    height: 26px;
    width: 26px;
  }

  .storefront-header__cart span {
    font-size: 0;
  }

  .storefront-header__cart span::before {
    content: '';
  }

  .storefront-header__cart span {
    color: transparent;
    position: relative;
  }

  .storefront-header__cart span::after {
    color: #fff;
    content: attr(data-mobile-count);
    font-size: 26px;
  }

  .storefront-header__menu,
  .storefront-header__search--mobile {
    display: flex;
  }

  .storefront-header__menu {
    flex: 0 0 54px;
    width: 54px;
  }

  .storefront-root-nav {
    display: none;
  }

  .storefront-nav-backdrop {
    background: rgba(0, 0, 0, .45);
    display: block;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    transition: opacity .2s ease;
    z-index: 1199;
  }

  .storefront-nav-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .storefront-mobile-categories.ltn__utilize {
    background: #fff;
    bottom: 0;
    box-shadow: -14px 0 40px rgba(16, 39, 38, .16);
    display: block;
    left: auto;
    max-width: 100vw;
    overflow-y: auto;
    padding: 0;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(100%);
    transition: transform .22s ease;
    width: 100vw;
    z-index: 1200;
  }

  .storefront-mobile-categories.ltn__utilize.is-open,
  .storefront-mobile-categories.ltn__utilize.ltn__utilize-open {
    transform: translateX(0);
  }

  .storefront-mobile-categories .ltn__utilize-menu-inner {
    height: auto;
    min-height: 100%;
    overflow: visible !important;
    padding-right: 0;
  }

  .storefront-mobile-categories .ltn__utilize-menu-head {
    align-items: center;
    border-bottom: 1px solid var(--rz-border);
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) 54px;
    margin-bottom: 0;
    min-height: 76px;
    padding: 0 34px;
    position: sticky;
    top: 0;
    z-index: 2;
    background: #fff;
  }

  .storefront-mobile-categories__head strong {
    color: #303030;
    font-size: 17px;
    font-weight: 800;
    text-align: center;
    white-space: nowrap;
  }

  .storefront-mobile-categories__back {
    align-items: center;
    background: transparent;
    border: 0;
    color: #111;
    display: none;
    font-size: 32px;
    height: 44px;
    justify-content: center;
    padding: 0;
    width: 44px;
  }

  .storefront-mobile-categories__back.is-active {
    display: flex;
  }

  .storefront-mobile-categories .ltn__utilize-close {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 0;
    color: #111;
    display: flex;
    font-size: 30px;
    height: 54px;
    justify-content: center;
    line-height: 1;
    padding: 0;
    width: 54px;
    justify-self: end;
  }

  .storefront-mobile-categories__root,
  .storefront-mobile-categories__detail {
    display: none;
  }

  .storefront-mobile-categories__root.is-active,
  .storefront-mobile-categories__detail.is-active {
    display: block;
  }

  .storefront-mobile-categories__all {
    border-bottom: 1px solid var(--rz-border);
    color: #444;
    display: grid;
    gap: 8px;
    padding: 24px 24px 22px;
    text-decoration: none !important;
  }

  .storefront-mobile-categories__all strong {
    color: #444;
    font-size: 17px;
    font-weight: 800;
  }

  .storefront-mobile-categories__all span {
    color: #858585;
    font-size: 14px;
  }

  .storefront-mobile-categories__menu > ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .storefront-mobile-categories__menu > ul > li {
    border-bottom: 1px solid var(--rz-border);
    list-style: none !important;
  }

  .storefront-mobile-categories__root ul,
  .storefront-mobile-categories__root li {
    list-style: none !important;
    margin: 0;
    padding: 0;
  }

  .storefront-mobile-category {
    align-items: center;
    background: #fff;
    border: 0;
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr 34px;
    padding: 20px 24px;
    text-align: left;
    text-decoration: none !important;
    width: 100%;
  }

  .storefront-mobile-category__main {
    align-items: center;
    color: var(--rz-dark);
    display: flex;
    gap: 12px;
    min-width: 0;
  }

  .storefront-mobile-category__icon {
    align-items: center;
    background: var(--rz-soft);
    border-radius: 50%;
    display: flex;
    flex: 0 0 48px;
    height: 48px;
    justify-content: center;
    width: 48px;
  }

  .storefront-mobile-category__icon img {
    height: 30px;
    width: 30px;
  }

  .storefront-mobile-category strong {
    color: #4b4b4b;
    display: block;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.2;
  }

  .storefront-mobile-category small {
    color: var(--rz-muted);
    display: block;
    font-size: 14px;
    margin-top: 3px;
  }

  .storefront-mobile-category > i {
    color: #111;
    font-size: 20px;
  }

  .storefront-mobile-categories__detail-main {
    align-items: center;
    border-bottom: 1px solid var(--rz-border);
    color: #444;
    display: flex;
    gap: 14px;
    padding: 20px 24px;
    text-decoration: none !important;
  }

  .storefront-mobile-categories__detail-main strong {
    color: #444;
    display: block;
    font-size: 17px;
    font-weight: 800;
  }

  .storefront-mobile-categories__detail-main small {
    color: #858585;
    display: block;
    font-size: 14px;
    margin-top: 4px;
  }

  .storefront-mobile-categories__section-title {
    background: var(--rz-soft);
    color: #444;
    display: block;
    font-size: 17px;
    font-weight: 800;
    padding: 22px 24px;
    text-decoration: none !important;
  }

  .storefront-mobile-categories__link {
    border-bottom: 1px solid var(--rz-border);
    color: #555;
    display: block;
    font-size: 16px;
    font-weight: 600;
    padding: 20px 24px;
    text-decoration: none !important;
  }

  .home__container {
    max-width: none;
    padding-left: 34px;
    padding-right: 34px;
  }

  .categories-index-hero__grid {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .categories-index-results,
  .categories-index-children {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .categories-index-list {
    grid-template-columns: 1fr;
  }

  .home-hero__grid,
  .home-about,
  .home-delivery,
  .home-faq,
  .delivery-hero,
  .delivery-process,
  .delivery-note,
  .about-story,
  .about-values {
    grid-template-columns: 1fr;
  }

  .delivery-facts {
    align-self: stretch;
    grid-template-columns: repeat(2, 1fr);
  }

  .storefront-benefits__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-feature-strip,
  .home-category-grid,
  .home-value-grid,
  .home-contact-grid,
  .home-products,
  .home-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-category-cta {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  body.home .body-wrapper,
  body.storefront-page .body-wrapper {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .storefront-header__top {
    display: grid;
    gap: 10px;
    grid-template-columns: minmax(110px, 1fr) 48px 78px 40px;
    justify-content: initial;
    padding: 24px 30px 18px;
  }

  .storefront-header__logo {
    flex: 0 1 auto;
    margin-right: 0;
  }

  .storefront-header__logo img {
    height: 52px;
  }

  .storefront-header__phone {
    height: 48px;
    width: 48px;
  }

  .storefront-header__cart {
    flex: 0 0 78px;
    height: 48px;
    min-height: 48px;
    padding: 0;
    width: 78px;
  }

  .storefront-header__cart span {
    font-size: 24px;
  }

  .storefront-header__menu {
    flex: 0 0 40px;
    width: 44px;
  }

  .storefront-header__search--mobile {
    margin: 18px 30px 28px;
  }

  .storefront-header__search input {
    font-size: 24px;
    height: 68px;
    min-width: 0;
  }

  .storefront-header__search button {
    font-size: 27px;
    height: 68px;
    width: 68px;
  }

  .home__container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .home__section {
    padding: 54px 0;
  }

  .storefront-page__hero {
    padding: 38px 0 26px;
  }

  .storefront-page__section {
    padding: 42px 0;
  }

  .storefront-breadcrumb {
    gap: 10px;
    margin-bottom: 26px;
  }

  .storefront-breadcrumb a,
  .storefront-breadcrumb span,
  .storefront-breadcrumb strong {
    font-size: 22px;
  }

  .storefront-page__title {
    font-size: 38px;
  }

  .storefront-page__lead {
    border-left: 4px solid var(--rz-green);
    font-size: 22px;
    line-height: 1.55;
    padding-left: 22px;
  }

  .categories-index-search > div {
    border-radius: 28px;
    min-height: 56px;
  }

  .categories-index-search button {
    height: 56px;
    padding: 0 18px;
  }

  .categories-index-search button span {
    display: none;
  }

  .categories-index-results,
  .categories-index-children {
    grid-template-columns: 1fr;
  }

  .categories-index-root {
    padding: 20px;
  }

  .categories-index-root__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .categories-index-card {
    min-height: 78px;
    padding: 16px;
  }

  .delivery-hero {
    gap: 28px;
  }

  .delivery-hero__image {
    aspect-ratio: 1 / .82;
    margin: 0 0 28px;
    order: -1;
  }

  .delivery-facts,
  .delivery-contact__grid {
    grid-template-columns: 1fr;
  }

  .delivery-fact {
    padding: 18px;
  }

  .delivery-process,
  .delivery-note,
  .about-values {
    gap: 30px;
  }

  .delivery-process__image,
  .delivery-note__image,
  .about-values__image {
    aspect-ratio: 1 / .78;
  }

  .delivery-process__image {
    order: -1;
  }

  .about-story {
    gap: 34px;
  }

  .about-story__title {
    font-size: 40px;
  }

  .about-story__highlight {
    font-size: 22px;
  }

  .about-value {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .storefront-benefits {
    padding: 0 0 24px;
  }

  .storefront-benefits__inner {
    gap: 14px;
    grid-template-columns: 1fr;
    max-width: none;
    padding: 18px 30px;
  }

  .home .storefront-benefits + .ltn__footer-area .footer-top-area,
  .storefront-page .storefront-benefits + .ltn__footer-area .footer-top-area {
    padding-top: 44px;
  }

  .home__title {
    font-size: 36px;
  }

  .home__text {
    font-size: 22px;
    line-height: 1.55;
  }

  .home-hero {
    padding-top: 24px;
  }

  .home-hero__grid,
  .home-hero__main,
  .home-hero__promo {
    max-width: 100%;
    width: 100%;
  }

  .home-hero__main {
    aspect-ratio: 4 / 5;
    min-height: 0;
  }

  .home-hero__side {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    height: auto;
  }

  .home-hero__promo {
    aspect-ratio: 1.75 / 1;
    min-height: 0;
  }

  .home-feature-strip {
    column-gap: 10px;
    grid-template-columns: 1fr 1fr;
    padding: 16px;
    row-gap: 18px;
  }

  .home-feature-strip__item {
    gap: 10px;
  }

  .home-feature-strip__item img {
    height: 28px;
    width: 36px;
  }

  .home-feature-strip__item strong {
    font-size: 12px;
  }

  .home-feature-strip__item span {
    font-size: 11px;
  }

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

  .home-about__image {
    height: 240px;
  }

  .home-category-grid {
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-category-card {
    min-height: 138px;
    padding: 18px 12px;
  }

  .home-category-cta {
    grid-column: span 2;
  }

  .home-value-grid,
  .home-contact-grid,
  .home-blog-grid {
    grid-template-columns: 1fr;
  }

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

  .home-delivery__image {
    height: 330px;
    order: -1;
  }

  .catalog-product-card__form {
    display: grid;
    grid-template-columns: 1fr;
  }

  .catalog-product-card__quantity {
    flex-basis: auto;
    height: 50px;
    width: 100%;
  }

  .catalog-product-card__quantity .dec.qtybutton,
  .catalog-product-card__quantity .inc.qtybutton,
  .catalog-product-card__quantity input.cart-plus-minus-box {
    height: 50px;
  }

  .catalog-product-card__quantity .dec.qtybutton,
  .catalog-product-card__quantity .inc.qtybutton {
    flex-basis: 44px;
    width: 44px;
  }

  .catalog-product-card__cta {
    height: 52px;
    width: 100%;
  }

  .ltn__product-item-3 .catalog-product-card__body {
    padding: 16px 18px 20px;
  }

  .ltn__product-item-3 .catalog-product-card__title {
    font-size: 20px;
    min-height: 56px;
  }

  .ltn__product-item-3 .catalog-product-card__price {
    font-size: 24px;
  }
}

@media (max-width: 520px) {
  .storefront-header__top {
    display: grid;
    gap: 8px;
    grid-template-columns: minmax(90px, 1fr) 42px 68px 36px;
    justify-content: initial;
    padding: 22px 18px 14px;
  }

  .storefront-header__logo {
    flex: 0 1 auto;
    margin-right: 0;
  }

  .storefront-header__logo img {
    height: 44px;
    max-width: 166px;
  }

  .storefront-header__phone,
  .storefront-header__cart {
    height: 42px;
    min-height: 42px;
  }

  .storefront-header__phone {
    width: 42px;
  }

  .storefront-header__phone img {
    height: 17px;
    width: 17px;
  }

  .storefront-header__cart {
    gap: 7px;
    flex: 0 0 68px;
    padding: 0;
    width: 68px;
  }

  .storefront-header__cart img {
    height: 22px;
    width: 22px;
  }

  .storefront-header__cart span {
    font-size: 0;
  }

  .storefront-header__cart span::after {
    font-size: 20px;
  }

  .storefront-header__menu {
    flex: 0 0 36px;
    width: 36px;
  }

  .storefront-header__menu span {
    height: 4px;
    width: 30px;
  }

  .storefront-mobile-categories .ltn__utilize-menu-head {
    grid-template-columns: 36px minmax(0, 1fr) 36px;
    padding: 0 18px;
  }

  .storefront-mobile-categories .ltn__utilize-close {
    height: 36px;
    width: 36px;
  }

  .storefront-header__search--mobile {
    margin: 16px 24px 24px;
  }

  .storefront-header__search input {
    font-size: 20px;
  }

  .storefront-search-panel {
    left: -4px;
    max-height: min(420px, calc(100vh - 190px));
    right: -4px;
  }

  .categories-index-list {
    grid-template-columns: 1fr;
  }

  .home__container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .home-hero__overlay {
    padding: 0 24px 28px;
  }

  .home-hero__overlay h1 {
    font-size: 28px;
  }

  .home-feature-strip,
  .home-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-feature-strip {
    padding: 14px 10px;
  }

  .home-feature-strip__item {
    gap: 8px;
    justify-content: flex-start;
  }

  .home-feature-strip__item img {
    height: 24px;
    width: 30px;
  }

  .home-feature-strip__item strong {
    font-size: 11px;
  }

  .home-feature-strip__item span {
    font-size: 10px;
  }
}

.storefront-cart-open {
  overflow: hidden;
}

.storefront-nav-open {
  overflow: hidden;
}

.storefront-search-open {
  overflow: hidden;
}

.storefront-cart-backdrop {
  background-color: rgba(0, 0, 0, .5);
  display: block;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity .2s ease;
  z-index: 9999;
}

.storefront-cart-backdrop.is-open {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.ltn__utilize.storefront-cart-drawer {
  background: #fff;
  bottom: 0;
  height: 100vh;
  left: auto;
  overflow: hidden;
  padding: 0;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(100%);
  transition: transform .22s ease;
  width: 390px;
  z-index: 99999;
}

.ltn__utilize.storefront-cart-drawer.is-open,
.ltn__utilize.storefront-cart-drawer.ltn__utilize-open {
  transform: translateX(0);
}

.storefront-cart-drawer .ltn__utilize-menu-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
}

.storefront-cart-drawer .ltn__utilize-menu-head {
  border-bottom: 1px solid var(--rz-border);
  flex: 0 0 auto;
  margin-bottom: 0;
  padding: 18px 22px;
}

.storefront-cart-drawer .ltn__utilize-menu-title {
  color: var(--rz-dark);
  font-size: 20px;
  font-weight: 700;
}

.storefront-cart-drawer .ltn__utilize-close {
  align-items: center;
  background: var(--section-bg-1);
  border-radius: 50%;
  color: var(--rz-dark);
  display: flex;
  font-size: 24px;
  height: 34px;
  justify-content: center;
  line-height: 1;
  padding: 0;
  position: static;
  width: 34px;
}

.storefront-cart-content--drawer {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
  padding: 14px 16px 18px;
}

.mini-cart-summary {
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #efefef;
  border-radius: 0;
  display: grid;
  gap: 9px;
  grid-template-columns: 42px 1fr auto;
  margin: -2px 0 16px;
  padding: 0 0 12px;
}

.mini-cart-summary img {
  border: 1px solid var(--rz-border);
  border-radius: 8px;
  height: 42px;
  object-fit: cover;
  width: 42px;
}

.mini-cart-summary strong,
.mini-cart-summary b {
  color: var(--rz-dark);
  font-weight: 700;
}

.mini-cart-summary span {
  display: grid;
}

.mini-cart-summary small {
  color: var(--rz-muted);
  font-size: 12px;
}

.mini-cart-summary b {
  align-self: center;
  font-size: 14px;
  white-space: nowrap;
}

.storefront-cart-drawer .mini-cart-product-area {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding: 8px 8px 0 0;
}

.storefront-mini-cart-item.mini-cart-item {
  border-bottom: 1px solid #efefef;
  display: grid;
  gap: 14px;
  grid-template-columns: 118px 1fr;
  margin-bottom: 16px;
  min-height: 132px;
  padding: 0 0 16px;
}

.storefront-mini-cart-item .mini-cart-img {
  float: none;
  width: 118px;
}

.storefront-mini-cart-item .mini-cart-img img {
  border: 1px solid var(--rz-border);
  border-radius: 9px;
  height: 118px;
  object-fit: cover;
  width: 118px;
}

.storefront-mini-cart-item .mini-cart-img b {
  align-items: center;
  background: var(--rz-dark);
  border-radius: 8px;
  color: #fff;
  display: flex;
  font-size: 12px;
  height: 28px;
  justify-content: center;
  position: absolute;
  right: -8px;
  top: -8px;
  width: 28px;
  z-index: 2;
}

.storefront-mini-cart-item .mini-cart-info {
  padding-left: 0;
}

.storefront-mini-cart-item .mini-cart-info h6 {
  font-size: 14px;
  line-height: 1.25;
  margin-bottom: 8px;
}

.storefront-mini-cart-item .mini-cart-info h6 a,
.storefront-mini-cart-item .mini-cart-quantity {
  color: var(--rz-dark);
}

.storefront-mini-cart-item .mini-cart-quantity {
  display: block;
  font-size: 13px;
  line-height: 1.4;
}

.storefront-mini-cart-item .mini-cart-item-delete {
  align-items: center;
  background: #fff;
  border: 1px solid #efefef;
  border-radius: 50%;
  color: var(--rz-dark);
  display: flex;
  height: 30px;
  justify-content: center;
  line-height: 1;
  position: static;
  width: 30px;
}

.storefront-mini-cart-item .mini-cart-item-delete img {
  height: 15px;
  width: 15px;
}

.storefront-cart-stock {
  align-items: center;
  color: var(--rz-muted);
  display: flex;
  font-size: 12px;
  gap: 6px;
  margin-top: 8px;
}

.storefront-cart-stock i {
  background: var(--rz-green);
  border-radius: 50%;
  display: inline-block;
  flex: 0 0 auto;
  height: 7px;
  width: 7px;
}

.storefront-cart-stock.is-empty i {
  background: #c90000;
}

.storefront-cart-quantity {
  display: inline-flex;
  flex: 0 0 118px;
  width: 118px;
}

.storefront-cart-quantity button,
.storefront-cart-quantity input {
  background: #fff;
  color: var(--rz-dark);
  font-size: 15px;
  font-weight: 700;
  height: 44px;
  line-height: 1;
  margin: 0;
  min-height: 0;
  padding: 0;
  text-align: center;
}

.storefront-cart-quantity button {
  align-items: center;
  display: flex;
  justify-content: center;
}

.storefront-cart-item-actions {
  align-items: center;
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.storefront-cart-drawer .mini-cart-footer {
  background: #fff;
  border-top: 1px solid var(--rz-border);
  flex: 0 0 auto;
  margin-top: 12px;
  padding-top: 14px;
}

.storefront-cart-totals {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.storefront-cart-totals > div {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.storefront-cart-totals span {
  color: var(--rz-dark);
  font-size: 13px;
}

.storefront-cart-totals strong {
  color: var(--rz-dark);
  font-size: 13px;
  font-weight: 700;
}

.storefront-cart-totals__payable {
  padding-top: 9px;
}

.storefront-cart-totals__payable span,
.storefront-cart-totals__payable strong {
  font-size: 16px;
  font-weight: 700;
}

.storefront-cart-actions.btn-wrapper {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr;
  margin-top: 12px;
}

.storefront-cart-actions.btn-wrapper .btn {
  margin: 0;
  min-height: 42px;
  padding: 10px 12px;
  width: 100%;
}

.storefront-cart-actions__checkout.is-disabled {
  background: #d7d7d7;
  border-color: #d7d7d7;
  color: #fff;
  pointer-events: none;
}

.storefront-cart-minimum {
  margin-top: 14px;
}

.storefront-cart-minimum__bar {
  background: var(--rz-border);
  border-radius: 999px;
  height: 6px;
  overflow: hidden;
}

.storefront-cart-minimum__bar span {
  background: var(--rz-green);
  display: block;
  height: 100%;
}

.storefront-cart-minimum p {
  color: var(--rz-dark);
  font-size: 13px;
  font-weight: 700;
  margin: 9px 0 3px;
}

.storefront-cart-minimum small {
  color: var(--rz-muted);
  display: block;
  font-size: 12px;
}

.storefront-cart-empty {
  align-items: center;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
}

.storefront-cart-empty h2 {
  color: var(--rz-dark);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.storefront-cart-empty p {
  color: var(--rz-muted);
  margin-bottom: 22px;
  max-width: 300px;
}

.checkout-page {
  background: #fff;
  color: var(--rz-dark);
}

.checkout-header {
  background: #fff;
  border-bottom: 1px solid var(--rz-border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.checkout-header__inner {
  align-items: center;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  margin: 0 auto;
  max-width: var(--rz-container);
  padding: 14px 24px;
}

.checkout-header__back,
.checkout-header__phone,
.checkout-header__cart {
  align-items: center;
  display: inline-flex;
  font-weight: 700;
}

.checkout-header__back {
  color: var(--rz-dark);
  gap: 10px;
}

.checkout-header__back span {
  align-items: center;
  background: var(--section-bg-1);
  border-radius: 50%;
  display: flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.checkout-header__logo img {
  display: block;
  height: 42px;
}

.checkout-header__actions {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}

.checkout-header__phone {
  background: var(--section-bg-1);
  border-radius: 999px;
  color: var(--rz-dark);
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
}

.checkout-header__phone img {
  height: 18px;
  width: 18px;
}

.checkout-header__cart {
  background: var(--rz-green);
  border-radius: 999px;
  color: #fff;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
}

.checkout-header__cart img {
  height: 22px;
  width: 22px;
}

.checkout-page__main {
  background: linear-gradient(90deg, #fff 0 58%, #f5f5f5 58% 100%);
  min-height: calc(100vh - 71px);
  padding: 24px 0 48px;
}

.checkout-page__container {
  max-width: var(--rz-container);
}

.checkout-layout.row {
  align-items: flex-start;
}

.checkout-form.ltn__checkout-inner {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0 48px 0 0;
}

.checkout-form .ltn__checkout-single-content {
  margin-bottom: 0;
  margin-top: 0;
}

.checkout-form .ltn__checkout-single-content + .ltn__checkout-single-content,
.checkout-form .checkout-form__section + .checkout-form__section {
  border-top: 0;
  margin-top: 17px;
  padding-top: 0;
}

.checkout-form .ltn__checkout-single-content h5 {
  margin-bottom: 0;
}

.checkout-form .ltn__checkout-single-content-info {
  border: 0;
  padding: 0;
}

.checkout-section-title {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 8px;
}

.checkout-section-title .title-2,
.checkout-section-title a {
  margin-bottom: 0;
}

.checkout-section-title a {
  font-size: 12px;
  font-weight: 700;
}

.checkout-form .title-2,
.checkout-summary .title-2 {
  color: var(--rz-dark);
  font-size: 16px;
  line-height: 1.25;
  margin-bottom: 8px;
}

.checkout-form .input-item input,
.checkout-form .input-item select,
.checkout-form .input-item textarea {
  border-color: #d8d8d8;
  border-radius: 5px;
  color: var(--rz-dark);
  font-size: 13px;
  height: 40px;
  line-height: 38px;
  margin-bottom: 0;
  min-height: 40px;
  padding: 0 12px;
  width: 100%;
}

.checkout-form .input-item select {
  appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
  background-image: linear-gradient(45deg, transparent 50%, var(--rz-dark) 50%), linear-gradient(135deg, var(--rz-dark) 50%, transparent 50%);
  background-position: calc(100% - 17px) 17px, calc(100% - 12px) 17px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
  display: block;
  padding-right: 34px;
}

.checkout-form .input-item input::placeholder,
.checkout-form .input-item textarea::placeholder {
  color: #767676;
  font-size: 13px;
}

.checkout-form .input-item {
  margin-bottom: 8px;
}

.checkout-form .input-item.ltn__custom-icon::before {
  display: none;
}

.checkout-form .input-item-textarea textarea {
  line-height: 1.45;
  min-height: 82px;
  padding-top: 10px;
}

.checkout-payment-card.card {
  border-color: var(--rz-dark);
  border-radius: 5px;
  padding: 0;
}

.checkout-payment-card .ltn__card-title::before {
  height: 18px;
  left: 14px;
  margin-top: 0;
  top: 50%;
  width: 18px;
}

.checkout-payment-card .ltn__card-title::after {
  background-color: var(--rz-dark);
  height: 10px;
  left: 18px;
  margin-top: 0;
  top: 50%;
  width: 10px;
}

.checkout-payment-card .ltn__card-title {
  font-size: 14px;
  line-height: 1.25;
  padding: 11px 14px 11px 40px;
}

.checkout-payment-card .card-body {
  box-shadow: none;
  margin-top: 0;
  padding: 0 14px 11px 40px;
}

.checkout-payment-card .card-body p {
  font-size: 12px;
  line-height: 1.4;
}

.checkout-payment-card .card-body::before {
  display: none;
}

.checkout-sidebar {
  background: #f5f5f5;
  min-height: calc(100vh - 105px);
  padding-left: 48px;
  position: sticky;
  top: 92px;
}

.checkout-summary.shoping-cart-total {
  background: transparent;
  border: 0;
  border-radius: 0;
  margin-top: 0;
  padding: 0;
}

.checkout-summary__product {
  align-items: center;
  display: flex;
  gap: 12px;
}

.checkout-summary__product-image {
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  flex: 0 0 64px;
  height: 64px;
  position: relative;
}

.checkout-summary__product-image img {
  border-radius: 6px;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.checkout-summary__product-image b {
  align-items: center;
  background: var(--rz-dark);
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-size: 12px;
  height: 24px;
  justify-content: center;
  position: absolute;
  right: -8px;
  top: -8px;
  width: 24px;
}

.checkout-summary__product small {
  color: var(--rz-muted);
  display: block;
  font-size: 13px;
  margin-top: 4px;
}

.checkout-summary__stock {
  align-items: center;
  display: flex !important;
  gap: 6px;
}

.checkout-summary__stock i {
  background: var(--rz-green);
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  width: 8px;
}

.checkout-summary__stock.is-empty i {
  background: #c90000;
}

.checkout-submit-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 0;
}

.checkout-submit-card > div {
  align-items: center;
  display: none;
  justify-content: space-between;
}

.checkout-submit-card span,
.checkout-submit-card p {
  color: var(--rz-muted);
}

.checkout-submit-card strong {
  color: var(--rz-green);
  font-size: 24px;
  font-weight: 700;
}

.checkout-submit-card .theme-btn-1 {
  border-radius: 5px;
  min-height: 42px;
  padding: 11px 16px;
  width: 100%;
}

.checkout-mobile-order {
  display: none;
}

@media (max-width: 991px) {
  .ltn__utilize.storefront-cart-drawer {
    width: min(430px, 100vw);
  }

  .checkout-header__inner {
    grid-template-columns: auto 1fr auto;
  }

  .checkout-header__back b,
  .checkout-header__phone span {
    display: none;
  }

  .checkout-header__logo {
    justify-self: center;
  }

  .checkout-header__logo img {
    height: 44px;
  }

  .checkout-sidebar {
    display: none;
  }

  .checkout-page__main {
    background: #fff;
  }

  .checkout-form.ltn__checkout-inner {
    padding: 0;
  }

  .checkout-mobile-order {
    background: #fff;
    border: 0;
    border-bottom: 1px solid var(--rz-border);
    border-radius: 0;
    display: block;
    margin: -28px -12px 24px;
    overflow: hidden;
  }

  .checkout-mobile-order > button {
    align-items: center;
    background: #fff;
    border: 0;
    color: var(--rz-dark);
    display: flex;
    font-size: 18px;
    font-weight: 700;
    justify-content: space-between;
    padding: 18px 20px;
    width: 100%;
  }

  .checkout-mobile-order__content {
    background: #f5f5f5;
    border-top: 1px solid var(--rz-border);
    display: none;
    padding: 20px;
  }

  .checkout-mobile-order.is-open .checkout-mobile-order__content {
    display: block;
  }
}

@media (max-width: 640px) {
  .storefront-cart-drawer .ltn__utilize-menu-head {
    padding: 18px 20px;
  }

  .storefront-cart-content--drawer {
    padding: 18px 20px 22px;
  }

  .storefront-cart-actions.btn-wrapper {
    grid-template-columns: 1fr;
  }

  .checkout-page__main {
    padding: 28px 0 56px;
  }

  .checkout-header__inner {
    padding: 16px 18px;
  }

  .checkout-header__cart,
  .checkout-header__phone,
  .checkout-header__back span {
    height: 42px;
    min-height: 42px;
  }

  .checkout-header__cart {
    padding: 0 16px;
  }

  .checkout-submit-card > div {
    display: flex;
  }
}

.storefront-product-detail {
  padding: 42px 0 70px;
}

.storefront-product-detail__top {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  justify-content: flex-start;
  margin-bottom: 30px;
}

.storefront-product-detail__top .storefront-breadcrumb {
  align-items: center;
  color: var(--rz-green);
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  font-size: 18px;
  font-weight: 700;
  gap: 10px;
  line-height: 1.2;
  margin-bottom: 0;
  min-width: 0;
}

.storefront-product-detail__top .storefront-breadcrumb a {
  color: var(--rz-dark);
  text-decoration: underline;
}

.storefront-product-detail__top .storefront-breadcrumb span {
  color: var(--rz-green);
}

.storefront-back-button {
  align-items: center;
  background: #f4f1e7;
  border-radius: 999px;
  color: var(--rz-dark);
  display: inline-flex;
  font-size: 17px;
  font-weight: 800;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
}

.storefront-back-button:hover {
  background: var(--rz-green);
  color: #fff;
}

.storefront-product-detail__main {
  display: grid;
  gap: 52px;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .8fr);
}

.storefront-product-gallery img {
  background: #fff;
}

.storefront-product-info {
  align-self: start;
}

.storefront-product-info h1 {
  color: var(--rz-dark);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 800;
  line-height: 1.05;
  margin: 0 0 18px;
}

.storefront-product-info del {
  color: var(--rz-muted);
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
}

.storefront-product-info .product-price {
  color: var(--rz-green);
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 18px;
}

.storefront-product-info .product-price span span {
  font-size: 45%;
}

.storefront-product-info .catalog-product-card__stock {
  justify-content: flex-start;
  margin: 16px 0 20px;
}

.storefront-product-cart ul {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0;
}

.storefront-product-cart li {
  margin: 0;
}

.storefront-product-cart .theme-btn-1 {
  border-radius: 6px;
  min-height: 48px;
  padding: 14px 28px;
}

.storefront-product-tabs {
  margin-top: 60px;
}

.storefront-product-related {
  margin-top: 70px;
}

@media (max-width: 991px) {
  .storefront-product-detail__main {
    grid-template-columns: 1fr;
  }

  .storefront-product-detail__top {
    align-items: flex-start;
    flex-direction: column;
  }

  .storefront-product-cart ul {
    align-items: stretch;
    flex-direction: column;
  }

  .storefront-product-cart .theme-btn-1 {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .storefront-product-detail__top .storefront-breadcrumb {
    font-size: 15px;
  }

  .storefront-product-detail {
    padding: 28px 0 50px;
  }
}
