:root {
  --rz-green: #78b900;
  --rz-green-dark: #5fa000;
  --rz-btn-green: #80b500;
  --rz-btn-green-dark: #6f9e00;
  --rz-ink: #071c1f;
  --rz-dark: #102726;
  --rz-muted: #6f7a7a;
  --rz-border: #ececec;
  --rz-soft: #f7f5ee;
  --rz-btn-muted: var(--rz-soft);
  --rz-cream: #f3f0e6;
  --rz-card: #f5f5f5;
  --rz-strip-bg: #fdfdfd;
  --rz-strip-border: #e4ecf2;
  --rz-container: 1210px;
  --rz-radius-card: 1.0625rem;
  --rz-radius-soft: .5rem;
  --rz-radius-pill: 3.5rem;
  --rz-space-hero: 1.875rem;
  --rz-space-section: 3.5rem;
  --rz-space-page: 2rem;
  --rz-breadcrumb: 1rem;
  --rz-btn-size: 0.75rem;
  --rz-hero-title: 2rem;
  --rz-home-title: 2.5rem;
  --rz-home-text: 1rem;
  --rz-home-highlight: 1.125rem;
  --rz-home-eyebrow: 1rem;
  --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: var(--rz-strip-bg);
  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);
  min-height: 6.25rem;
  padding: 1.375rem 0;
  position: relative;
  z-index: 1044;
}

.storefront-header__logo img {
  display: block;
  height: 3.0625rem;
  width: auto;
}

.storefront-header__search {
  align-items: center;
  background: #fff;
  border: 0;
  border-radius: 3.125rem;
  box-shadow: 0 1px 6px rgba(54, 56, 61, .15);
  display: flex;
  overflow: hidden;
  position: relative;
}

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

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

.storefront-header__search input {
  -webkit-appearance: none;
  appearance: none;
  background: #fff;
  border: 0;
  border-radius: 999px 0 0 999px;
  color: var(--rz-ink);
  flex: 1;
  font-size: .875rem;
  height: 2.8125rem;
  outline: 0;
  padding: 0 1.5625rem;
}

.storefront-header__search input:focus {
  border: 0 !important;
  box-shadow: none !important;
  outline: 0;
}

.storefront-header__search button {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0 999px 999px 0;
  color: var(--rz-dark);
  display: flex;
  font-size: 1rem;
  height: 2.8125rem;
  justify-content: center;
  width: 3.75rem;
}

.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--desktop.is-open {
  overflow: hidden;
}

.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: 31.25rem;
  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);
  flex-shrink: 0;
  font-size: 15px;
  font-weight: 700;
  margin-left: auto;
  margin-right: auto;
}

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

.storefront-header__cart {
  margin-left: calc(1.25rem - 22px);
}

.storefront-header__cart:hover img {
  filter: brightness(0);
}

.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: flex;
  gap: clamp(6px, 0.1vw, 18px);
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.storefront-root-nav__item {
  align-items: center;
  align-self: stretch;
  display: flex;
  flex: 0 1 auto;
  margin: 0;
  min-width: 0;
  position: static;
}

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

.storefront-root-nav .storefront-root-nav__list>.storefront-root-nav__item>a {
  align-items: center;
  box-shadow: inset 0 0 0 #fff;
  display: flex !important;
  flex: 0 1 auto;
  justify-content: center;
  height: 68px;
  line-height: 1.2 !important;
  min-height: 68px;
  padding: 0 !important;
  text-align: center;
  transition: box-shadow .18s ease;
  white-space: nowrap;
  width: auto;
}

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

.storefront-root-nav .storefront-root-nav__item:hover>a,
.storefront-root-nav .storefront-root-nav__item:focus-within>a {
  background: transparent;
  box-shadow: inset 0 -6.0px 0 #fff;
  color: #fff !important;
  text-decoration: none !important;
}

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

.storefront-root-nav__mega {
  --storefront-root-nav-mega-column-gap: 100px;
  --storefront-root-nav-mega-side-gap: 25px;
  box-sizing: border-box;
  left: 50% !important;
  right: auto !important;
  opacity: 0;
  padding: 22px 0;
  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: block !important;
  margin: 0;
}

.storefront-root-nav__mega-columns {
  column-gap: var(--storefront-root-nav-mega-column-gap);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  left: auto !important;
  list-style: none;
  margin: 0 var(--storefront-root-nav-mega-side-gap);
  opacity: 1 !important;
  padding: 0;
  position: static !important;
  right: auto !important;
  row-gap: 24px;
  top: auto !important;
  transition: none !important;
  visibility: visible !important;
}

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

.storefront-root-nav__mega--cols-2 .storefront-root-nav__mega-columns {
  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-columns>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-columns>li>a {
  background: var(--rz-soft);
  color: var(--rz-dark);
  display: block;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
  padding: 11px 14px;
  text-decoration: none !important;
}

.storefront-root-nav__mega-columns>li>ul {
  display: grid;
  left: auto !important;
  list-style: none;
  margin: 0;
  opacity: 1 !important;
  padding: 0;
  position: static !important;
  right: auto !important;
  top: auto !important;
  transition: none !important;
  visibility: visible !important;
}

.storefront-root-nav__mega-columns>li>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,
body.catalog-page .wrapper {
  overflow-x: clip;
}

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

.home__section {
  padding: var(--rz-space-section) 0;
}

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

.home__eyebrow {
  color: var(--rz-btn-green);
  font-size: var(--rz-home-eyebrow);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3;
  margin-bottom: .625rem;
  text-transform: uppercase;
}

.home__title {
  color: var(--rz-ink);
  font-size: var(--rz-home-title);
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 1.125rem;
}

.home__text {
  color: var(--rz-ink);
  font-size: var(--rz-home-text);
  line-height: 1.8;
  margin: 0;
}

.home__center {
  margin: 0 auto 2.625rem;
  max-width: 43.75rem;
  text-align: center;
}

.rz-btn,
.home-btn {
  align-items: center;
  background: var(--rz-btn-green);
  border: 1px solid transparent;
  border-radius: var(--rz-radius-pill);
  color: #fff;
  display: inline-flex;
  font-size: var(--rz-btn-size);
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0;
  line-height: 2.1;
  overflow: hidden;
  padding: 1.4em 3.6em;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color .3s ease, color .3s ease;
  white-space: nowrap;
  width: fit-content;
  z-index: 1;
}

.rz-btn::after,
.home-btn::after {
  background: #fff;
  content: '';
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: width .3s ease;
  width: 0;
  z-index: -1;
}

.rz-btn:hover,
.home-btn:hover {
  border-color: #000;
  color: var(--rz-ink);
}

.rz-btn:hover::after,
.home-btn:hover::after {
  width: 100%;
}

.rz-btn--dark {
  background: var(--rz-ink);
}

.rz-btn--pill {
  font-size: .75rem;
  gap: .5rem;
  line-height: 1.3333;
  min-height: 2.8125rem;
  padding: 1.4em 2em;
  text-transform: none;
}

.rz-btn--pill img {
  height: .9375rem;
  width: .9375rem;
}

.rz-btn--muted {
  background: var(--rz-btn-muted);
  color: #000;
  font-weight: 500;
}

.home-hero {
  padding: 2.125rem 0 1.625rem;
}

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

.home-hero__main,
.home-hero__promo {
  background: var(--rz-card);
  border-radius: var(--rz-radius-card);
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  position: relative;
}

.home-hero__main {
  aspect-ratio: 570 / 555;
  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(4, 3, 3, 0) 27%, rgba(56, 54, 54, .81) 100%);
  bottom: 0;
  color: #fff;
  left: 0;
  padding: clamp(3rem, 8vw, 5rem) clamp(1.5rem, 3vw, 2.4375rem) clamp(1.5rem, 3vw, 2.4375rem);
  position: absolute;
  right: 0;
}

.home-hero__overlay h1,
.home-hero__promo h2 {
  font-size: var(--rz-hero-title);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 0.7em;
}

.home-hero__overlay h1 {
  color: #fff;
  max-width: 23.8125rem;
}

.home-hero__side {
  display: grid;
  gap: var(--rz-space-hero);
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.home-hero__promo {
  aspect-ratio: 570 / 259;
  min-height: 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-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 17.5rem;
  min-width: 0;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  position: relative;
  z-index: 1;
}

.home-hero__promo--end .home-hero__promo-content {
  margin-left: auto;
  padding-left: 0;
  padding-right: clamp(1.5rem, 3vw, 2.25rem);
}

.home-hero__promo h2 {
  color: var(--rz-ink);
}

.home-feature-strip {
  align-items: center;
  background: var(--rz-strip-bg);
  border: 1px solid var(--rz-strip-border);
  border-radius: 1.25rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 1.75rem;
  min-height: 6.4375rem;
  padding: 1.5rem 1rem;
}

.home-feature-strip__item {
  align-items: center;
  display: flex;
  gap: 1.125rem;
  justify-content: center;
  min-width: 0;
}

.home-feature-strip__icon {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  height: 2.5rem;
  justify-content: center;
  width: 2.5rem;
}

.home-feature-strip__icon img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.home-feature-strip__item>div {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.home-feature-strip__item strong {
  text-transform: uppercase;
  color: var(--rz-ink);
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.56;
}

.home-feature-strip__item span {
  color: var(--rz-ink);
  display: block;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6875;
  margin-top: -0.125rem;
}

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

.home-about__images {
  display: grid;
  gap: 1.375rem;
  grid-template-columns: 1fr 1fr;
}

.home-about__image {
  border-radius: .5rem;
  height: 22.5rem;
  overflow: hidden;
}

.home-about__image:nth-child(2) {
  margin-top: 2.875rem;
}

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

.home .about-story__highlight {
  border-left: .125rem solid var(--rz-btn-green);
  font-size: var(--rz-home-highlight);
  line-height: 1.8;
  max-width: 28.125rem;
  padding-left: 1.375rem;
}

.home-about__content .home-btn,
.home-delivery__content .home-btn {
  margin-top: 1.625rem;
}

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

.home-category-card {
  align-items: center;
  background: #fff;
  border: 1px solid var(--rz-border);
  border-radius: .5rem;
  color: var(--rz-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 10rem;
  padding: 1.5rem 1rem;
  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: 5.25rem;
  justify-content: center;
  margin-bottom: 1rem;
  position: relative;
  width: 5.25rem;
}

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

.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: .875rem;
  line-height: 1.25;
}

.home-category-card__count {
  color: var(--rz-muted);
  font-size: .75rem;
  margin-top: .3125rem;
}

.home-category-cta {
  align-self: center;
  grid-column: span 2;
  justify-self: center;
  max-width: 26.875rem;
  padding: 1.125rem 1.625rem;
  text-align: center;
}

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

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

.home-value-card {
  background: #fff;
  border-radius: .5rem;
  padding: 2rem;
}

.home-value-card img {
  height: 2.625rem;
  margin-bottom: 1.125rem;
  width: 2.625rem;
}

.home-value-card h3 {
  color: var(--rz-dark);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 .625rem;
}

.home-value-card p {
  color: var(--rz-muted);
  font-size: .875rem;
  line-height: 1.6;
  margin: 0;
}

.home-contact-card {
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--rz-strip-border);
  border-radius: 1.25rem;
  box-shadow: 0 0 2px rgba(0, 0, 0, .1);
  display: flex;
  flex-direction: column;
  padding: 1.875rem;
}

.home-contact-card__head {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  margin-bottom: 1.125rem;
}

.home-contact-card img {
  display: block;
  height: 2.5625rem;
  width: 2.5625rem;
}

.home-contact-card h3 {
  color: var(--rz-ink);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.home-contact-card p {
  color: var(--rz-ink);
  font-size: var(--rz-home-text);
  line-height: 1.8;
  margin: 0;
}

.home-contact-card a {
  color: #000;
  display: inline-block;
  font-size: var(--rz-home-text);
  font-weight: 600;
  line-height: 1.8;
  margin-top: auto;
  padding-top: 1.5rem;
  text-decoration: underline;
}

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

.home-delivery__image {
  border-radius: .5rem;
  height: 26.875rem;
  overflow: hidden;
}

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

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

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

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

.home-blog-card__body {
  padding: 1.25rem;
}

.home-blog-card__meta {
  color: var(--rz-green);
  font-size: .75rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.home-blog-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 .75rem;
}

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

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

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

.home-faq {
  align-items: start;
  display: grid;
  gap: 1.875rem;
  grid-template-columns: 1fr 1fr;
}

.home-faq__accordion,
.ltn__faq-inner-2 #accordion_2 {
  border-radius: var(--rz-radius-soft);
  overflow: hidden;
}

.home-faq__accordion {
  display: flex;
  flex-direction: column;
}

.home-faq__item {
  background: #fff;
  border: 2px solid #eee;
  margin-bottom: -2px;
}

.home-faq__item:first-child,
.ltn__faq-inner-2 #accordion_2 > .card:first-child {
  border-top-left-radius: var(--rz-radius-soft);
  border-top-right-radius: var(--rz-radius-soft);
}

.home-faq__item:last-child,
.ltn__faq-inner-2 #accordion_2 > .card:last-child {
  border-bottom-left-radius: var(--rz-radius-soft);
  border-bottom-right-radius: var(--rz-radius-soft);
}

.home-faq__item:last-child {
  margin-bottom: 0;
}

.home-faq__question {
  align-items: center;
  background: #fff;
  border: 0;
  color: var(--rz-ink);
  cursor: pointer;
  display: flex;
  font-size: 1rem;
  font-weight: 700;
  gap: 1rem;
  justify-content: space-between;
  line-height: 1.4625;
  padding: 1.21875rem 1.25rem 1.24375rem 2.5rem;
  text-align: left;
  width: 100%;
}

.home-faq__icon {
  align-items: center;
  background: var(--rz-soft);
  display: inline-flex;
  flex-shrink: 0;
  height: 2.5rem;
  justify-content: center;
  width: 2.5rem;
}

.home-faq__icon img {
  height: 1rem;
  width: 1rem;
}

.home-faq__icon-plus,
.home-faq__icon-minus {
  display: none;
}

.home-faq__item:not(.is-open) .home-faq__icon-plus,
.home-faq__item.is-open .home-faq__icon-minus {
  display: block;
}

.home-faq__answer {
  color: var(--rz-ink);
  display: none;
  font-size: var(--rz-home-text);
  line-height: 1.8;
  padding: .9375rem 2.5rem 1.5rem;
}

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

.home-faq__more {
  color: var(--rz-ink);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4625;
  margin: 1.5rem 0 0;
}

.home-faq__more a {
  color: var(--rz-btn-green);
  text-decoration: underline;
}

.home-faq__image {
  align-self: start;
  display: flex;
  justify-content: center;
}

.home-faq__image img {
  display: block;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  width: 35.625rem;
}

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

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

.storefront-page__hero {
  padding: var(--rz-space-page) 0;
}

.storefront-page__section {
  padding: var(--rz-space-page) 0;
}

.storefront-page__section--center {
  padding: var(--rz-space-page) 0;
}

.storefront-breadcrumb,
.catalog-breadcrumbs {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 1.625rem;
  max-width: 100%;
  min-width: 0;
}

.storefront-breadcrumb a,
.storefront-breadcrumb span,
.storefront-breadcrumb strong,
.catalog-breadcrumbs a,
.catalog-breadcrumbs span,
.ltn__breadcrumb-list ul li {
  font-size: var(--rz-breadcrumb);
  font-weight: 700;
}

.storefront-breadcrumb a {
  color: #102726;
  text-decoration: none;
}

.storefront-breadcrumb span {
  color: #6b7474;
}

.storefront-breadcrumb strong,
.storefront-breadcrumb span:last-child {
  color: var(--rz-green);
  text-decoration: none;
}

.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 {
  display: block;
}

.delivery-hero__intro {
  max-width: 43.75rem;
}

.delivery-hero__grid {
  align-items: stretch;
  display: grid;
  gap: 3.5rem;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, .88fr);
}

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

.delivery-hero__image {
  aspect-ratio: 1 / .72;
  margin-top: .5rem;
}

.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: stretch;
  display: grid;
  grid-template-rows: repeat(4, minmax(0, 1fr));
  padding-right: 11rem;
}

.delivery-fact {
  align-content: center;
  display: grid;
  gap: .375rem .75rem;
  grid-template-columns: 1.5rem minmax(0, 1fr);
}

.delivery-fact img {
  align-self: center;
  display: block;
  grid-row: 1;
  height: 1.5rem;
  object-fit: contain;
  width: 1.5rem;
}

.delivery-fact h2 {
  color: var(--rz-ink);
  font-size: 1.25rem;
  font-weight: 700;
  grid-column: 2;
  line-height: 1.3;
  margin: 0;
}

.delivery-fact p {
  color: var(--rz-muted);
  font-size: var(--rz-home-text);
  grid-column: 2;
  line-height: 1.8;
  margin: 0;
}

.delivery-process h2,
.delivery-note h2,
.delivery-contact h2 {
  color: var(--rz-ink);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 .625rem;
}

.delivery-process p,
.delivery-note p,
.delivery-contact p {
  color: var(--rz-ink);
  font-size: var(--rz-home-text);
  line-height: 1.8;
  margin: 0;
}

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

.delivery-process__copy {
  display: grid;
  gap: 1.875rem;
}

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

.delivery-note__content {
  display: grid;
  gap: 2.125rem;
}

.delivery-contact__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
  margin-top: 1.375rem;
}

.delivery-contact__grid a {
  background: #fff;
  border: 1px solid var(--rz-border);
  border-radius: .5rem;
  color: var(--rz-ink);
  display: block;
  padding: 1.125rem;
}

.delivery-contact__grid img {
  height: 2rem;
  margin-bottom: .625rem;
  width: 2rem;
}

.delivery-contact__grid span {
  color: var(--rz-ink);
  display: block;
  font-size: var(--rz-home-text);
  margin-bottom: .25rem;
}

.delivery-contact__grid strong {
  color: var(--rz-ink);
  display: block;
  font-size: var(--rz-home-text);
  line-height: 1.35;
}

.about-intro {
  padding-bottom: 0;
}

.about-page .storefront-page__hero,
.about-page .storefront-page__section,
.about-page .storefront-page__section--center,
.delivery-page .storefront-page__hero,
.delivery-page .storefront-page__section,
.delivery-page .storefront-page__section--center {
  padding: var(--rz-space-page) 0;
}

.catalog-page .catalog-main {
  padding-top: var(--rz-space-page);
  padding-bottom: var(--rz-space-page);
}

.about-page .storefront-page__title,
.delivery-page .storefront-page__title,
.catalog-page .catalog-hero h1 {
  color: var(--rz-ink);
  font-size: var(--rz-home-title);
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 1.125rem;
}

.about-page .storefront-page__lead,
.delivery-page .storefront-page__lead,
.catalog-page .catalog-intro {
  color: var(--rz-ink);
  font-size: var(--rz-home-text);
  line-height: 1.8;
  margin: 0;
  max-width: 43.75rem;
}

.about-page .home__center .home-btn {
  margin-top: 1.625rem;
}

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

.about-story__highlight {
  border-left: .125rem solid var(--rz-btn-green);
  color: var(--rz-ink);
  font-size: var(--rz-home-highlight);
  font-weight: 400;
  line-height: 1.8;
  margin: 0 0 1.125rem;
  padding-left: 1.375rem;
}

.about-values {
  gap: 4.5rem;
}

.about-values__list {
  display: grid;
  gap: 1.5rem;
  padding-right: 11rem;
}

.about-value {
  display: grid;
  gap: .75rem;
}

.about-value__head {
  align-items: center;
  display: flex;
  gap: 1.25rem;
}

.about-value__icon {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  height: 2.5rem;
  justify-content: center;
  width: 2.5rem;
}

.about-value__icon img {
  display: block;
  height: 2.5rem;
  object-fit: contain;
  width: 2.5rem;
}

.about-value h2 {
  color: var(--rz-ink);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.about-value p {
  color: var(--rz-ink);
  font-size: var(--rz-home-text);
  line-height: 1.8;
  margin: 0;
}

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

.storefront-benefits__inner {
  background: #fff;
  border: 1px solid var(--rz-border);
  border-radius: .5rem;
  box-shadow: 0 8px 28px rgba(16, 39, 38, .07);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, 1fr);
  padding: 1.25rem 0;
}

.storefront-benefits__item {
  align-items: flex-start;
  display: grid;
  gap: .75rem;
  grid-template-columns: 3.125rem minmax(0, 1fr);
  padding: 0 1.5rem;
  position: relative;
}

.storefront-benefits__item:not(:first-child)::before {
  background: var(--rz-border);
  content: "";
  height: 50%;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
}

.storefront-benefits__icon {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  height: 3.125rem;
  justify-content: center;
  width: 3.125rem;
}

.storefront-benefits__icon img {
  display: block;
  height: 3.125rem;
  object-fit: contain;
  width: 3.125rem;
}

.storefront-benefits__item h3 {
  color: var(--rz-ink);
  font-size: var(--rz-home-text);
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 .3125rem;
}

.storefront-benefits__item p {
  color: var(--rz-ink);
  font-size: .9375rem;
  line-height: 1.8;
  margin: 0;
}

.storefront-benefits+.ltn__footer-area .footer-top-area {
  padding-top: 3.125rem;
}

.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%;
  z-index: 1;
}

.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: 60px;
}

.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: center;
  border: 2px solid #e5e5e5;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(16, 39, 38, .04);
  box-sizing: border-box;
  display: flex;
  flex: 0 0 118px;
  height: 44px;
  line-height: 1;
  margin: 0;
  overflow: hidden;
  width: 118px;
}

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

.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;
  height: 100%;
  justify-content: center;
  line-height: 1;
  margin: 0;
  padding: 0;
  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 {
  align-self: center;
  border: 0;
  box-sizing: border-box;
  color: var(--rz-dark);
  flex: 1 1 34%;
  font-size: 15px;
  font-weight: 700;
  height: auto;
  line-height: 1;
  margin: 0;
  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,
  .catalog-page .catalog-main {
    max-width: calc(100% - 64px);
  }

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

@media (max-width: 991px) {

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

  .storefront-header {
    background: var(--rz-strip-bg);
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 4px 12px rgba(16, 39, 38, .1);
    position: sticky;
    top: 0;
    z-index: 1020;
  }

  .storefront-header__top {
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    max-width: none;
    min-height: 0;
    padding: .5rem 1.25rem .75rem;
  }

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

  .storefront-header__logo img {
    height: 2.0625rem;
  }

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

  .storefront-header__phone.rz-btn {
    border-radius: 3rem;
    color: #000;
    gap: 0;
    height: 2rem;
    line-height: 0;
    margin-left: auto;
    min-height: 2rem;
    padding: 0;
    width: 2rem;
  }

  .storefront-header__phone img {
    display: block;
    flex-shrink: 0;
    height: .9375rem;
    width: .9375rem;
  }

  .storefront-header__cart.rz-btn {
    flex: 0 0 3.5625rem;
    font-size: .75rem;
    gap: .1875rem;
    height: 2rem;
    margin-left: 0;
    max-width: 3.5625rem;
    min-height: 2rem;
    min-width: 3.5625rem;
    padding: 0 .5rem;
    width: 3.5625rem;
  }

  .storefront-header__cart img {
    height: .9375rem;
    width: .9375rem;
  }

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

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

  .storefront-header__cart span::after {
    color: #fff;
    content: attr(data-mobile-count);
    font-size: .875rem;
    font-weight: 600;
    line-height: 1.25rem;
  }

  .storefront-header__cart:hover span::after {
    color: var(--rz-ink);
  }

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

  .storefront-header__menu {
    flex: 0 0 1.5rem;
    gap: .375rem;
    height: 1.5rem;
    justify-content: center;
    width: 1.5rem;
  }

  .storefront-header__menu span {
    height: 2px;
    width: 1.5rem;
  }

  .storefront-header__search--mobile {
    margin: 1.0625rem 1.25rem 1.25rem;
  }

  .storefront-header__search--mobile button {
    order: -1;
  }

  .storefront-header__search--mobile input {
    padding: 0 1.25rem 0 0;
  }

  .storefront-header__search--mobile input::placeholder {
    color: #727272;
  }

  .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: flex;
    font-size: 18px;
    height: 44px;
    justify-content: center;
    justify-self: start;
    padding: 0;
    pointer-events: none;
    visibility: hidden;
    width: 44px;
  }

  .storefront-mobile-categories__back.is-active {
    pointer-events: auto;
    visibility: visible;
  }

  .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;
    position: static;
    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,
  .catalog-page .catalog-main {
    max-width: none;
    padding-left: 2.125rem;
    padding-right: 2.125rem;
  }

  .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__grid,
  .delivery-process,
  .delivery-note,
  .about-story,
  .about-values {
    grid-template-columns: 1fr;
  }

  .about-values__list,
  .delivery-facts {
    padding-right: 0;
  }

  .home-faq__image {
    display: none;
  }

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

  .storefront-benefits__item:nth-child(odd)::before {
    display: none;
  }

  .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) {
  :root {
    --rz-hero-title: 1.25rem;
    --rz-home-title: 1.5rem;
    --rz-home-eyebrow: .875rem;
    --rz-space-section: 1rem;
    --rz-breadcrumb: .75rem;
  }

  body.home .body-wrapper,
  body.storefront-page .body-wrapper,
  body.catalog-page .body-wrapper {
    max-width: 100vw;
    overflow-x: clip;
  }

  .storefront-header__top {
    padding: .5rem 1.25rem .75rem;
  }

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

  .home__container,
  .catalog-page .catalog-main {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }

  .home-faq__question {
    padding: 1rem 1rem 1rem 1.25rem;
  }

  .home-faq__answer {
    padding: .75rem 1.25rem 1.25rem;
  }

  .home-contact-card {
    padding: 2.375rem 1.875rem 1.875rem;
  }

  .home-contact-card__head {
    align-items: center;
    flex-direction: row;
    gap: 1.5625rem;
    margin-bottom: 1.5rem;
  }

  .home-contact-card h3 {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .storefront-page__hero,
  .storefront-page__section,
  .about-page .storefront-page__hero,
  .about-page .storefront-page__section,
  .about-page .storefront-page__section--center,
  .delivery-page .storefront-page__hero,
  .delivery-page .storefront-page__section,
  .delivery-page .storefront-page__section--center {
    padding: var(--rz-space-page) 0;
  }

  .catalog-page .catalog-main {
    padding-top: var(--rz-space-page);
    padding-bottom: var(--rz-space-page);
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }

  .about-page .storefront-page__title,
  .delivery-page .storefront-page__title,
  .catalog-page .catalog-hero h1 {
    font-size: var(--rz-home-title);
  }

  .about-page .storefront-page__lead,
  .delivery-page .storefront-page__lead {
    border-left: 0;
    font-size: var(--rz-home-text);
    line-height: 1.8;
    padding-left: 0;
  }

  .catalog-page .catalog-intro {
    border-left: .1875rem solid var(--rz-btn-green);
    font-size: var(--rz-home-text);
    line-height: 1.8;
    padding-left: 1.375rem;
  }

  .storefront-breadcrumb,
  .catalog-breadcrumbs {
    flex-wrap: nowrap;
    gap: .5625rem;
    margin-bottom: 1.75rem;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
  }

  .storefront-breadcrumb a,
  .storefront-breadcrumb span,
  .storefront-breadcrumb strong,
  .catalog-breadcrumbs a,
  .catalog-breadcrumbs span {
    font-size: var(--rz-breadcrumb);
    min-width: 1.25em;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .storefront-breadcrumb a,
  .catalog-breadcrumbs a {
    flex: 0 100 auto;
  }

  .storefront-breadcrumb>span:not(:last-child),
  .catalog-breadcrumbs__separator {
    flex: 0 0 auto;
    min-width: 0;
  }

  .storefront-breadcrumb>:last-child,
  .catalog-breadcrumbs>:last-child {
    flex: 0 1 auto;
  }

  .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__grid {
    gap: 1.75rem;
  }

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

  .delivery-facts {
    grid-template-rows: none;
    gap: 1.5rem;
  }

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

  .delivery-process,
  .delivery-note {
    gap: 1.875rem;
  }

  .about-values {
    gap: 1.875rem;
  }

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

  .delivery-process__image {
    order: -1;
  }

  .about-story {
    gap: 2.125rem;
  }

  .about-story__highlight {
    font-size: var(--rz-home-highlight);
    padding-left: 1.0625rem;
  }

  .about-value__icon,
  .about-value__icon img {
    height: 2rem;
    width: 2rem;
  }

  .storefront-benefits__inner {
    gap: 2rem;
    grid-template-columns: 1fr;
    padding: 1.5rem 1.5rem;
  }

  .storefront-benefits__item {
    gap: .625rem;
    padding: 0;
  }

  .storefront-benefits__item:not(:first-child)::before {
    display: none;
  }

  .storefront-benefits__icon,
  .storefront-benefits__icon img {
    height: 2rem;
    width: 2rem;
  }

  .storefront-benefits+.ltn__footer-area .footer-top-area {
    padding-top: 2.75rem;
  }

  .home .about-story__highlight {
    padding-left: 1.0625rem;
  }

  .home-hero {
    padding: var(--rz-space-section) 0;
  }

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

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

  .home-hero__side {
    grid-template-rows: none;
  }

  .home-hero__promo-content {
    max-width: 15rem;
  }

  .rz-btn:not(.rz-btn--pill),
  .home-btn {
    padding-left: 2.6em;
    padding-right: 2.6em;
  }

  .home-feature-strip {
    column-gap: 1rem;
    grid-template-columns: 1fr 1fr;
    margin-top: var(--rz-space-section);
    min-height: 0;
    padding: 1rem 0.75rem;
    row-gap: 0.75rem;
  }

  .home-feature-strip__item {
    gap: 0.625rem;
    justify-content: flex-start;
  }

  .home-feature-strip__icon {
    height: 1.25rem;
    width: 1.25rem;
  }

  .home-feature-strip__item strong {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.3;
  }

  .home-feature-strip__item span {

    font-size: 0.75rem;
    line-height: 1.3;
    margin-top: 0;
  }

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

  .home-about__image {
    height: 15rem;
  }

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

  .home-category-card {
    min-height: 8.625rem;
    padding: 1.125rem .75rem;
  }

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

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

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

  .home-delivery__image {
    height: 20.625rem;
    order: -1;
  }

  .catalog-page .catalog-product-card__form,
  .home .catalog-product-card__form {
    align-items: stretch;
    display: flex;
    flex-direction: column;
    gap: .5rem;
  }

  .catalog-product-card__quantity {
    flex: 0 0 auto;
    height: 2.75rem;
    max-width: none;
    width: 100%;
  }

  .catalog-product-card__quantity .dec.qtybutton,
  .catalog-product-card__quantity .inc.qtybutton {
    flex-basis: 2.75rem;
    height: 100%;
    width: 2.75rem;
  }

  .catalog-product-card__cta {
    flex: 0 0 auto;
    font-size: .8125rem;
    gap: .375rem;
    height: 2.75rem;
    min-width: 0;
    padding: 0 .5rem;
    width: 100%;
  }

  .catalog-product-card__cta i {
    font-size: .8125rem;
  }

  .ltn__product-item-3 .catalog-product-card__body {
    padding: .625rem .5rem .5rem;
  }

  .ltn__product-item-3 .catalog-product-card__title {
    font-size: .75rem;
    font-weight: 700;
    line-height: 1.22;
    margin: 0 0 .625rem;
    min-height: 1.875rem;
  }

  .ltn__product-item-3 .catalog-product-card__price {
    font-size: 1.125rem;
    margin: 0 0 .75rem;
  }

  .ltn__product-item-3 .catalog-product-card__price del {
    font-size: .75rem;
  }

  .catalog-product-card__stock {
    font-size: .875rem;
    margin-bottom: .75rem;
  }

  .catalog-product-card__stock span {
    height: .625rem;
    width: .625rem;
  }
}

@media (max-width: 520px) {
  .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-mobile-categories__back {
    height: 36px;
    width: 36px;
  }

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

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

  .home__container,
  .catalog-page .catalog-main {
    padding-left: .9375rem;
    padding-right: .9375rem;
  }

  .home-hero__promo-content {
    max-width: 13.75rem;
  }

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

  .home-feature-strip {
    min-height: 0;
    padding: 0.875rem 0.875rem;
  }

  .home-feature-strip__item {
    gap: 0.5rem;
  }

  .home-feature-strip__icon {
    height: 1.125rem;
    width: 1.125rem;
  }
}

.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 i {
  color: #010101;
  font-size: 13px;
}

.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__toggle-label {
    align-items: center;
    font-size: 15px;
    display: inline-flex;
    gap: 8px;
  }

  .checkout-mobile-order__toggle-icon {
    border-bottom: 2px solid currentColor;
    border-right: 2px solid currentColor;
    display: inline-block;
    height: 8px;
    transform: rotate(45deg);
    transition: transform .18s ease;
    width: 8px;
  }

  .checkout-mobile-order.is-open .checkout-mobile-order__toggle-icon {
    transform: rotate(225deg);
  }

  .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: 22px 0 64px;
}

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

.storefront-product-detail__top .storefront-breadcrumb {
  align-items: center;
  color: var(--rz-green);
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 0;
  min-width: 0;
}

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

.storefront-product-detail__top .storefront-breadcrumb span {
  color: #6b7474;
}

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

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

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

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

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

.storefront-product-gallery .ltn__shop-details-large-img img {
  height: clamp(290px, 25vw, 350px);
  object-fit: contain;
  object-position: center;
  width: 100%;
}

.storefront-product-gallery .ltn__shop-details-small-img {
  margin-top: 12px;
}

.storefront-product-gallery .ltn__shop-details-small-img img {
  height: 50px;
  object-fit: cover;
}

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

.storefront-product-info h1 {
  color: var(--rz-dark);
  font-size: clamp(30px, 3.1vw, 44px);
  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(30px, 3.8vw, 42px);
  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: 14px;
}

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

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

  .storefront-product-gallery .ltn__shop-details-large-img img {
    height: auto;
  }

  .storefront-product-gallery .ltn__shop-details-small-img img {
    height: auto;
  }

  .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: 767px) {
  .storefront-product-detail__top .storefront-breadcrumb {
    flex-wrap: nowrap;
    gap: 9px;
    overflow-x: auto;
    padding-bottom: 2px;
    white-space: nowrap;
  }
}

@media (max-width: 640px) {
  .storefront-product-detail {
    padding: 28px 0 50px;
  }
}