:root {
  --bc-green: #3f9f42;
  --bc-green-dark: #2f7d32;
  --bc-blue: #17324d;
  --bc-ink: #102b21;
  --bc-text: #21312a;
  --bc-muted: #617168;
  --bc-border: #dfeadc;
  --bc-soft: #f6faf4;
  --bc-surface: #ffffff;
  --bc-shadow: 0 16px 38px rgba(28, 64, 40, 0.06);
  --bc-container: 1240px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #f5f9f4;
  color: var(--bc-text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: var(--bc-green-dark);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--bc-blue);
}

img {
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.skip-link:focus {
  z-index: 100000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  background: var(--bc-blue);
  color: #fff;
}

.bc-container,
.site-header__inner,
.site-footer__inner {
  width: min(var(--bc-container), calc(100% - 32px));
  margin-inline: auto;
}

.site-main {
  min-height: 55vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid rgba(223, 234, 220, 0.9);
  box-shadow: 0 16px 42px rgba(28, 64, 40, 0.07);
}

.site-header__top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--bc-green);
  color: #fff;
  font-size: 13px;
}

.site-header__top .site-header__inner,
.site-header__inner--main,
.site-footer__inner--bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-header__top .site-header__inner {
  min-height: 32px;
}

.site-header__utility,
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-header__utility a,
.site-header__action {
  color: inherit;
  font-weight: 700;
}

.site-header__utility a:hover,
.site-header__utility a:focus {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header__main {
  background: #fff;
}

.site-header__inner--main {
  min-height: 76px;
}

.site-logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.site-logo img {
  display: block;
  width: auto;
  max-width: 176px;
  max-height: 58px;
}

.site-logo__text {
  color: var(--bc-blue);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0;
}

.site-header__products {
  flex: 0 0 auto;
}

@media (min-width: 1025px) {
  .site-header .bc-mega-menu__panel {
    position: fixed;
    top: 132px;
    left: 16px;
    right: 16px;
    width: auto;
    max-width: 1240px;
    margin-inline: auto;
  }
}

.bc-products-link,
.bc-button,
.site-header__products .bc-mega-menu__trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  background: var(--bc-green);
  color: #fff;
  font-weight: 900;
  line-height: 1;
}

.site-header__search {
  flex: 1 1 420px;
  min-width: 220px;
}

.site-header__search form,
.bc-mobile-menu__search form,
.bc-page--not-found form {
  display: flex;
  align-items: stretch;
  width: 100%;
}

.site-header__search input[type="search"],
.bc-mobile-menu__search input[type="search"],
.bc-page--not-found input[type="search"] {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--bc-border);
  border-radius: 8px 0 0 8px;
  padding: 0 14px;
  color: var(--bc-text);
}

.site-header__search button,
.bc-mobile-menu__search button,
.bc-page--not-found button {
  min-height: 44px;
  border: 0;
  border-radius: 0 8px 8px 0;
  padding: 0 16px;
  background: var(--bc-blue);
  color: #fff;
  font-weight: 800;
}

.site-header__cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--bc-border);
  border-radius: 8px;
  background: #fff;
  color: var(--bc-blue);
}

.site-header__cart-icon {
  position: relative;
  width: 19px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 4px 4px 6px 6px;
}

.site-header__cart-icon::before {
  position: absolute;
  top: -8px;
  left: 4px;
  width: 7px;
  height: 7px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  content: "";
}

.site-header__cart .bc-cart-count {
  position: absolute;
  top: -7px;
  right: -7px;
}

.site-header__mobile-cart {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--bc-border);
  border-radius: 8px;
  background: #fff;
  color: var(--bc-blue);
}

.site-header__mobile-cart-icon {
  position: relative;
  width: 19px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 4px 4px 6px 6px;
}

.site-header__mobile-cart-icon::before {
  position: absolute;
  top: -8px;
  left: 4px;
  width: 7px;
  height: 7px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  content: "";
}

.site-header__mobile-cart .bc-cart-count {
  position: absolute;
  top: -7px;
  right: -7px;
}

.bc-cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding-inline: 6px;
  border-radius: 999px;
  background: var(--bc-green);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.bc-mini-cart {
  position: fixed;
  z-index: 2100;
  inset: 0;
  display: none;
}

.bc-mini-cart.is-open {
  display: block;
}

.bc-mini-cart__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 28, 20, 0.34);
  backdrop-filter: blur(2px);
}

.bc-mini-cart__panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(92vw, 420px);
  height: 100%;
  overflow: hidden;
  background: #fff;
  box-shadow: -24px 0 70px rgba(15, 47, 28, 0.18);
}

.bc-mini-cart__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 18px;
  border-bottom: 1px solid var(--bc-border);
  background: #f8fcf6;
  color: var(--bc-blue);
}

.bc-mini-cart__header button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--bc-blue);
  font-size: 24px;
  line-height: 1;
}

.bc-mini-cart__body {
  flex: 1 1 auto;
  overflow: auto;
  padding: 18px;
}

.bc-mini-cart .woocommerce-mini-cart {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bc-mini-cart .woocommerce-mini-cart-item {
  position: relative;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 10px 12px;
  min-height: 96px;
  border: 1px solid var(--bc-border);
  border-radius: 8px;
  padding: 12px 12px 12px 98px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(28, 64, 40, 0.05);
}

.bc-mini-cart .woocommerce-mini-cart-item > a:not(.remove) {
  grid-column: 1 / -1;
  min-width: 0;
  color: var(--bc-blue);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

.bc-mini-cart .woocommerce-mini-cart-item img {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: contain;
  background: #f8fbf7;
}

.bc-mini-cart .woocommerce-mini-cart-item .remove {
  position: absolute;
  top: 8px;
  right: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #fff3f0;
  color: #b84232 !important;
  font-size: 18px;
  line-height: 1;
}

.bc-mini-cart .woocommerce-mini-cart-item .quantity {
  grid-column: 1 / -1;
  color: var(--bc-green-dark);
  font-size: 14px;
  font-weight: 900;
}

.bc-mini-cart .woocommerce-mini-cart__total {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin: 16px 0 0;
  border-top: 1px solid #e6efe3;
  padding-top: 16px;
  color: var(--bc-blue);
  font-weight: 900;
}

.bc-mini-cart .woocommerce-mini-cart__buttons {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
}

.bc-mini-cart .woocommerce-mini-cart__buttons .button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  background: var(--bc-green);
  color: #fff;
  font-weight: 900;
}

.bc-mini-cart .woocommerce-mini-cart__buttons .checkout {
  background: var(--bc-blue);
}

.bc-mini-cart .woocommerce-mini-cart__empty-message {
  margin: 0;
  border: 1px solid var(--bc-border);
  border-radius: 8px;
  padding: 18px;
  background: #f8fcf6;
  color: var(--bc-blue);
  font-weight: 800;
}

body.bc-mini-cart-open {
  overflow: hidden;
}

.site-footer__nav ul,
.bc-mobile-menu__nav ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header__menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--bc-border);
  border-radius: 8px;
  background: #fff;
}

.site-header__menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: var(--bc-blue);
}

.bc-mobile-menu {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: none;
}

.bc-mobile-menu.is-open {
  display: block;
}

.bc-mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 28, 20, 0.34);
  backdrop-filter: blur(2px);
}

.bc-mobile-menu__panel {
  position: relative;
  width: min(92vw, 390px);
  height: 100%;
  overflow: auto;
  padding: 0 18px 28px;
  background: #fff;
  box-shadow: 24px 0 70px rgba(15, 47, 28, 0.18);
}

.bc-mobile-menu__header {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  margin-inline: -18px;
  padding-inline: 18px;
  border-bottom: 1px solid var(--bc-border);
  background: rgba(255, 255, 255, 0.96);
  color: var(--bc-blue);
}

.bc-mobile-menu__header button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--bc-soft);
  color: var(--bc-blue);
  font-size: 24px;
  line-height: 1;
}

.bc-mobile-menu__section h2 {
  margin: 22px 0 10px;
  color: var(--bc-blue);
  font-size: 15px;
}

.bc-mobile-categories,
.bc-mobile-menu__nav ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bc-mobile-categories a,
.bc-mobile-menu__nav a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--bc-border);
  border-radius: 8px;
  background: #fff;
  color: var(--bc-blue);
  font-weight: 800;
}

body.bc-mobile-menu-open {
  overflow: hidden;
}

.bc-content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 34px;
  padding-block: 42px;
}

.bc-page,
.bc-entry,
.bc-archive-header {
  padding-block: 34px;
}

.bc-page__title,
.bc-entry__title,
.bc-archive-header h1 {
  margin: 0 0 18px;
  color: var(--bc-blue);
  font-size: 34px;
  line-height: 1.15;
}

.bc-entry {
  border-bottom: 1px solid var(--bc-border);
}

.bc-sidebar .widget,
.site-footer .widget {
  margin: 0 0 22px;
}

.site-footer {
  margin-top: 58px;
  background:
    radial-gradient(circle at 12% 0%, rgba(86, 169, 77, 0.18), transparent 32%),
    linear-gradient(135deg, #102b21 0%, #163724 54%, #0f271d 100%);
  color: #e9f3e5;
}

.site-footer a {
  color: #fff;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.15fr) repeat(3, minmax(180px, 0.8fr));
  gap: 42px;
  padding-block: 46px 38px;
}

.site-footer__brand p {
  max-width: 380px;
  margin: 18px 0 0;
  color: #cfe2c8;
  font-size: 15px;
  line-height: 1.7;
}

.site-footer .widget-title,
.site-footer h2,
.site-footer h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
}

.site-footer__column nav,
.site-footer__contact {
  display: grid;
  gap: 10px;
}

.site-footer__column p {
  margin: 0;
  color: #d9ebd5;
  line-height: 1.65;
}

.site-footer__column a {
  display: inline-flex;
  width: fit-content;
  color: #eaf6e6;
  font-weight: 700;
}

.site-footer__column a:hover,
.site-footer__column a:focus {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer__map-link {
  margin-top: 4px;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__inner--bottom {
  display: flex;
  padding-block: 18px;
  color: #cfe2c8;
  font-size: 14px;
}

.site-footer__nav ul {
  gap: 14px;
}

@media (max-width: 1024px) {
  .site-header__menu-toggle {
    display: inline-flex;
  }

  .site-header__products,
  .site-header__actions,
  .site-header__top {
    display: none;
  }

  .site-header__mobile-cart {
    display: inline-flex;
  }

  .site-header__inner--main {
    min-height: 72px;
  }

  .site-header__search {
    display: none;
  }

  .site-logo {
    margin-inline: auto;
  }

  .bc-content-layout {
    grid-template-columns: 1fr;
  }

  .site-footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .bc-container,
  .site-header__inner,
  .site-footer__inner {
    width: min(100% - 24px, var(--bc-container));
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-block: 34px 28px;
  }

  .site-footer__inner--bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .bc-page__title,
  .bc-entry__title,
  .bc-archive-header h1 {
    font-size: 28px;
  }

  .bc-mini-cart__body {
    padding: 14px;
  }

  .bc-mini-cart .woocommerce-mini-cart-item {
    display: block;
    min-height: 92px;
    padding: 12px 36px 12px 12px;
  }

  .bc-mini-cart .woocommerce-mini-cart-item > a:not(.remove) {
    display: block !important;
    min-height: 58px;
    padding-left: 70px;
    padding-top: 2px;
    font-size: 13px;
    line-height: 1.3;
  }

  .bc-mini-cart .woocommerce-mini-cart-item img {
    width: 56px;
    height: 56px;
  }

  .bc-mini-cart .woocommerce-mini-cart-item .quantity {
    display: block;
    margin-left: 70px;
    margin-top: 8px;
  }
}

/* Modern commerce shell refresh. */
body {
  background:
    linear-gradient(180deg, #f8fbf6 0, #eef6ed 330px, #f7faf6 760px);
  color: #1c2f27;
}

.site-header {
  border-bottom: 1px solid rgba(21, 55, 38, 0.08);
  box-shadow: 0 14px 36px rgba(21, 55, 38, 0.08);
}

.site-header__top {
  background: #278b3a;
  font-size: 12px;
  letter-spacing: 0;
}

.site-header__top .site-header__inner {
  min-height: 30px;
}

.site-header__inner--main {
  min-height: 78px;
  gap: 14px;
}

.site-logo img {
  max-width: 164px;
  max-height: 54px;
}

.site-header__products .bc-mega-menu__trigger,
.bc-products-link {
  min-height: 46px;
  border-radius: 7px;
  padding-inline: 18px 20px;
  background: #153d2b;
  box-shadow: 0 11px 22px rgba(21, 61, 43, 0.18);
  letter-spacing: 0;
}

.site-header__products .bc-mega-menu__trigger:hover,
.site-header__products .bc-mega-menu.is-open .bc-mega-menu__trigger,
.bc-products-link:hover {
  background: #2f943d;
  color: #fff;
}

.site-header__search {
  flex-basis: 470px;
}

.site-header__search form,
.bc-mobile-menu__search form,
.bc-page--not-found form {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(23, 50, 77, 0.1);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(21, 55, 38, 0.055);
}

.site-header__search input[type="search"],
.bc-mobile-menu__search input[type="search"],
.bc-page--not-found input[type="search"] {
  min-height: 46px;
  border: 0;
  border-radius: 0;
  padding-inline: 16px;
  background: transparent;
  color: #17324d;
  font-size: 14px;
}

.site-header__search input[type="search"]::placeholder,
.bc-mobile-menu__search input[type="search"]::placeholder {
  color: #84938b;
}

.site-header__search button,
.bc-mobile-menu__search button,
.bc-page--not-found button {
  min-height: 46px;
  border-radius: 0;
  padding-inline: 21px;
  background: #17324d;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.site-header__action {
  color: #17324d;
  font-size: 14px;
  font-weight: 900;
}

.site-header__cart,
.site-header__mobile-cart,
.site-header__menu-toggle {
  border-color: rgba(23, 50, 77, 0.11);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(21, 55, 38, 0.07);
}

.bc-cart-count {
  background: #2f943d;
  box-shadow: 0 6px 14px rgba(47, 148, 61, 0.24);
}

.site-header .bc-mega-menu__panel {
  border-radius: 10px;
  box-shadow: 0 28px 80px rgba(15, 47, 28, 0.18);
}

.bc-mobile-menu__panel,
.bc-mini-cart__panel {
  background: #fbfdf9;
}

.site-footer {
  margin-top: 70px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 24%),
    linear-gradient(135deg, #0c2c1f 0%, #123723 54%, #0a241a 100%);
}

.site-footer__inner {
  gap: 48px;
  padding-block: 50px 42px;
}

.site-footer__brand p,
.site-footer__column p,
.site-footer__inner--bottom {
  color: #d7e9d2;
}

.site-footer__column nav a,
.site-footer__contact a,
.site-footer__map-link {
  min-height: 28px;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
}

.site-footer__legal a,
.site-footer__legal button {
  border: 0;
  padding: 0;
  background: transparent;
  color: #d7e9d2;
  font: inherit;
  text-decoration: none;
  cursor: pointer;
}

.site-footer__legal a:hover,
.site-footer__legal button:hover {
  color: #fff;
  text-decoration: underline;
}

.bc-cookie-consent {
  position: fixed;
  z-index: 100000;
  right: 18px;
  bottom: 18px;
  left: 18px;
  max-width: 1180px;
  margin-inline: auto;
  border: 1px solid rgba(47, 125, 50, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 70px rgba(9, 39, 27, 0.24);
  color: #17324d;
  backdrop-filter: blur(12px);
}

.bc-cookie-consent[hidden],
.bc-cookie-consent__settings[hidden],
.bc-cookie-button[hidden] {
  display: none !important;
}

.bc-cookie-consent__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px 24px;
  padding: 18px;
}

.bc-cookie-consent__copy {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.bc-cookie-consent__icon {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: #eef8eb;
  font-size: 22px;
}

.bc-cookie-consent h2 {
  margin: 0 0 5px;
  color: #12304c;
  font-size: 18px;
  line-height: 1.2;
}

.bc-cookie-consent p {
  max-width: 720px;
  margin: 0;
  color: #52645a;
  font-size: 13px;
  line-height: 1.5;
}

.bc-cookie-consent a {
  color: #276b2a;
  font-weight: 800;
}

.bc-cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.bc-cookie-button {
  min-height: 42px;
  border: 1px solid #cfe2cb;
  border-radius: 8px;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.bc-cookie-button--secondary {
  background: #fff;
  color: #17324d;
}

.bc-cookie-button--primary {
  border-color: #267a32;
  background: #267a32;
  color: #fff;
}

.bc-cookie-consent__settings {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  border-top: 1px solid #e3ede0;
  padding-top: 14px;
}

.bc-cookie-consent__settings label {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  border: 1px solid #e1ece0;
  border-radius: 8px;
  padding: 11px;
  background: #f9fcf7;
  cursor: pointer;
}

.bc-cookie-consent__settings input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: #2f943d;
}

.bc-cookie-consent__settings strong,
.bc-cookie-consent__settings small {
  display: block;
}

.bc-cookie-consent__settings strong {
  font-size: 13px;
}

.bc-cookie-consent__settings small {
  margin-top: 3px;
  color: #66776d;
  font-size: 11px;
  line-height: 1.35;
}

.bc-cookie-consent__settings > p {
  grid-column: 1 / -1;
}

@media (max-width: 1024px) {
  .site-header__inner--main {
    min-height: 72px;
  }

  .site-logo img {
    max-width: 152px;
  }
}

@media (max-width: 640px) {
  body {
    background: linear-gradient(180deg, #f8fbf6 0, #eef6ed 320px, #f7faf6 680px);
  }

  .site-footer {
    margin-top: 34px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 28%),
      linear-gradient(135deg, #0b2c1f 0%, #123823 100%);
  }

  .site-footer__inner {
    width: 100%;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 20px 16px;
    padding: 26px 22px 22px;
  }

  .site-footer__brand {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: 94px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 18px;
  }

  .site-footer .site-logo--footer img {
    max-width: 92px;
    max-height: 42px;
  }

  .site-footer__brand p {
    max-width: none;
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
  }

  .site-footer__shopping {
    grid-column: 1;
    grid-row: 2;
  }

  .site-footer__hours {
    grid-column: 2;
    grid-row: 2;
  }

  .site-footer__contact {
    display: grid;
    grid-column: 1 / -1;
    grid-row: 3;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 6px 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 18px;
  }

  .site-footer__contact h2 {
    grid-column: 1 / -1;
  }

  .site-footer__contact p {
    grid-column: 1;
    grid-row: 2 / span 2;
  }

  .site-footer__contact a {
    grid-column: 2;
  }

  .site-footer h2,
  .site-footer h3,
  .site-footer .widget-title {
    margin-bottom: 9px;
    font-size: 15px;
  }

  .site-footer__column nav,
  .site-footer__contact {
    gap: 6px;
  }

  .site-footer__column p {
    font-size: 13px;
    line-height: 1.5;
  }

  .site-footer__column a {
    min-height: 24px;
    font-size: 13px;
    line-height: 1.35;
  }

  .site-footer__contact a[href^="mailto"] {
    overflow-wrap: anywhere;
  }

  .site-footer__bottom {
    background: rgba(4, 22, 15, 0.18);
  }

  .site-footer__inner--bottom {
    width: 100%;
    gap: 10px;
    padding: 14px 22px 16px;
    font-size: 12px;
    line-height: 1.35;
  }

  .site-footer__nav ul {
    flex-wrap: wrap;
    gap: 8px 12px;
  }

  .site-footer__legal {
    justify-content: flex-start;
    gap: 7px 12px;
  }

  .bc-cookie-consent {
    right: 10px;
    bottom: 10px;
    left: 10px;
    max-height: calc(100dvh - 20px);
    overflow-y: auto;
  }

  .bc-cookie-consent__inner {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 15px;
  }

  .bc-cookie-consent__icon {
    display: none;
  }

  .bc-cookie-consent h2 {
    font-size: 17px;
  }

  .bc-cookie-consent__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: stretch;
  }

  .bc-cookie-button--primary {
    grid-column: 1 / -1;
  }

  .bc-cookie-consent__settings {
    grid-template-columns: 1fr;
  }
}
