:root {
  --bh-black: #000000;
  --bh-white: #ffffff;
  --bh-white-soft: rgba(255, 255, 255, 0.72);
  --bh-white-faint: rgba(255, 255, 255, 0.5);
  --bh-white-border: rgba(255, 255, 255, 0.45);
  --bh-font: "Helvetica Neue", Inter, Helvetica, Arial, sans-serif;
  --bh-nav-offset: clamp(3.75rem, 6vw, 5.5rem);
  --bh-gutter: clamp(1.25rem, 3vw, 2.5rem);
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bh-black);
  color: var(--bh-white);
  font-family: var(--bh-font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.bh-archive-theme {
  background: var(--bh-black);
  color: var(--bh-white);
}

body.template-collection {
  scroll-snap-type: y proximity;
}

.bh-archive-theme *,
.bh-archive-theme *::before,
.bh-archive-theme *::after {
  box-sizing: border-box;
}

.bh-archive-theme img {
  display: block;
  max-width: 100%;
}

.bh-archive-theme a {
  color: inherit;
  text-decoration: none;
}

.bh-archive-theme button,
.bh-archive-theme input,
.bh-archive-theme select,
.bh-archive-theme textarea {
  font: inherit;
}

.bh-main {
  min-height: 100vh;
  animation: bh-page-enter 420ms ease both;
}

body.is-leaving .bh-main {
  opacity: 0;
  transition: opacity 220ms ease;
}

.bh-skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.bh-skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 20;
  padding: 0.75rem 1rem;
  background: var(--bh-white);
  color: var(--bh-black);
}

.bh-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.bh-site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
}

.bh-site-header__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.35rem var(--bh-gutter);
}

.bh-site-header__actions {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
}

.bh-site-header__link {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity 220ms ease;
}

.bh-site-header__link:hover,
.bh-site-header__link:focus-visible {
  opacity: 1;
}

.bh-site-header__sound {
  border: 0;
  background: transparent;
  color: var(--bh-white);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.58;
  cursor: pointer;
  transition: opacity 220ms ease;
}

.bh-site-header__sound:hover,
.bh-site-header__sound:focus-visible,
.bh-site-header__sound[aria-pressed="true"] {
  opacity: 1;
}

.bh-site-header__time {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: 0;
  transform: translate(-50%, -50%);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.42;
  white-space: nowrap;
  pointer-events: none;
}

.bh-entry {
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(2rem, 5vw, 3rem) var(--bh-gutter);
}

.bh-entry__inner {
  position: relative;
  min-height: calc(100vh - clamp(4rem, 8vw, 6rem));
  min-height: calc(100svh - clamp(4rem, 8vw, 6rem));
  display: flex;
  align-items: center;
  justify-content: center;
}

.bh-entry__copy {
  display: grid;
  gap: 1rem;
  justify-items: center;
  text-align: center;
}

.bh-entry__brand {
  margin: 0;
  font-size: clamp(3.4rem, 11vw, 8rem);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.bh-entry__index {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.68;
}

.bh-entry__statement {
  display: grid;
  gap: 0.25rem;
  margin-top: 1rem;
}

.bh-entry__statement p {
  margin: 0;
  font-size: clamp(0.92rem, 1.8vw, 1.05rem);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  opacity: 0.74;
}

.bh-entry__enter {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  opacity: 0.72;
  transition: opacity 220ms ease;
}

.bh-entry__enter:hover,
.bh-entry__enter:focus-visible {
  opacity: 1;
}

.bh-archive-theme .rte p {
  margin: 0;
}

.bh-archive-theme .rte p + p {
  margin-top: 1rem;
}

.bh-archive {
  min-height: 100vh;
  min-height: 100svh;
  padding-top: var(--bh-nav-offset);
}

.bh-archive--collection {
  min-height: auto;
  padding-top: 0;
}

.bh-archive-reel {
  width: 100%;
}

.bh-archive-panel {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding-top: var(--bh-nav-offset);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.bh-archive-panel + .bh-archive-panel {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bh-archive__grid {
  display: grid;
  min-height: calc(100vh - var(--bh-nav-offset));
  min-height: calc(100svh - var(--bh-nav-offset));
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
}

.bh-archive--collection .bh-archive__grid {
  grid-template-columns: minmax(0, 1.32fr) minmax(320px, 0.68fr);
}

.bh-archive--collection .bh-archive__content {
  padding-left: clamp(2.75rem, 5vw, 5.5rem);
  padding-right: clamp(1.75rem, 4vw, 4rem);
}

.bh-archive--collection .bh-archive__text {
  transform: translateY(-1vh);
}

.bh-archive__media {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #050505;
}

.bh-archive__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 900ms cubic-bezier(0.19, 1, 0.22, 1);
}

.bh-archive--product .bh-archive__media {
  flex-direction: column;
  gap: clamp(1.5rem, 4vw, 3rem);
  justify-content: flex-start;
  padding: clamp(1.25rem, 3vw, 2.5rem);
}

.bh-archive--product .bh-archive__media img {
  width: min(100%, 620px);
  height: auto;
  max-height: min(78vh, 820px);
  object-fit: contain;
}

@media (hover: hover) and (pointer: fine) {
  .bh-archive__media:hover img {
    transform: scale(1.015);
  }
}

.bh-archive__content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(2.5rem, 5vw, 5rem);
}

.bh-archive__text,
.bh-product-artifact {
  width: min(100%, 420px);
}

.bh-archive__index {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.42;
}

.bh-archive__title {
  margin: 0;
  max-width: 9ch;
  font-size: clamp(2.2rem, 4.4vw, 4.3rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

.bh-archive__geography {
  margin: 1.35rem 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.5;
}

.bh-archive__details {
  display: grid;
  gap: 0.7rem;
  margin-top: 2rem;
}

.bh-archive__details p,
.bh-product-artifact__details p {
  margin: 0;
  font-size: clamp(0.78rem, 1.2vw, 0.9rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.72;
}

.bh-outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border: 1px solid var(--bh-white-border);
  background: transparent;
  color: var(--bh-white);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease, opacity 220ms ease;
}

.bh-outline-button:hover,
.bh-outline-button:focus-visible {
  background: var(--bh-white);
  border-color: var(--bh-white);
  color: var(--bh-black);
}

.bh-outline-button[disabled] {
  opacity: 0.38;
  cursor: not-allowed;
}

.bh-archive--collection .bh-archive__title {
  max-width: 7ch;
  font-size: clamp(2.7rem, 5.6vw, 5.9rem);
  line-height: 0.88;
  text-transform: uppercase;
}

.bh-archive--collection .bh-archive__index {
  margin-bottom: 1.35rem;
  opacity: 0.34;
}

.bh-archive--collection .bh-archive__geography {
  margin-top: 1.55rem;
  opacity: 0.46;
}

.bh-archive--collection .bh-archive__details {
  gap: 0.9rem;
  margin-top: 2.5rem;
}

.bh-archive--collection .bh-outline-button {
  margin-top: 3rem;
}

.bh-archive__empty-note {
  margin: 3rem 0 0;
  max-width: 28ch;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  line-height: 1.8;
  text-transform: uppercase;
  opacity: 0.48;
}

.bh-manifesto,
.bh-home-objects,
.bh-home-notes,
.bh-home-cta {
  padding: clamp(3.5rem, 7vw, 6rem) var(--bh-gutter);
}

.bh-manifesto__inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.bh-manifesto__eyebrow,
.bh-home-objects__eyebrow,
.bh-home-notes__eyebrow,
.bh-home-cta__eyebrow {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.46;
}

.bh-manifesto__title,
.bh-home-objects__title,
.bh-home-notes__title,
.bh-home-cta__title {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(2.2rem, 4.9vw, 4.9rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.92;
}

.bh-manifesto__body {
  display: grid;
  gap: 2.5rem;
}

.bh-manifesto__copy {
  max-width: 38rem;
  font-size: clamp(1rem, 1.45vw, 1.15rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.76);
}

.bh-manifesto__notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.bh-manifesto__note,
.bh-home-note {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.bh-manifesto__note-label,
.bh-home-note__label {
  margin: 0 0 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.4;
}

.bh-manifesto__note-copy,
.bh-home-note__copy {
  margin: 0;
  max-width: 18ch;
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  line-height: 1.8;
  text-transform: uppercase;
  opacity: 0.72;
}

.bh-home-objects__header,
.bh-home-notes__header,
.bh-home-cta__inner {
  width: min(100%, 1220px);
  margin: 0 auto;
}

.bh-home-objects__title,
.bh-home-notes__title {
  max-width: 12ch;
}

.bh-home-objects__list {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  width: min(100%, 1220px);
  margin: clamp(2rem, 4vw, 3rem) auto 0;
}

.bh-home-object {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  min-height: 82vh;
  background: #020202;
}

.bh-home-object--reverse {
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
}

.bh-home-object--reverse .bh-home-object__media {
  order: 2;
}

.bh-home-object--reverse .bh-home-object__content {
  order: 1;
}

.bh-home-object__media {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #050505;
}

.bh-home-object__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 900ms cubic-bezier(0.19, 1, 0.22, 1);
}

@media (hover: hover) and (pointer: fine) {
  .bh-home-object__media:hover img {
    transform: scale(1.015);
  }
}

.bh-home-object__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.25rem, 5vw, 4.25rem);
}

.bh-home-object__index {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.38;
}

.bh-home-object__title {
  margin: 0;
  max-width: 7ch;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.89;
  text-transform: uppercase;
}

.bh-home-object__geography {
  margin: 1.4rem 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.48;
}

.bh-home-object__details {
  display: grid;
  gap: 0.8rem;
  margin-top: 2.2rem;
}

.bh-home-object__details p {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.72;
}

.bh-home-object .bh-outline-button {
  margin-top: 2.75rem;
  align-self: flex-start;
}

.bh-home-objects__empty {
  width: min(100%, 1220px);
  margin: 2.5rem auto 0;
}

.bh-home-objects__empty p {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.48;
}

.bh-home-notes__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  width: min(100%, 1220px);
  margin: clamp(2rem, 4vw, 3rem) auto 0;
}

.bh-home-cta {
  padding-top: clamp(4rem, 10vw, 8rem);
  padding-bottom: clamp(4rem, 10vw, 8rem);
}

.bh-home-cta__title {
  max-width: 8ch;
}

.bh-home-cta__copy {
  max-width: 28rem;
  margin: 1.5rem 0 0;
  font-size: 0.94rem;
  letter-spacing: 0.14em;
  line-height: 1.9;
  text-transform: uppercase;
  opacity: 0.66;
}

.bh-home-cta__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.bh-home-cta__secondary,
.bh-cart__continue {
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.52;
  transition: opacity 220ms ease;
}

.bh-home-cta__secondary:hover,
.bh-home-cta__secondary:focus-visible,
.bh-cart__continue:hover,
.bh-cart__continue:focus-visible {
  opacity: 1;
}

.bh-product-artifact__title {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.bh-product-artifact__details {
  display: grid;
  gap: 0.7rem;
  margin-top: clamp(2rem, 4vw, 2.75rem);
}

.bh-product-artifact__geography {
  margin: clamp(2rem, 5vw, 3rem) 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.5;
}

.bh-product-artifact__eyebrow {
  margin: 0 0 1.1rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.42;
}

.bh-product-artifact__purchase {
  margin-top: 2.4rem;
}

.bh-product-artifact__price {
  margin: 0 0 1.15rem;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.76;
}

.bh-product-form {
  margin-top: 0;
}

.bh-product-form__selector {
  margin-bottom: 1rem;
}

.bh-product-form__select {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  background: transparent;
  color: var(--bh-white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  appearance: none;
}

.bh-product-form__select option {
  background: var(--bh-black);
  color: var(--bh-white);
}

.bh-product-accordions {
  display: grid;
  gap: 0;
  margin-top: 2.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.bh-product-accordion {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.bh-product-accordion__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 0;
  border: 0;
  background: transparent;
  color: var(--bh-white);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: left;
}

.bh-product-accordion__toggle::after {
  content: "+";
  opacity: 0.62;
}

.bh-product-accordion__toggle[aria-expanded="true"]::after {
  content: "-";
}

.bh-product-accordion__content {
  padding: 0 0 1.1rem;
  max-width: 34rem;
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
}

.bh-product-accordion__content p {
  margin: 0;
}

.bh-cart {
  padding: calc(var(--bh-nav-offset) + 1rem) var(--bh-gutter) clamp(3rem, 7vw, 5rem);
}

.bh-cart__inner {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.bh-cart__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.5;
}

.bh-cart__title {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.bh-cart-form {
  margin-top: 2.5rem;
}

.bh-cart-lines {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.bh-cart-line {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: start;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.bh-cart-line__image {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #050505;
}

.bh-cart-line__image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  object-position: center;
}

.bh-cart-line__title {
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bh-cart-line__variant {
  margin: 0.75rem 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.5;
}

.bh-cart-line__controls {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.bh-cart-line__quantity {
  width: 72px;
  padding: 0.75rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: var(--bh-white);
}

.bh-cart-line__remove,
.bh-cart-line__price,
.bh-cart__subtotal span:first-child {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.68;
}

.bh-cart-line__price {
  padding-top: 0.2rem;
  white-space: nowrap;
}

.bh-cart__footer {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  padding-top: 2rem;
}

.bh-cart__subtotal {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.bh-cart__subtotal span:last-child {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bh-cart__actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.bh-cart__meta {
  display: grid;
  gap: 0.7rem;
}

.bh-cart__note {
  margin: 0;
  max-width: 28rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  line-height: 1.8;
  text-transform: uppercase;
  opacity: 0.46;
}

.bh-outline-button--filled {
  background: var(--bh-white);
  border-color: var(--bh-white);
  color: var(--bh-black);
}

.bh-outline-button--filled:hover,
.bh-outline-button--filled:focus-visible {
  background: transparent;
  color: var(--bh-white);
}

.bh-cart__empty {
  display: grid;
  gap: 1.5rem;
  justify-items: start;
  margin-top: 3rem;
}

.bh-cart__empty p {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.58;
}

::selection {
  background: rgba(255, 255, 255, 0.9);
  color: #000000;
}

@keyframes bh-page-enter {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media screen and (max-width: 980px) {
  .bh-manifesto__inner,
  .bh-manifesto__notes,
  .bh-home-object,
  .bh-home-object--reverse,
  .bh-home-notes__grid,
  .bh-archive__grid,
  .bh-cart-line,
  .bh-cart__footer {
    grid-template-columns: 1fr;
  }

  .bh-archive__grid {
    min-height: auto;
  }

  .bh-archive-panel {
    min-height: auto;
    scroll-snap-align: none;
  }

  .bh-archive--collection .bh-archive__text {
    transform: none;
  }

  .bh-archive__media img {
    aspect-ratio: 4 / 5;
  }

  .bh-archive--product .bh-archive__media {
    padding: 1rem var(--bh-gutter);
  }

  .bh-archive--product .bh-archive__media img {
    width: min(100%, 520px);
    max-height: 76vh;
    aspect-ratio: auto;
  }

  .bh-archive__content {
    padding: 2rem var(--bh-gutter) 3rem;
  }

  .bh-home-object {
    min-height: auto;
  }

  .bh-home-object__media img {
    aspect-ratio: 4 / 5;
  }

  .bh-cart-line__price {
    padding-top: 0;
  }
}

@media screen and (max-width: 640px) {
  .bh-site-header__inner {
    padding-top: 1.15rem;
    padding-bottom: 1.15rem;
  }

  .bh-site-header__time {
    display: none;
  }

  .bh-site-header__actions {
    gap: 0.75rem;
  }

  .bh-entry__statement p {
    letter-spacing: 0.18em;
  }

  .bh-product-form__select,
  .bh-outline-button,
  .bh-cart-line__quantity {
    font-size: 0.74rem;
  }

  .bh-manifesto,
  .bh-home-objects,
  .bh-home-notes,
  .bh-home-cta {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .bh-cart {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
