:root {
  --hs-shell-ink: #171815;
  --hs-shell-green: #173c2d;
  --hs-shell-rust: #a75d3a;
  --hs-shell-cream: #f7f3eb;
  --hs-shell-line: rgba(23, 24, 21, 0.13);
}

body.hs-modern-site-shell #topbar,
body.hs-modern-site-shell #topbar-mobile,
body.hs-modern-site-shell #site-header-minimized,
body.hs-modern-site-shell #site-header,
body.hs-modern-site-shell #site-footer {
  display: none !important;
}

.hs-global-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.hs-global-announcement,
.hs-global-header,
.hs-global-footer {
  box-sizing: border-box;
  color: var(--hs-shell-ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hs-global-announcement *,
.hs-global-header *,
.hs-global-footer * {
  box-sizing: border-box;
}

.hs-global-announcement {
  min-height: 38px;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: var(--hs-shell-green);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hs-global-announcement a {
  color: #ead8ca;
  text-decoration: none;
}

.hs-global-announcement__dot {
  color: #c98b68;
  font-size: 7px;
}

.hs-global-header {
  position: relative;
  z-index: 80;
  background: #fbf9f4;
  border-bottom: 1px solid var(--hs-shell-line);
}

.hs-global-header__main {
  min-height: 82px;
  display: grid;
  grid-template-columns: 96px minmax(240px, 1fr) auto;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid var(--hs-shell-line);
}

.hs-global-brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  color: inherit;
  text-decoration: none;
}

.hs-global-brand img {
  width: 72px;
  height: 72px;
  display: block;
  object-fit: contain;
}

.hs-global-search {
  height: 46px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 4px 5px 4px 18px;
  border: 1px solid var(--hs-shell-line);
  border-radius: 999px;
  background: #fff;
}

.hs-global-search input[type="search"] {
  width: 100%;
  min-width: 0;
  height: 36px;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  box-shadow: none;
  color: var(--hs-shell-ink);
  font: inherit;
  font-size: 14px;
}

.hs-global-search input[type="search"]::placeholder {
  color: #8a8b84;
}

.hs-global-search button {
  min-width: 80px;
  height: 36px;
  margin: 0;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: var(--hs-shell-green);
  color: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.hs-global-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 19px;
  white-space: nowrap;
}

.hs-global-actions a {
  color: var(--hs-shell-ink);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.hs-global-cart-count {
  width: 24px;
  height: 24px;
  margin-left: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--hs-shell-rust);
  color: #fff;
  font-size: 11px;
}

.hs-global-nav {
  min-height: 49px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3.4vw, 48px);
}

.hs-global-nav a {
  position: relative;
  padding: 16px 0 14px;
  color: var(--hs-shell-ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.hs-global-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.hs-global-nav a:hover::after,
.hs-global-nav a:focus-visible::after {
  transform: scaleX(1);
}

.hs-global-nav .hs-global-nav__bulk {
  color: var(--hs-shell-rust);
}

.hs-global-mobile-menu {
  display: none;
}

.hs-global-footer {
  margin-top: 80px;
  padding: 64px 0 22px;
  background: #101f19;
  color: #e9eee9;
}

.hs-global-footer__grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 58px;
  padding-bottom: 54px;
}

.hs-global-footer .hs-global-brand img {
  width: 82px;
  height: 82px;
  padding: 5px;
  border-radius: 10px;
  background: #fff;
}

.hs-global-footer__brand p {
  max-width: 310px;
  margin: 22px 0 0;
  color: rgba(233, 238, 233, 0.72);
  font-size: 14px;
  line-height: 1.7;
}

.hs-global-footer h2 {
  margin: 0 0 20px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}

.hs-global-footer__grid > div:not(.hs-global-footer__brand) {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hs-global-footer a {
  color: rgba(233, 238, 233, 0.76);
  font-size: 13px;
  line-height: 1.45;
  text-decoration: none;
}

.hs-global-footer a:hover,
.hs-global-footer a:focus-visible {
  color: #fff;
}

.hs-global-footer__bottom {
  min-height: 48px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(233, 238, 233, 0.55);
  font-size: 12px;
}

body.admin-bar .hs-global-header {
  z-index: 90;
}

@media (max-width: 900px) {
  .hs-global-header__main {
    grid-template-columns: auto 1fr auto;
    gap: 18px;
  }

  .hs-global-search,
  .hs-global-nav {
    display: none;
  }

  .hs-global-mobile-menu {
    position: relative;
    display: block;
  }

  .hs-global-mobile-menu summary {
    list-style: none;
    color: var(--hs-shell-ink);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
  }

  .hs-global-mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .hs-global-mobile-menu nav {
    position: absolute;
    top: calc(100% + 20px);
    left: -12px;
    width: min(290px, calc(100vw - 32px));
    padding: 12px;
    display: grid;
    gap: 2px;
    border: 1px solid var(--hs-shell-line);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(18, 34, 27, 0.17);
  }

  .hs-global-mobile-menu nav a {
    padding: 11px 12px;
    border-radius: 7px;
    color: var(--hs-shell-ink);
    font-size: 13px;
    font-weight: 650;
    text-decoration: none;
  }

  .hs-global-mobile-menu nav a:hover {
    background: var(--hs-shell-cream);
  }

  .hs-global-brand {
    justify-content: center;
  }

  .hs-global-footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .hs-global-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .hs-global-shell {
    width: min(100% - 28px, 1180px);
  }

  .hs-global-announcement {
    min-height: 40px;
    justify-content: flex-start;
    padding-inline: 14px;
    font-size: 9px;
  }

  .hs-global-announcement > :not(:first-child) {
    display: none;
  }

  .hs-global-header__main {
    min-height: 78px;
    grid-template-columns: 1fr auto 1fr;
  }

  .hs-global-brand img {
    width: 62px;
    height: 62px;
  }

  .hs-global-actions > a:first-child {
    display: none;
  }

  .hs-global-actions {
    gap: 0;
  }

  .hs-global-footer {
    margin-top: 56px;
    padding-top: 48px;
  }

  .hs-global-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 28px;
    padding-bottom: 42px;
  }

  .hs-global-footer__brand {
    grid-column: 1 / -1;
  }

  .hs-global-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
  }
}
