html {
  scroll-padding-top: var(--site-header-offset, 0px);
}

.header {
  width: 100%;
  background: var(--menu-bg, rgba(255, 252, 246, 0.92));
  border-bottom: 1px solid var(--border-soft);
  position: static;
  z-index: 20;
  backdrop-filter: blur(14px);
}

.header.header--scroll,
.header.header--static {
  position: static;
}

body.site-header-static-active {
  padding-top: var(--site-header-offset, 0px);
}

#siteHeader.site-header--static {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
}

#siteHeader.site-header--scroll {
  position: static;
}

#siteHeader.site-header--off {
  display: none;
}

.header-inner,
.hero,
.section,
.footer-inner,
.manage-wrap {
  max-width: 1220px;
  margin: 0 auto;
}

.header-inner {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.hero {
  --hero-bg: var(--bg-main);
  --hero-left-width: 52fr;
  --hero-right-width: 48fr;
  --hero-gap: 58px;
  padding: 86px 24px 70px;
  display: grid;
  grid-template-columns: var(--hero-left-width) var(--hero-right-width);
  gap: var(--hero-gap);
  align-items: center;
  background: var(--hero-bg);
}

.hero[data-card-position="left"] .hero-card {
  order: -1;
}

.hero[data-card-position="top"],
.hero[data-card-position="bottom"],
.hero[data-card-mode="off"] {
  grid-template-columns: 1fr;
}

.hero[data-card-position="top"] .hero-card {
  order: -1;
}

.hero[data-card-position="top"] .hero-card,
.hero[data-card-position="bottom"] .hero-card {
  max-width: 760px;
  width: 100%;
  justify-self: center;
}

.section {
  padding: 70px 24px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

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

.products[hidden],
.featured-products-carousel[hidden] {
  display: none !important;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gift-section {
  max-width: 1220px;
  margin: 20px auto 0;
  padding: 0 24px 78px;
}

.footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border-soft);
  padding: 34px 24px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--text-soft);
  font-size: 14px;
}

.manage-wrap {
  padding: 54px 24px 80px;
}
