:root {
  --gb-white: #ffffff;
  --gb-grey: #b9b9b9;
  --gb-cream: #f6f1eb;
  --gb-cream-2: #f3eee9;
  --gb-sand: #e5dbd3;
  --gb-cocoa: #4e3724;
  --gb-green: #2c552b;
  --gb-ink: #052704;
  --gb-red: #f93232;
  --gb-blue: #0184bc;
  --gb-gold: #f0ac1a;
  --gb-font: "Andika", "Nunito", system-ui, sans-serif;
  --gb-ui: "Montserrat", "Andika", sans-serif;
  --gb-radius: 15px;
  --gb-btn: 30px;
  --gb-max: 1440px;
}

html { scroll-behavior: smooth; }
@media (min-width: 1101px) {
  html { zoom: 0.9; }
}

body.gb {
  background: var(--gb-cream);
  color: var(--gb-cocoa);
  font-family: var(--gb-font);
  font-size: 16px;
  line-height: 1.5;
}

body.gb a { color: var(--gb-ink); text-decoration: none; }
body.gb a:hover { color: var(--gb-green); }
body.gb img { max-width: 100%; }

.gb-wrap {
  width: min(var(--gb-max), calc(100% - 32px));
  margin: 0 auto;
}

body.gb #container {
  background: var(--gb-cream);
  position: relative;
  margin-bottom: 0;
}
body.gb > #container > header + main { min-height: 50vh; }
body.gb #content,
body.gb #column-left,
body.gb #column-right { padding-bottom: 0; }
body.gb .breadcrumb { display: none; }
body.gb h1 {
  text-transform: none !important;
  font-family: var(--gb-font);
  font-weight: 700;
  color: var(--gb-ink);
}
body.gb .btn-primary {
  background: var(--gb-green);
  border-color: var(--gb-green);
  color: #fff;
  border-radius: var(--gb-btn);
  font-family: var(--gb-font);
}
body.gb .btn-primary:hover { background: var(--gb-ink); border-color: var(--gb-ink); }

/* Header */
.gb-header {
  background: var(--gb-cream);
  position: sticky;
  top: 0;
  z-index: 40;
  overflow: visible;
}
.gb-header-inner {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.2vw, 24px);
  min-height: 100px;
  padding: 8px 0;
  flex-wrap: nowrap;
}
.gb-logo { flex: 0 0 auto; }
.gb-logo img { display: block; height: clamp(64px, 6.2vw, 90px); width: auto; object-fit: contain; background: transparent; mix-blend-mode: multiply; }
.gb-nav {
  display: flex;
  flex: 1 1 auto;
  justify-content: center;
  align-items: center;
  gap: clamp(8px, 1.8vw, 35px);
  flex-wrap: nowrap;
  min-width: 0;
}
.gb-nav a {
  color: var(--gb-ink);
  font-size: clamp(13px, 1.38vw, 22px);
  line-height: 1.2;
  white-space: nowrap;
}
.gb-nav a.is-active { font-weight: 700; }
.gb-search {
  margin-left: auto;
  flex: 0 0 auto;
}
.gb-search form {
  display: flex;
  align-items: center;
  border: 1px solid var(--gb-ink);
  border-radius: var(--gb-radius);
  overflow: hidden;
  background: transparent;
  margin: 0;
  width: clamp(132px, 15vw, 220px);
  height: 30px;
}
.gb-search input {
  border: 0;
  background: transparent;
  box-shadow: none;
  font-size: 12px;
  line-height: 28px;
  height: 30px;
  padding: 0 0 0 9px;
  color: var(--gb-ink);
  flex: 1 1 auto;
  min-width: 0;
  width: 0;
  font-family: var(--gb-font);
}
.gb-search input::placeholder { color: var(--gb-grey); opacity: 1; }
.gb-search button {
  border: 0;
  background: transparent;
  flex: 0 0 32px;
  width: 32px;
  height: 30px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gb-search button img { width: 14px; height: 14px; display: block; }
.gb-cart-toggle {
  background: transparent !important;
  border: 0 !important;
  color: var(--gb-ink) !important;
  box-shadow: none !important;
  font-size: 0 !important;
  padding: 0 !important;
  width: 32px;
  height: 32px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.gb-cart-toggle i { font-size: 22px; }
.gb-cart-count {
  position: absolute;
  right: -6px;
  bottom: -4px;
  min-width: 14px;
  height: 14px;
  padding: 0 3px;
  border-radius: 50%;
  background: var(--gb-green);
  color: #fff !important;
  font-size: 10px !important;
  line-height: 14px;
  text-align: center;
  font-family: var(--gb-ui);
}
.gb-cart-widget { margin-left: 12px; flex-shrink: 0; }

body.gb #alert {
  position: fixed;
  left: 50%;
  top: 80px;
  transform: translateX(-50%);
  z-index: 2000;
  width: auto;
  max-width: calc(100% - 32px);
  pointer-events: none;
}
body.gb #alert .alert {
  pointer-events: auto;
}
body.gb #alert .alert-success,
body.gb #alert .gb-toast {
  width: 391px;
  max-width: 100%;
  min-height: 87px;
  margin: 0;
  background: #118447;
  color: #fff;
  border: 0;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--gb-font);
  font-size: 18px;
  line-height: 30px;
  padding: 16px 24px;
  box-shadow: none;
}
body.gb #alert .alert-success i,
body.gb #alert .alert-success .btn-close {
  display: none;
}
body.gb #alert .alert-success a { color: #fff; }

.gb-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 110;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.gb-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(630px, 100%);
  background: #fff;
  z-index: 120;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  color: var(--gb-cocoa);
}
body.gb-cart-open { overflow: hidden; }
body.gb-cart-open .gb-cart-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
body.gb-cart-open .gb-cart-drawer { transform: none; }
.gb-cart-drawer-head {
  position: relative;
  flex: 0 0 109px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--gb-grey);
}
.gb-cart-drawer-head h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: var(--gb-cocoa);
  line-height: 1.2;
}
.gb-cart-back {
  position: absolute;
  left: 20px;
  top: 40px;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gb-cart-back img {
  width: 32px;
  height: 12px;
  transform: rotate(180deg);
  display: block;
}
.gb-cart-items {
  flex: 0 1 auto;
  min-height: 0;
  overflow: auto;
}
.gb-drawer-item {
  padding: 16px 40px 18px;
  border-bottom: 1px solid var(--gb-grey);
}
.gb-drawer-item-top {
  display: flex;
  align-items: center;
  gap: 18px;
}
.gb-drawer-thumb {
  width: 125px;
  height: 116px;
  flex: 0 0 125px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.gb-drawer-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.gb-drawer-qty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 126px;
  height: 36px;
  border: 1px solid var(--gb-cocoa);
  border-radius: 10px;
  padding: 0 8px;
  flex: 0 0 126px;
}
.gb-drawer-qty button {
  width: 24px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--gb-cocoa);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
.gb-drawer-qty span {
  min-width: 28px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}
.gb-drawer-unit {
  flex: 1 1 auto;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  color: var(--gb-cocoa);
}
.gb-drawer-remove {
  width: 50px;
  height: 36px;
  flex: 0 0 50px;
  border: 1px solid var(--gb-cocoa);
  border-radius: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.gb-drawer-remove img { width: 17px; height: 17px; display: block; }
.gb-drawer-item-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
}
.gb-drawer-item-bottom a {
  color: var(--gb-cocoa);
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}
.gb-drawer-item-bottom strong {
  flex: 0 0 auto;
  color: var(--gb-green);
  font-size: 20px;
  line-height: 24px;
  white-space: nowrap;
}
.gb-cart-drawer-foot {
  flex: 0 0 auto;
  padding: 20px 30px 16px;
}
.gb-cart-drawer-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.gb-cart-go {
  display: inline-flex;
  align-items: flex-start;
  gap: 5px;
  height: auto;
  min-height: 24px;
  padding: 0 0 4px;
  border: 0;
  border-bottom: 1px solid var(--gb-ink);
  background: transparent;
  color: var(--gb-ink);
  font-size: 16px;
  line-height: 24px;
  border-radius: 0;
}
.gb-cart-go img { width: 13px; height: 16px; display: block; }
.gb-cart-go:hover { color: var(--gb-green); }
.gb-cart-go--cta {
  align-items: center;
  min-height: 28px;
  padding: 0 0 2px;
  border: 0;
  border-bottom: 2px solid var(--gb-green);
  background: transparent;
  color: var(--gb-green);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}
.gb-cart-go--cta img {
  width: 14px;
  height: 17px;
  filter: none;
}
.gb-cart-go--cta:hover {
  background: transparent;
  color: var(--gb-ink);
  border-bottom-color: var(--gb-ink);
}
.gb-cart-go--empty { margin: 24px 40px 0; }
.gb-cart-sum {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--gb-ink);
  font-size: 18px;
  line-height: 24px;
  white-space: nowrap;
}
.gb-cart-sum strong {
  color: var(--gb-green);
  font-size: 24px;
  line-height: 24px;
}
.gb-cart-min {
  margin: 24px 0 0;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  color: var(--gb-cocoa);
}
.gb-cart-empty {
  margin: 40px 40px 0;
  text-align: center;
  font-size: 18px;
  color: var(--gb-cocoa);
}
.gb-cart-promo {
  flex: 0 0 auto;
  margin: auto 30px 30px;
  background: #f3eee9;
  border-radius: 15px;
  min-height: 140px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.gb-cart-promo img {
  width: 180px;
  height: 140px;
  object-fit: cover;
  flex: 0 0 180px;
  margin-left: -12px;
}
.gb-cart-promo p {
  margin: 0 24px 0 8px;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  color: var(--gb-cocoa);
}

.gb-burger {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--gb-ink);
  border-radius: 12px;
  background: transparent;
}
.gb-burger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--gb-ink);
}

/* Footer */
body.gb .gb-footer {
  position: relative;
  bottom: auto;
  background: var(--gb-ink);
  color: #fff;
  margin-top: 80px;
  padding: 23px 0 0;
  border: 0;
  width: 100%;
  min-height: 373px;
  display: flex;
  flex-direction: column;
  filter: none;
}
body.gb .gb-footer,
body.gb .gb-footer h4,
body.gb .gb-footer a,
body.gb .gb-footer a:hover,
body.gb .gb-footer p,
body.gb .gb-footer .gb-hours {
  color: #fff !important;
}
.gb-footer-grid {
  display: grid;
  grid-template-columns: 211px minmax(0, 1fr) 240px;
  column-gap: 89px;
  align-items: start;
  width: min(var(--gb-max), calc(100% - 32px));
  margin: 0 auto;
  flex: 1 0 auto;
}
.gb-footer-logo {
  display: block;
  width: 211px;
  height: 100px;
}
.gb-footer-logo img {
  display: block;
  width: 211px;
  height: 100px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: normal;
  filter: none;
  background: transparent;
  image-rendering: auto;
}
.gb-footer-cols {
  display: flex;
  gap: 160px;
  padding-top: 12px;
}
.gb-footer-cols h4 {
  font-family: var(--gb-font);
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 16px;
  line-height: 1.2;
}
.gb-footer-cols a {
  display: block;
  font-size: 20px;
  margin: 0 0 20px;
  line-height: 30px;
  font-weight: 400;
}
.gb-footer-cols a:last-child { margin-bottom: 0; }
.gb-footer-aside {
  width: 240px;
  text-align: center;
  padding-top: 16px;
  justify-self: end;
}
.gb-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 36px;
  padding: 0 18px;
  border: 1px solid #fff;
  border-radius: var(--gb-btn);
  color: #fff !important;
  width: 240px;
  max-width: 100%;
  font-size: 16px;
  font-family: var(--gb-font);
}
.gb-contact-btn img { width: 20px; height: 20px; display: block; }
.gb-hours {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 20px 0 0;
  font-size: 18px;
  line-height: 27px;
  font-family: var(--gb-font);
  white-space: pre;
}
.gb-hours img { width: 22px; height: 22px; display: block; flex-shrink: 0; }
.gb-soc {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 48px 0 11px;
}
.gb-soc a { line-height: 0; }
.gb-soc img { display: block; width: auto; height: auto; }
.gb-soc a:nth-child(1) img { width: 22px; height: 22px; }
.gb-soc a:nth-child(2) img { width: 24px; height: 24px; }
.gb-soc a:nth-child(3) img { width: 24px; height: 24px; }
.gb-pay {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
}
.gb-pay img { display: block; }
.gb-pay img:first-child { width: 60px; height: 19px; }
.gb-pay img:last-child { width: 38px; height: 24px; }
.gb-copy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-top: 0.5px solid #fff;
  margin-top: 32px;
  min-height: 68px;
  font-family: var(--gb-ui);
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  width: 100%;
}
.gb-copy img { width: 18px; height: 18px; display: block; }

/* Product card */
.product-thumb {
  background: #fff;
  border: 0.5px solid var(--gb-grey);
  border-radius: var(--gb-radius);
  padding: 0 18px 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 4px rgba(247, 243, 234, 0.25);
}
.product-thumb .image {
  background: #fff;
  overflow: hidden;
  height: 234px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-thumb .image img {
  width: auto;
  height: 234px;
  max-width: 100%;
  max-height: 234px;
  object-fit: contain;
}
.product-thumb .content { display: flex; flex-direction: column; flex: 1; }
.product-thumb h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 8px 0 12px;
  min-height: 48px;
  text-align: center;
  line-height: 24px;
}
.product-thumb h4 a { color: var(--gb-cocoa); }
.product-thumb .gb-card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}
.product-thumb .price { color: var(--gb-green); font-weight: 700; font-size: 24px; margin: 0; white-space: nowrap; }
.product-thumb form { margin: 0; }
.product-thumb .btn,
.product-thumb button.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 180px;
  height: 36px;
  background: #fff !important;
  color: var(--gb-green) !important;
  border: 1px solid var(--gb-green) !important;
  border-radius: var(--gb-btn);
  font-size: 14px;
  padding: 0 12px;
}
.product-thumb .btn img { width: 14px; height: 16px; }
.product-thumb .btn:hover { background: var(--gb-cream) !important; }
.product-thumb button.btn-primary:disabled,
.product-thumb button.btn-primary.disabled {
  opacity: 1;
  background: #fff !important;
  color: var(--gb-green) !important;
}
.product-thumb button.btn-primary .text-light,
.product-thumb button.btn-primary .fa-circle-notch,
.gb-buy-row .btn .text-light,
.gb-buy-row .btn .fa-circle-notch {
  color: var(--gb-green) !important;
}
.product-thumb button.btn-primary.is-added,
.product-thumb button.btn-primary.is-added:disabled,
.product-thumb button.btn-primary.is-added:hover {
  background: var(--gb-green) !important;
  color: #fff !important;
  border-color: var(--gb-green) !important;
}
.product-thumb button.btn-primary.is-added img {
  width: 15px;
  height: 15px;
  filter: none;
}

/* Home */
.gb-home { overflow: hidden; }
.gb-hero-bleed {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
}
.gb-hero-bleed .carousel {
  position: relative;
}
.gb-hero-bleed .carousel,
.gb-hero-bleed .carousel-inner,
.gb-hero-bleed .carousel-item {
  width: 100%;
}
.gb-hero-bleed .carousel-item .row,
.gb-hero-bleed .carousel-item [class*="col"] {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  flex: none !important;
}
.gb-hero-bleed .carousel-item img,
.gb-hero-bleed .carousel img {
  width: 100%;
  height: min(640px, 33.333vw);
  min-height: 220px;
  max-width: none;
  object-fit: cover;
  object-position: center;
  display: block;
}
body.gb .gb-hero-bleed .carousel-indicators {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 18px;
  top: auto;
  transform: translateX(-50%);
  z-index: 5;
  width: auto;
  margin: 0;
  padding: 0;
}
body.gb .gb-hero-bleed .carousel-indicators [data-bs-target],
body.gb .gb-hero-bleed .carousel-indicators button {
  box-sizing: border-box;
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  min-width: 10px;
  padding: 0;
  margin: 0 7px;
  border: 0 !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
  outline: none;
  box-shadow: none;
  border-radius: 50%;
  background: #b9b9b9;
  background-clip: padding-box;
  opacity: 1;
  text-indent: -999px;
  overflow: hidden;
}
body.gb .gb-hero-bleed .carousel-indicators [data-bs-target]:focus,
body.gb .gb-hero-bleed .carousel-indicators [data-bs-target]:focus-visible,
body.gb .gb-hero-bleed .carousel-indicators button:focus,
body.gb .gb-hero-bleed .carousel-indicators button:focus-visible {
  outline: none;
}
body.gb .gb-hero-bleed .carousel-indicators [data-bs-target].active,
body.gb .gb-hero-bleed .carousel-indicators button.active {
  background: #e8e8e8;
  box-shadow: inset 0 0 0 1px #b9b9b9;
}
.gb-hero-bleed .carousel-control-prev,
.gb-hero-bleed .carousel-control-next { display: none; }
.gb-cats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 400px));
  justify-content: center;
  gap: 70px;
  margin: 50px auto 60px;
}
.gb-cat {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  aspect-ratio: 400 / 260;
  background: var(--gb-grey);
  color: var(--gb-cocoa) !important;
  border-radius: 15px;
  font-size: 26px;
  font-weight: 700;
  padding: 0 12px 12px;
  overflow: hidden;
}
.gb-section { margin: 60px auto 24px; }
.gb-section h2, .gb-title {
  text-align: center;
  color: var(--gb-ink);
  font-size: 24px;
  margin: 0 0 35px;
  font-weight: 700;
}
.gb-top-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}
.gb-promo {
  display: grid;
  grid-template-columns: 729fr 680fr;
  gap: 31px;
  align-items: center;
  margin: 60px auto;
}
.gb-promo img {
  width: 100%;
  height: 328px;
  border-radius: var(--gb-radius);
  object-fit: cover;
}
.gb-promo p, .gb-promo-text {
  font-size: 18px;
  line-height: 30px;
  color: var(--gb-cocoa);
  margin: 0;
}
.gb-promo-text {
  min-height: 315px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.gb-promo-text br { display: block; content: ""; margin-top: 14px; }
.gb-ig { text-align: center; margin: 56px auto 72px; }
.gb-ig h2 { color: var(--gb-ink); font-size: 24px; font-weight: 700; margin-bottom: 14px; }
.gb-ig > p { color: var(--gb-cocoa); font-size: 18px; margin-bottom: 16px; }
.gb-ig-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 260px;
  height: 36px;
  background: var(--gb-cocoa);
  color: #fff !important;
  border-radius: 30px;
  font-size: 16px;
  margin-bottom: 24px;
}
.gb-ig-btn img { width: 16px; height: 16px; filter: brightness(0) invert(1); }
.gb-ig-grid {
  display: grid;
  grid-template-columns: 294fr 196fr 196fr 294fr 390fr;
  grid-template-rows: minmax(248px, 248fr) minmax(200px, 200fr);
  gap: 16px;
  height: 464px;
  margin-top: 24px;
  text-align: left;
}
.gb-ig-grid a {
  display: block;
  height: 100%;
  background: var(--gb-grey);
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}
.gb-ig-a { grid-column: 1; grid-row: 1 / span 2; }
.gb-ig-b { grid-column: 2; grid-row: 1; }
.gb-ig-c { grid-column: 3; grid-row: 1; }
.gb-ig-d { grid-column: 4; grid-row: 1 / span 2; }
.gb-ig-e { grid-column: 5; grid-row: 1; }
.gb-ig-f { grid-column: 2 / span 2; grid-row: 2; }
.gb-ig-g { grid-column: 5; grid-row: 2; }
.gb-ig-grid a > img:first-child {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gb-ig-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 32px;
  height: 32px;
  margin: -16px 0 0 -16px;
  z-index: 1;
}
.gb-ig-views {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-family: var(--gb-ui);
  font-size: 16px;
  z-index: 1;
}
.gb-ig-views img { width: 24px; height: 24px; }


body.gb #common-home.container,
body.gb #product-category.container,
body.gb #product-info.container,
body.gb #checkout-cart.container,
body.gb #checkout-checkout.container,
body.gb #cms-blog.container,
body.gb #information-partner.container {
  max-width: var(--gb-max);
  width: min(var(--gb-max), calc(100% - 32px));
  padding-left: 0;
  padding-right: 0;
}
body.gb #checkout-cart > .row {
  margin-left: 0;
  margin-right: 0;
}
body.gb #checkout-cart #content,
body.gb #product-info #content {
  padding-left: 0;
  padding-right: 0;
}
body.gb #product-info > .row {
  margin-left: 0;
  margin-right: 0;
}
body.gb #information-contact.container,
body.gb #information-information.container {
  max-width: var(--gb-max);
  width: min(var(--gb-max), calc(100% - 32px));
  padding-left: 0;
  padding-right: 0;
}

.gb-page-head { text-align: center; margin: 24px 0 32px; }
.gb-page-head h1 { color: var(--gb-ink); font-size: 22px; line-height: normal; margin-bottom: 12px; }
.gb-page-head p {
  max-width: 1028px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.45;
}

.gb-cart-page {
  padding-bottom: 24px;
}
.gb-cart-page .gb-page-head {
  margin: 24px 0 40px;
}
.gb-cart-page .gb-page-head h1 {
  font-size: 22px;
  line-height: normal;
  margin: 0 0 15px;
}
.gb-cart-page .gb-page-head p {
  max-width: 460px;
  font-size: 18px;
  line-height: 32px;
  color: var(--gb-cocoa);
}

/* Category */
.gb-cat-head {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 36px;
  margin: 24px 0 48px;
}
.gb-cat-head h1 {
  margin: 0;
  color: var(--gb-ink);
  font-size: 22px;
  font-weight: 700;
}
.gb-cat-select-wrap {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  max-width: 42%;
}
.gb-cat-select-wrap span {
  font-size: 12px;
  font-weight: 700;
  color: var(--gb-green);
  letter-spacing: 0.02em;
}
.gb-cat-select {
  width: 260px;
  max-width: 100%;
  height: 40px;
  border: 1.5px solid var(--gb-green);
  border-radius: var(--gb-radius);
  padding: 0 36px 0 14px;
  background: #fff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%232C552B' stroke-width='2' fill='none' stroke-linecap='round'/></svg>") no-repeat right 12px center;
  color: var(--gb-green);
  font-family: var(--gb-font);
  font-size: 16px;
  font-weight: 700;
  appearance: none;
  box-shadow: 0 2px 6px rgba(44, 85, 43, 0.1);
}
.gb-cat-desc {
  text-align: justify;
  text-justify: inter-word;
  max-width: 1028px;
  margin: 0 auto 40px;
  font-size: 20px;
  line-height: 1.35;
  color: var(--gb-cocoa);
}
.gb-cat-desc p {
  margin: 0 0 20px;
  font-size: inherit;
  line-height: inherit;
}
.gb-cat-desc p:last-child { margin-bottom: 0; }
.gb-cat-desc b, .gb-cat-desc strong { font-weight: 700; }
.gb-more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  height: 36px;
  margin: 40px auto 0;
  background: var(--gb-cocoa);
  color: #fff !important;
  border-radius: var(--gb-btn);
  font-size: 16px;
}
.gb-more:hover { background: var(--gb-ink); color: #fff !important; }
.gb-cat-related .gb-title { font-size: 22px; }
.gb-top-grid .product-thumb { height: 100%; }

/* Product */
.gb-pdp { padding-top: 24px; padding-bottom: 24px; }
.gb-pdp-top {
  display: grid;
  grid-template-columns: 625px minmax(0, 1fr);
  gap: 82px;
  align-items: start;
}
.gb-pdp-photo {
  display: block;
  width: 625px;
  max-width: 100%;
  aspect-ratio: 1;
  background: #fff;
  overflow: hidden;
}
.gb-pdp-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gb-pdp-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.gb-pdp-thumbs a {
  display: block;
  width: 72px;
  height: 72px;
}
.gb-pdp-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.gb-pdp-info { max-width: 720px; }
.gb-pdp-info h1 {
  color: var(--gb-cocoa) !important;
  font-size: 28px;
  line-height: 36px;
  font-weight: 700;
  margin: 0 0 26px;
  text-transform: none !important;
}
.gb-pdp-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 0 0 30px;
}
.gb-pdp-rating {
  display: flex;
  align-items: center;
  gap: 14px;
}
.gb-pdp-stars {
  display: flex;
  align-items: center;
  gap: 8px;
}
.gb-pdp-stars img { width: 18px; height: 18px; display: block; }
.gb-pdp-rating a {
  color: var(--gb-cocoa);
  font-size: 16px;
  line-height: 24px;
}
.gb-pdp-stock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gb-green);
  font-size: 14px;
  font-weight: 700;
  line-height: 15px;
}
.gb-pdp-stock img { width: 8px; height: 8px; display: block; }
.gb-pdp-stock.is-out { color: var(--gb-red); }
.gb-pdp-buy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.gb-pdp-buy-left {
  display: flex;
  align-items: center;
  gap: 46px;
}
.gb-pdp-qty { flex: 0 0 126px; }
.gb-pdp-qty input {
  width: 32px;
  min-width: 28px;
  border: 0;
  background: transparent;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  color: var(--gb-cocoa);
  padding: 0;
}
.gb-pdp-price {
  font-size: 26px;
  font-weight: 700;
  line-height: 24px;
  color: var(--gb-green);
}
.gb-pdp-price .price-old {
  font-size: 16px;
  color: var(--gb-grey);
  margin-right: 8px;
}
body.gb .gb-pdp-add.btn-primary,
body.gb .gb-pdp-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 260px;
  height: 36px;
  padding: 0 16px;
  background: #fff !important;
  color: var(--gb-green) !important;
  border: 1px solid var(--gb-green) !important;
  border-radius: var(--gb-btn);
  font-size: 14px;
  font-weight: 400;
}
body.gb .gb-pdp-add img { width: 14px; height: 16px; }
body.gb .gb-pdp-add:hover { background: var(--gb-cream) !important; }
body.gb .gb-pdp-add .text-light,
body.gb .gb-pdp-add .fa-circle-notch { color: var(--gb-green) !important; }
body.gb .gb-pdp-add.is-added,
body.gb .gb-pdp-add.is-added:disabled,
body.gb .gb-pdp-add.is-added:hover {
  background: var(--gb-green) !important;
  color: #fff !important;
  border-color: var(--gb-green) !important;
}
.gb-pdp-nutr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 36px;
  flex-wrap: wrap;
  margin: 0 0 30px;
  padding: 15px 0;
  border-top: 0.8px solid var(--gb-grey);
  border-bottom: 0.8px solid var(--gb-grey);
}
.gb-nutr-item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.gb-nutr-item img { width: 32px; height: 32px; display: block; flex: 0 0 32px; }
.gb-nutr-item span {
  min-width: 44px;
  font-size: 16px;
  line-height: 1.15;
  text-align: center;
  color: var(--gb-cocoa);
}
.gb-nutr-item:nth-child(5) span { min-width: 80px; }
.gb-pdp-text {
  margin: 0 0 20px;
  font-size: 18px;
  line-height: 1.45;
  color: var(--gb-cocoa);
}
.gb-pdp-text b { font-weight: 700; }
.gb-pdp-related .gb-title,
.gb-pdp-reviews .gb-title {
  font-size: 22px;
  margin-bottom: 35px;
}
.gb-review-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
}
.gb-review-card {
  background: #fff;
  border-radius: var(--gb-radius);
  min-height: 180px;
  padding: 15px;
}
.gb-review-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.gb-review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gb-green);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 60px;
}
.gb-review-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  min-width: 0;
}
.gb-review-stars {
  display: flex;
  gap: 6px;
}
.gb-review-stars img { width: 22px; height: 22px; display: block; }
.gb-review-author {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  color: var(--gb-cocoa);
  text-align: right;
}
.gb-review-card p {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  color: var(--gb-cocoa);
}
.gb-review-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 25px 0 0;
}
.gb-review-dots a,
.gb-review-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gb-grey);
  display: block;
}
.gb-review-dots .is-active { background: var(--gb-cocoa); }
.gb-review-bottom {
  display: grid;
  grid-template-columns: 508px minmax(0, 1fr);
  gap: 27px;
  align-items: center;
  margin-top: 40px;
}
.gb-review-form {
  background: #fff;
  width: 508px;
  max-width: 100%;
  min-height: 557px;
  border-radius: var(--gb-radius);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  padding: 24px 24px 28px;
}
.gb-review-form h3 {
  margin: 0 0 28px;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--gb-ink);
}
.gb-review-field { margin-bottom: 20px; }
.gb-review-field label {
  display: block;
  margin: 0 0 8px 10px;
  font-size: 16px;
  color: var(--gb-cocoa);
}
.gb-review-field label span { color: var(--gb-red); }
.gb-review-form .form-control {
  width: 100%;
  height: 36px;
  border: 1px solid var(--gb-grey);
  border-radius: var(--gb-radius);
  padding: 0 12px;
  font-size: 12px;
  color: var(--gb-cocoa);
}
.gb-review-form textarea.form-control {
  height: 216px;
  padding: 10px 12px;
  resize: vertical;
}
.gb-review-form .form-control::placeholder { color: var(--gb-grey); }
.gb-rate-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.gb-rate-row > span { font-size: 14px; color: var(--gb-cocoa); }
.gb-rate-dots { display: flex; align-items: center; gap: 14px; }
.gb-rate-dot { position: relative; width: 12px; height: 12px; margin: 0; cursor: pointer; }
.gb-rate-dot input {
  position: absolute;
  inset: 0;
  opacity: 0;
  margin: 0;
  cursor: pointer;
}
.gb-rate-dot span {
  display: block;
  width: 12px;
  height: 12px;
  border: 1px solid var(--gb-cocoa);
  border-radius: 50%;
  background: #fff;
}
.gb-rate-dot input:checked + span {
  background: var(--gb-green);
  border-color: var(--gb-green);
}
.gb-review-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 36px;
  margin-top: 8px;
  background: var(--gb-green);
  color: #fff;
  border: 0;
  border-radius: var(--gb-btn);
  font-size: 14px;
}
.gb-review-submit:hover { background: var(--gb-ink); color: #fff; }
.gb-review-art img {
  width: 100%;
  height: auto;
  display: block;
}
.gb-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--gb-grey);
  border-radius: var(--gb-btn);
  overflow: hidden;
  gap: 0;
}
.gb-qty input { width: 48px; text-align: center; border: 0; background: transparent; }
.gb-qty button[data-qty] {
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: var(--gb-ink);
}
.gb-stock { color: var(--gb-green); font-weight: 700; }
.gb-product-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin: 8px 0 12px; }
.gb-buy-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.gb-buy-row .btn { border-radius: var(--gb-btn); background: #fff !important; color: var(--gb-ink) !important; border: 1px solid var(--gb-grey) !important; }
.gb-cart-item { display: flex; gap: 12px; align-items: center; }
.gb-cart-item img { width: 72px; height: 72px; object-fit: cover; border-radius: 10px; }
.gb-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gb-green) !important;
  border: 0 !important;
  color: #fff !important;
  border-radius: var(--gb-btn);
  font-size: 16px;
  font-weight: 400;
  height: 36px;
  width: 350px;
  max-width: 100%;
  margin: 28px auto 16px;
}
.gb-checkout-btn:hover { background: var(--gb-ink) !important; color: #fff !important; }
.gb-continue-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gb-green) !important;
  border-radius: var(--gb-btn);
  color: var(--gb-green) !important;
  background: #fff !important;
  font-size: 16px;
  font-weight: 700;
  height: 36px;
  width: 350px;
  max-width: 100%;
  margin: 0 auto;
}
.gb-continue-btn:hover { background: var(--gb-cream) !important; color: var(--gb-green) !important; }
.gb-checkout-note { font-size: 13px; margin-top: 16px; }
.gb-confirm-thumb { width: 48px; height: 48px; object-fit: cover; border-radius: 8px; margin-right: 8px; }
.gb-recipient { margin: 0 0 24px; }
.gb-np { margin: 0 0 24px; }
.gb-stats {
  display: flex;
  justify-content: center;
  gap: 48px 90px;
  margin: 8px 0 40px;
  flex-wrap: wrap;
}
.gb-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gb-green);
  text-align: center;
}
.gb-stat img { width: 55px; height: 55px; flex: 0 0 55px; }
.gb-stat strong {
  display: block;
  font-size: 40px;
  line-height: 1;
  font-weight: 400;
}
.gb-stat span { display: block; font-size: 18px; line-height: 32px; }
.gb-about .gb-title { font-size: 18px; }
.gb-partner .gb-title {
  color: var(--gb-green);
  font-size: 20px;
  font-weight: 700;
  text-align: left;
  margin: 0 0 24px;
}
.gb-partner-points .gb-reason h3 {
  color: var(--gb-green);
  font-size: 20px;
  font-weight: 700;
}
.gb-delivery h2 { font-size: 28px; color: var(--gb-green); margin: 0 0 14px; font-weight: 700; }
.gb-delivery h2::before { content: "• "; }
.gb-about-hero { width: 100%; border-radius: var(--gb-radius); margin-bottom: 24px; }
.gb-about-note {
  max-width: 1440px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 18px;
  line-height: 1.45;
}
.gb-reasons {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px 70px;
  margin-bottom: 48px;
}
.gb-reason { display: flex; gap: 16px; align-items: center; }
.gb-reason img {
  width: 72px;
  height: 72px;
  padding: 12px;
  box-sizing: border-box;
  object-fit: contain;
  background: #fff;
  border: 1.5px solid var(--gb-cocoa);
  border-radius: 15px;
  flex: 0 0 72px;
}
.gb-reason h3 { font-size: 18px; margin: 0 0 4px; color: var(--gb-cocoa); }
.gb-del-pay h3 { color: var(--gb-green); font-size: 20px; font-weight: 700; }
.gb-reason p { margin: 0; font-size: 16px; line-height: 24px; }
img.gb-review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  background: none;
  padding: 0;
}
.gb-about-reviews { margin-bottom: 0; }
.gb-del-top { margin-bottom: 32px; }
.gb-del-top h2 {
  font-size: 28px;
  color: var(--gb-green);
  font-weight: 700;
}
.gb-del-layout { display: grid; grid-template-columns: minmax(440px, 460px) 1fr; gap: 40px; align-items: start; }
.gb-del-card {
  display: flex;
  gap: 16px;
  align-items: center;
  background: var(--gb-cream-2);
  border-radius: var(--gb-radius);
  padding: 10px;
  margin: 12px 0;
  box-shadow: 0 4px 4px rgba(0,0,0,.12);
}
.gb-del-card img {
  width: 72px;
  height: 72px;
  padding: 10px;
  box-sizing: border-box;
  object-fit: contain;
  background: #fff;
  border: 1.5px solid var(--gb-cocoa);
  border-radius: 15px;
  flex: 0 0 72px;
}
.gb-del-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
}
.gb-nowrap { white-space: nowrap; }
.gb-delivery .gb-del-top p,
.gb-delivery ul li {
  font-size: 18px;
  line-height: 1.45;
  margin: 0 0 20px;
}
.gb-del-photo { width: 100%; border-radius: var(--gb-radius); object-fit: contain; }
.gb-checkout legend { color: var(--gb-ink); }
#checkout-payment .btn-primary {
  width: 100%;
  min-height: 44px;
  font-size: 18px;
  border-radius: var(--gb-btn);
}
body.gb .pagination .page-link { border-radius: var(--gb-btn); color: var(--gb-cocoa); }
body.gb .pagination .active .page-link { background: var(--gb-cocoa); border-color: var(--gb-cocoa); }

/* Cart page */
.gb-cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 500px;
  gap: 46px;
  align-items: start;
}
.gb-cart-box,
.gb-cart-summary,
.gb-cart-empty-card {
  background: #fff;
  border-radius: var(--gb-radius);
}
.gb-cart-box { padding: 0 30px 24px; }
.gb-cart-cols {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 70px 126px 88px 16px;
  gap: 12px 16px;
  align-items: center;
}
.gb-cart-head {
  padding: 20px 0;
  border-bottom: 1px solid var(--gb-grey);
  font-size: 20px;
  line-height: 32px;
  color: var(--gb-cocoa);
}
.gb-cart-row {
  padding: 16px 0;
  border-bottom: 1px solid var(--gb-grey);
}
.gb-cart-product {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}
.gb-cart-thumb {
  flex: 0 0 120px;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gb-cart-thumb img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}
.gb-cart-info { min-width: 0; }
.gb-cart-name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--gb-cocoa);
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}
.gb-cart-weight,
.gb-cart-option {
  font-size: 16px;
  line-height: 24px;
  color: var(--gb-cocoa);
}
.gb-cart-stock {
  margin-top: 8px;
  color: #118447;
  font-size: 16px;
  line-height: 24px;
}
.gb-cart-stock.is-out { color: var(--gb-red); }
.gb-cart-price {
  font-size: 16px;
  line-height: 24px;
  color: var(--gb-cocoa);
}
.gb-cart-line-sum {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: right;
  color: var(--gb-cocoa);
}
.gb-page-x {
  width: 16px;
  height: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  line-height: 0;
}
.gb-page-x img { width: 16px; height: 16px; display: block; }
.gb-cart-ship {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gb-cream-2);
  border-radius: 15px;
  height: 90px;
  margin-top: 24px;
  overflow: hidden;
}
.gb-cart-ship img {
  width: 150px;
  height: 112px;
  object-fit: contain;
  margin-top: -8px;
  flex: 0 0 150px;
  mix-blend-mode: multiply;
}
.gb-cart-ship-copy { flex: 1; min-width: 0; padding-right: 16px; }
.gb-cart-ship-copy p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 24px;
  color: var(--gb-cocoa);
}
.gb-cart-ship-bar {
  height: 12px;
  max-width: 425px;
  background: #e3e1e1;
  border-radius: 15px;
  overflow: hidden;
}
.gb-cart-ship-bar i {
  display: block;
  height: 100%;
  background: var(--gb-green);
  border-radius: 15px;
}
.gb-cart-summary { padding: 20px 30px 24px; }
.gb-cart-summary h2 {
  margin: 0 0 20px;
  text-align: center;
  font-size: 20px;
  line-height: 32px;
  font-weight: 700;
  color: var(--gb-ink);
}
.gb-cart-summary-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 18px;
  font-size: 20px;
  line-height: 32px;
  color: var(--gb-cocoa);
}
.gb-cart-summary-total {
  margin: 0 0 8px;
  padding-top: 30px;
  border-top: 1px solid var(--gb-grey);
  font-weight: 700;
}
.gb-cart-summary-total strong {
  color: var(--gb-green);
  font-size: 24px;
  font-weight: 700;
}
.gb-cart-min-note {
  margin: 16px 0 12px;
  text-align: center;
  color: var(--gb-cocoa);
  font-size: 16px;
  line-height: 24px;
}
.gb-cart-empty-card {
  max-width: 500px;
  margin: 0 auto;
  padding: 40px 24px;
  text-align: center;
}
.gb-cart-empty-card p {
  margin: 0 0 20px;
  font-size: 18px;
}
.gb-cart-related .gb-title { font-size: 22px; }

/* Forms */
.gb-card {
  background: #fff;
  border-radius: var(--gb-radius);
  padding: 24px;
  box-shadow: 0 4px 4px rgba(0,0,0,.12);
}
.gb-input, body.gb .form-control, body.gb .form-select {
  border: 1px solid var(--gb-grey);
  border-radius: var(--gb-radius);
  background: #fff;
  min-height: 36px;
}
.gb-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin: 24px 0 48px;
}
.gb-mini {
  background: var(--gb-cream-2);
  border: 0.5px solid var(--gb-ink);
  border-radius: var(--gb-radius);
  padding: 12px 12px 16px;
  text-align: center;
  min-height: 165px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gb-mini h3 { color: var(--gb-ink); font-size: 20px; font-weight: 700; margin: 0 0 12px; }
.gb-mini p { margin: 0 0 auto; font-size: 16px; line-height: 26px; }
.gb-mini-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: auto 0 16px !important;
}
.gb-mini-phone img { width: 22px; height: 22px; }
.gb-soc-row {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
}
.gb-soc-row img { width: 22px; height: 22px; display: block; }
.gb-btn-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  min-width: 199px;
  padding: 0 16px;
  border: 1px solid var(--gb-ink);
  border-radius: var(--gb-btn);
  color: var(--gb-ink) !important;
  font-size: 16px;
  background: transparent;
  margin-top: auto;
}
.gb-btn-line:hover { background: var(--gb-sand); }
.gb-mail-link {
  color: var(--gb-blue) !important;
  border-bottom: 1px solid var(--gb-blue);
  font-size: 16px;
  line-height: 24px;
  margin-top: auto;
}
.gb-contact-main {
  display: grid;
  grid-template-columns: minmax(0, 561px) minmax(0, 572px);
  gap: 96px;
  align-items: start;
  justify-content: center;
  margin-bottom: 48px;
}
.gb-contact-form {
  padding: 20px 50px 28px;
}
.gb-contact-form h2,
.gb-partner-form h2 {
  text-align: center;
  font-size: 22px;
  color: var(--gb-ink);
  margin: 0 0 8px;
}
.gb-contact-form > p,
.gb-partner-form > p {
  text-align: center;
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 24px;
}
.gb-contact-form textarea.form-control { min-height: 216px; }
.gb-contact-aside {
  background: var(--gb-cream-2);
  border-radius: var(--gb-radius);
  box-shadow: 0 4px 4px rgba(0,0,0,.25);
  min-height: 524px;
  overflow: hidden;
  position: relative;
}
.gb-contact-checks {
  list-style: none;
  margin: 24px 0 0 36px;
  padding: 0;
}
.gb-contact-checks li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 18px;
  line-height: 32px;
  color: var(--gb-ink);
}
.gb-contact-checks img { width: 24px; height: 24px; }
.gb-contact-art {
  display: block;
  width: 100%;
  margin-top: 8px;
}
.gb-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.gb-partner-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 20px;
}
.gb-partner-why { margin-top: 8px; }
.gb-partner-sols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.gb-partner-shot {
  background: #fff;
  border: 0.5px solid var(--gb-grey);
  border-radius: var(--gb-radius);
  box-shadow: 0 4px 4px rgba(247,243,234,.25);
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  overflow: hidden;
}
.gb-partner-shot img {
  max-height: 270px;
  width: auto;
  max-width: 48%;
  object-fit: contain;
}
.gb-partner-shot--boxes img { max-width: 24%; max-height: 230px; }
.gb-partner-form {
  max-width: 1010px;
  margin: 48px auto;
  padding: 30px 40px 36px;
}

.gb-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 2100;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.gb-modal.is-open { display: flex; }
.gb-modal-box {
  background: #fff;
  border-radius: var(--gb-radius);
  padding: 32px 28px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.16);
}
.gb-modal-box h2 { color: var(--gb-green); font-size: 22px; margin: 0 0 8px; }
.gb-modal-box p { margin: 0 0 20px; }
.gb-np-list { max-height: 180px; overflow: auto; background: var(--gb-cream); border-radius: 8px; margin-top: 4px; }
.gb-np-list button { display: block; width: 100%; text-align: left; background: none; border: 0; padding: 8px 12px; }
.gb-np-list button:hover { background: var(--gb-sand); }
.gb-review-initial {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gb-sand);
  color: var(--gb-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
}

.gb-legal { max-width: 920px; margin: 0 auto 48px; color: var(--gb-cocoa); font-size: 18px; line-height: 1.45; }
.gb-legal p { margin: 0 0 20px; }
.gb-legal h1 { text-align: center; color: var(--gb-cocoa); font-size: 22px; margin: 24px 0 24px; }
.gb-legal h2, .gb-legal h3 { color: var(--gb-ink); font-size: 18px; margin-top: 28px; }
.gb-legal a { color: var(--gb-blue); text-decoration: underline; }

.gb-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px 28px;
}
.gb-blog-card h2 {
  font-size: 20px;
  line-height: 1.3;
  margin: 8px 0 10px;
  color: var(--gb-cocoa);
}
.gb-blog-card h2 a { color: var(--gb-cocoa); }
.gb-blog-card p {
  font-size: 16px;
  line-height: 24px;
  margin: 0 0 12px;
}
.gb-blog-photo {
  display: block;
  border-radius: var(--gb-radius);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--gb-sand);
}
.gb-blog-photo img { width: 100%; height: 100%; object-fit: cover; }
.gb-blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  color: var(--gb-grey);
  font-size: 14px;
}
.gb-blog-views { display: flex; align-items: center; gap: 6px; }
.gb-blog-views img {
  width: 20px;
  height: 12px;
  filter: brightness(0) saturate(100%) invert(22%) sepia(24%) saturate(600%) hue-rotate(340deg);
}
.gb-blog-more {
  color: var(--gb-cocoa) !important;
  text-decoration: underline;
}
.gb-blog-empty { text-align: center; margin: 48px 0; font-size: 18px; }
.gb-article h1 {
  text-align: center;
  font-size: 22px;
  margin: 24px 0 32px;
  color: var(--gb-cocoa);
}
.gb-article-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 40px;
  align-items: start;
  margin-bottom: 24px;
}
.gb-article-top img {
  width: 100%;
  border-radius: var(--gb-radius);
  object-fit: cover;
}
.gb-article-body { font-size: 18px; line-height: 32px; }
.gb-article-body img { max-width: 100%; border-radius: var(--gb-radius); }
.gb-article-meta { margin: 16px 0 8px; max-width: 280px; }

.gb-checkout { padding-bottom: 40px; }
.gb-co-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: start;
}
.gb-checkout fieldset {
  background: #fff;
  border: 0;
  border-radius: var(--gb-radius);
  box-shadow: 0 4px 4px rgba(0,0,0,.12);
  padding: 24px;
  margin-bottom: 24px;
  min-width: 0;
}
.gb-checkout legend,
.gb-co-title {
  color: var(--gb-ink);
  font-size: 22px;
  font-weight: 700;
  float: none !important;
  display: block;
  width: auto;
  max-width: 100%;
  padding: 0;
  margin: 0 0 16px;
  line-height: 1.25;
  position: static;
  border: 0;
}
.gb-checkout .form-label,
.gb-np .form-label {
  font-size: 16px;
  margin-bottom: 6px;
  color: var(--gb-cocoa);
}
.gb-newsletter {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0 16px;
}
.gb-newsletter .form-label {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--gb-cocoa);
}
.gb-newsletter .form-check-input {
  width: 18px;
  height: 18px;
  margin: 0;
  flex: 0 0 18px;
  accent-color: var(--gb-green);
}
body.gb .gb-checkout .form-control,
body.gb .gb-checkout .form-select,
body.gb .gb-np .form-control,
body.gb .gb-np .form-select,
body.gb .gb-checkout .input-group .form-control,
body.gb .gb-checkout #input-payment-method {
  min-height: 48px;
  font-size: 18px;
  line-height: 1.3;
  padding: 10px 14px;
}
body.gb .gb-checkout .input-group {
  font-size: 18px;
}
body.gb .gb-checkout .input-group-text {
  font-size: 18px;
  padding: 10px 14px;
  min-height: 48px;
  display: flex;
  align-items: center;
}
body.gb .gb-checkout .input-group .btn {
  font-size: 18px;
  min-height: 48px;
  padding: 10px 18px;
}
#modal-payment .modal-title,
#modal-payment .modal-body p {
  font-size: 18px;
}
#modal-payment .form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
#modal-payment .form-check input[type="radio"] {
  width: 18px;
  height: 18px;
  margin: 0;
  flex: 0 0 18px;
  accent-color: var(--gb-green);
}
#modal-payment .form-check label,
#modal-payment .form-check-label {
  font-size: 18px;
  line-height: 1.35;
}
#shipping-address,
#checkout-shipping-address {
  display: none !important;
}
.gb-recipient-opts,
.gb-np-head {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  margin-bottom: 16px;
}
.gb-recipient-opts { margin-bottom: 0; }
.gb-recipient-opts label,
.gb-np-head label {
  font-size: 18px;
  line-height: 1.3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.gb-recipient-opts input[type="radio"],
.gb-np-head input[type="radio"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--gb-green);
}
.gb-checkout .table {
  --bs-table-bg: transparent;
  border-color: var(--gb-sand);
}
.gb-checkout .table th,
.gb-checkout .table td { color: var(--gb-cocoa); }
.gb-checkout .table th:last-child,
.gb-checkout .table td:last-child,
.gb-checkout .table .text-end {
  white-space: nowrap;
}
.gb-liqpay {
  max-width: 560px;
  margin: 24px auto 48px;
  background: #fff;
  border-radius: var(--gb-radius);
  box-shadow: 0 4px 4px rgba(0,0,0,.12);
  padding: 40px 28px;
  text-align: center;
}
.gb-liqpay img {
  display: block;
  width: 190px;
  height: auto;
  margin: 0 auto 20px;
}
.gb-liqpay h1 {
  font-size: 22px;
  color: var(--gb-ink);
  margin: 0 0 12px;
}
.gb-liqpay p { font-size: 18px; line-height: 1.45; margin: 0 0 16px; }
.gb-liqpay-sum { color: var(--gb-green); }
.gb-liqpay .btn-primary {
  min-height: 48px;
  font-size: 18px;
  padding: 10px 28px;
}
.gb-co-side #checkout-confirm,
.gb-co-side #checkout-shipping-method {
  background: #fff;
  border-radius: var(--gb-radius);
  box-shadow: 0 4px 4px rgba(0,0,0,.12);
  padding: 24px;
}

@media (max-width: 1100px) {
  .gb-nav { display: none; }
  .gb-header.is-open { z-index: 90; }
  .gb-header.is-open .gb-nav {
    display: flex;
    position: absolute;
    left: 0; right: 0; top: 72px;
    background: #fff;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    z-index: 80;
  }
  .gb-header.is-open .gb-nav::before {
    content: "Меню";
    font-size: 14px;
    font-weight: 700;
    color: var(--gb-green);
    padding: 0 4px 4px;
  }
  .gb-header.is-open .gb-nav a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    font-size: 18px;
    line-height: 1.3;
    white-space: normal;
    padding: 14px 16px;
    background: var(--gb-cream-2);
    border: 1px solid var(--gb-sand);
    border-radius: 12px;
  }
  .gb-header.is-open .gb-nav a.is-active {
    background: var(--gb-sand);
    border-color: var(--gb-green);
  }
  .gb-burger { display: block; }
  .gb-header-inner { flex-wrap: wrap; }
  .gb-search { flex: 1 0 100%; order: 10; margin: 0 0 8px; }
  .gb-cart-widget { margin-left: auto; }
  .gb-search form { width: 100%; height: 40px; }
  .gb-search input {
    font-size: 16px;
    line-height: 38px;
    height: 40px;
    padding: 0 0 0 12px;
  }
  .gb-search button { height: 40px; }
  .gb-cats, .gb-promo, .gb-pdp-top, .gb-contact-grid, .gb-two, .gb-reasons, .gb-del-layout, .gb-contact-main, .gb-partner-sols, .gb-co-layout, .gb-article-top, .gb-blog-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gb-partner-points { grid-template-columns: 1fr 1fr; }
  .gb-cat-select-wrap { position: static; transform: none; max-width: 100%; width: 100%; margin-top: 16px; align-items: stretch; }
  .gb-cat-select { width: 100%; }
  .gb-cat-head { flex-direction: column; margin-bottom: 40px; }
  .gb-contact-main { gap: 32px; }
  .gb-contact-form { padding: 20px; }
  .gb-partner-shot { height: auto; min-height: 220px; flex-wrap: wrap; }
  .gb-partner-shot img, .gb-partner-shot--boxes img { max-width: 45%; }
  .gb-footer-grid { grid-template-columns: 1fr; column-gap: 24px; }
  .gb-footer-cols { flex-wrap: wrap; gap: 40px 48px; }
  .gb-footer-aside { width: auto; justify-self: start; }
  .gb-contact-btn { width: 100%; }
  .gb-cats { gap: 16px; }
  .gb-top-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gb-ig-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    height: auto;
  }
  .gb-ig-a, .gb-ig-b, .gb-ig-c, .gb-ig-d, .gb-ig-e, .gb-ig-f, .gb-ig-g {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 3 / 4;
  }
  .gb-pdp-photo { width: 100%; }
  .gb-review-track { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
  .gb-review-bottom { grid-template-columns: 1fr; }
  .gb-review-form { width: 100%; min-height: 0; }
}
@media (max-width: 640px) {
  .gb-logo img { height: 52px; }
  .gb-cat { font-size: 18px; }
  .gb-header-inner { min-height: 64px; gap: 10px; }
  .gb-footer-grid, .gb-cats, .gb-promo, .gb-pdp-top, .gb-cart-layout, .gb-contact-grid, .gb-two, .gb-reasons, .gb-del-layout, .gb-top-grid, .gb-contact-main, .gb-partner-sols, .gb-partner-points, .gb-co-layout, .gb-article-top, .gb-blog-grid {
    grid-template-columns: 1fr;
  }
  .gb-stat strong { font-size: 32px; }
  .gb-partner-shot img, .gb-partner-shot--boxes img { max-width: 100%; }
  .gb-footer-logo,
  .gb-footer-logo img { width: 180px; height: 85px; }
  .gb-footer-cols { padding-top: 8px; }
  .gb-footer-cols h4 { font-size: 20px; }
  .gb-footer-cols a { font-size: 16px; margin-bottom: 12px; }
  .gb-soc { margin-top: 28px; }
  .gb-hero-bleed .carousel-item img,
  .gb-hero-bleed .carousel img { height: 200px; }
  .gb-promo img { height: 220px; }
  .gb-promo-text { min-height: 0; }
  .gb-ig-grid { grid-template-columns: 1fr 1fr; }
  .product-thumb .gb-card-row { flex-direction: column; align-items: stretch; }
  .product-thumb .btn { width: 100%; }
  .gb-buy-row { flex-direction: column; align-items: stretch; }
  .gb-review-track { grid-template-columns: 1fr; }
  .gb-review-art { display: none; }
  body.gb .gb-pdp-add { width: 100% !important; }
  .gb-pdp-buy-left { width: 100%; justify-content: space-between; gap: 16px; }
  .gb-pdp-info h1 { font-size: 22px; line-height: 30px; }
  .gb-drawer-item { padding: 16px; }
  .gb-drawer-item-top { flex-wrap: wrap; gap: 10px; }
  .gb-drawer-thumb { width: 96px; height: 96px; flex-basis: 96px; }
  .gb-drawer-unit { flex: 0 0 auto; text-align: left; }
  .gb-cart-drawer-head { flex-basis: 80px; }
  .gb-cart-back { top: 24px; }
  .gb-cart-drawer-foot { padding: 16px 16px 0; }
  .gb-cart-promo { margin: auto 16px 24px; }
  .gb-cart-drawer-row { flex-direction: column; align-items: flex-start; }
  .gb-cart-promo img { width: 140px; flex-basis: 140px; }
  .gb-cart-go--empty { margin: 24px 16px 0; }
  .gb-cart-box { padding: 0 16px 16px; }
  .gb-cart-head { display: none; }
  .gb-cart-row {
    grid-template-columns: minmax(0, 1fr) 16px;
    grid-template-areas:
      "product x"
      "qty sum";
  }
  .gb-cart-product { grid-area: product; }
  .gb-cart-price { display: none; }
  .gb-cart-row .gb-drawer-qty { grid-area: qty; width: 110px; flex-basis: 110px; }
  .gb-cart-line-sum { grid-area: sum; text-align: left; }
  .gb-page-x { grid-area: x; align-self: start; margin-top: 8px; }
  .gb-cart-thumb,
  .gb-cart-thumb img { width: 88px; height: 88px; flex-basis: 88px; }
  .gb-cart-ship { height: auto; min-height: 90px; padding: 8px 8px 8px 0; }
  .gb-cart-ship img { width: 110px; flex-basis: 110px; height: 90px; }
  .gb-cart-summary { padding: 20px 16px 24px; }
  body.gb .gb-checkout .input-group {
    flex-wrap: wrap;
    gap: 8px;
  }
  body.gb .gb-checkout .input-group-text { display: none; }
  body.gb .gb-checkout .input-group > .form-control,
  body.gb .gb-checkout #input-payment-method {
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
  }
  body.gb .gb-checkout .input-group > .btn {
    flex: 1 1 100%;
    width: 100%;
    margin-left: 0;
  }
}


