:root {
  --gsb-forest-950: #0f2d20;
  --gsb-forest-900: #133827;
  --gsb-forest-800: #184a33;
  --gsb-forest-700: #1f6043;
  --gsb-forest-600: #2d7a57;
  --gsb-gold-500: #d7a138;
  --gsb-gold-400: #e9bf6c;
  --gsb-ink-900: #1b231f;
  --gsb-ink-700: #3f4d47;
  --gsb-ink-500: #60716a;
  --gsb-paper-100: #ffffff;
  --gsb-paper-50: #ffffff;
  --gsb-white: #ffffff;
  --gsb-line: #d8dfd8;
  --gsb-danger: #8d2f27;
  --gsb-success: #1e704a;
  --gsb-radius-xl: 26px;
  --gsb-radius-lg: 18px;
  --gsb-radius-md: 12px;
  --gsb-radius-sm: 10px;
  --gsb-shadow-soft: 0 14px 36px rgba(18, 42, 31, 0.08);
  --gsb-shadow-card: 0 18px 40px rgba(17, 37, 28, 0.12);
  --gsb-container: 1240px;
  --gsb-ease: cubic-bezier(0.2, 0.75, 0.2, 1);
  --gsb-desktop-ui-zoom: 1.12;
  --gsb-loop-media-height: clamp(220px, 20vw, 288px);
  --gsb-sticky-header-offset: 154px;
  --gsb-header-surface: rgba(255, 255, 255, 0.96);
  --gsb-font-base: "Manrope", sans-serif;
  --gsb-font-display: "Manrope", sans-serif;
}


*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gsb-ink-900);
  font-family: var(--gsb-font-base);
  font-size: 16px;
  line-height: 1.55;
  background: var(--gsb-paper-50);
}

body.is-menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.gsb-container {
  width: min(var(--gsb-container), calc(100% - 36px));
  margin-inline: auto;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.gsb-site-main {
  overflow: clip;
}

.gsb-site-main-404 {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at top left, rgba(214, 160, 56, 0.12), transparent 22%),
    radial-gradient(circle at bottom right, rgba(20, 54, 37, 0.08), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f7f4ed 100%);
}

.gsb-site-main-404::before,
.gsb-site-main-404::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 999px;
  pointer-events: none;
}

.gsb-site-main-404::before {
  top: 7%;
  right: -120px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(31, 90, 61, 0.12), transparent 70%);
}

.gsb-site-main-404::after {
  left: -90px;
  bottom: 10%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(233, 189, 100, 0.16), transparent 70%);
}

.gsb-404 {
  position: relative;
  z-index: 1;
  padding: clamp(32px, 6vw, 72px) 0 clamp(40px, 8vw, 96px);
}

.gsb-404__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(250px, 0.6fr);
  gap: 28px;
  align-items: start;
}

.gsb-404__copy {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 4vw, 48px);
  border-radius: 26px;
  border: 1px solid rgba(20, 54, 37, 0.1);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.07), transparent 18%),
    linear-gradient(135deg, #143625, #1c4f36);
  color: #fff;
  box-shadow: 0 22px 54px rgba(13, 31, 22, 0.16);
}

.gsb-404__copy::before,
.gsb-404__copy::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.gsb-404__copy::before {
  top: -60px;
  right: -20px;
  width: 190px;
  height: 190px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 70%);
}

.gsb-404__copy::after {
  left: 55%;
  bottom: -120px;
  width: 260px;
  height: 180px;
  background: radial-gradient(circle, rgba(233, 189, 100, 0.2), transparent 70%);
}

.gsb-404__eyebrow {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.gsb-404__copy h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 10ch;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.gsb-404__copy > p {
  position: relative;
  z-index: 1;
  margin: 16px 0 0;
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.7;
}

.gsb-404__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.gsb-404__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.gsb-404__button:hover,
.gsb-404__button:focus-visible {
  transform: translateY(-1px);
}

.gsb-404__button--primary {
  border-color: transparent;
  background: linear-gradient(180deg, #e9bd64, #d6a038);
  color: #102316;
  box-shadow: 0 14px 28px rgba(214, 160, 56, 0.24);
}

.gsb-404__search {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 12px;
  margin-top: 22px;
  max-width: 680px;
}

.gsb-404__search input {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font: inherit;
}

.gsb-404__search input::placeholder {
  color: rgba(255, 255, 255, 0.66);
}

.gsb-404__search input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(233, 189, 100, 0.24);
}

.gsb-404__aside {
  align-self: stretch;
  padding-top: 10px;
}

.gsb-404__panel-label {
  margin: 0 0 14px;
  color: var(--gsb-suite-forest-900);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gsb-404__list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(20, 54, 37, 0.12);
}

.gsb-404__list a {
  display: grid;
  gap: 3px;
  padding: 16px 2px;
  border-bottom: 1px solid rgba(20, 54, 37, 0.12);
  color: var(--gsb-suite-forest-900);
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease;
}

.gsb-404__list a:hover,
.gsb-404__list a:focus-visible {
  color: #143625;
  transform: translateX(3px);
}

.gsb-404__list span {
  font-weight: 800;
}

.gsb-404__list small {
  color: var(--gsb-suite-ink-700);
  font-size: 13px;
}

@media (max-width: 960px) {
  .gsb-404__hero {
    grid-template-columns: 1fr;
  }

  .gsb-404__aside {
    padding-top: 0;
  }
}

@media (max-width: 640px) {
  .gsb-404 {
    padding-top: 24px;
  }

  .gsb-404__copy {
    padding: 20px;
    border-radius: 22px;
  }

  .gsb-404__copy h1 {
    font-size: 2.2rem;
  }

  .gsb-404__search {
    flex-direction: column;
  }

  .gsb-404__button {
    width: 100%;
  }
}

.gsb-kicker {
  margin: 0 0 8px;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--gsb-forest-700);
}

.gsb-section {
  padding: clamp(36px, 6vw, 74px) 0;
}

.gsb-section-head {
  margin-bottom: clamp(20px, 3.4vw, 34px);
}

.gsb-section-head h2 {
  margin: 0;
  max-width: 22ch;
  font-family: var(--gsb-font-display);
  font-weight: 800;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.06;
  color: #173f2d;
}

.gsb-section-head-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-inline: auto;
  gap: 8px;
}

.gsb-section-head-centered h2 {
  max-width: none;
}

body.home .gsb-section-head.gsb-section-head-centered h2 {
  max-width: none;
}

body.home .gsb-kicker {
  margin: 0 0 6px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

body.home .gsb-section {
  padding: clamp(24px, 4vw, 54px) 0;
}

body.home .gsb-section-head {
  margin-bottom: clamp(14px, 2.2vw, 24px);
}

body.home .gsb-section-head h2 {
  max-width: 18ch;
  font-size: clamp(1.45rem, 2.1vw, 2.25rem);
  line-height: 1.05;
}

.gsb-home-promo-banner {
  padding-top: 0;
  padding-bottom: clamp(8px, 1.4vw, 16px);
}

.gsb-home-promo-banner .gsb-container {
  width: min(var(--gsb-container), calc(100% - 36px));
}

.gsb-home-promo-banner-frame {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 2752 / 1536;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #eef4ef;
  box-shadow: none;
  text-decoration: none;
  color: inherit;
}

.gsb-home-promo-banner-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(247, 250, 245, 0.95) 0%, rgba(247, 250, 245, 0.88) 28%, rgba(247, 250, 245, 0.45) 52%, rgba(247, 250, 245, 0.08) 72%, rgba(247, 250, 245, 0) 100%),
    linear-gradient(180deg, rgba(9, 35, 24, 0.08) 0%, rgba(9, 35, 24, 0) 24%, rgba(9, 35, 24, 0.12) 100%);
  pointer-events: none;
}

.gsb-home-promo-banner-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.gsb-home-promo-banner-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.35s var(--gsb-ease);
}

.gsb-home-promo-banner-frame:hover .gsb-home-promo-banner-media img,
.gsb-home-promo-banner-frame:focus-visible .gsb-home-promo-banner-media img {
  transform: scale(1.01);
}

.gsb-home-promo-banner-copy {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: min(48%, 560px);
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(28px, 4vw, 52px);
}

.gsb-home-promo-banner-kicker {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(16, 74, 49, 0.9);
}

.gsb-home-promo-banner-title {
  margin: 0;
  font-family: var(--gsb-font-display);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  color: #123d2b;
  text-wrap: balance;
}

.gsb-home-promo-banner-text {
  margin: 0;
  max-width: 34ch;
  font-size: clamp(0.98rem, 1.3vw, 1.18rem);
  line-height: 1.55;
  color: rgba(13, 38, 28, 0.88);
}

.gsb-home-promo-banner-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  background: var(--gsb-forest-700);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 16px 30px rgba(17, 65, 43, 0.18);
  transition:
    transform 0.24s var(--gsb-ease),
    background-color 0.24s var(--gsb-ease),
    box-shadow 0.24s var(--gsb-ease);
}

.gsb-home-promo-banner-frame:hover .gsb-home-promo-banner-cta,
.gsb-home-promo-banner-frame:focus-visible .gsb-home-promo-banner-cta {
  transform: translateY(-1px);
  background: var(--gsb-forest-800);
  box-shadow: 0 18px 34px rgba(17, 65, 43, 0.22);
}

.gsb-section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 14px;
}

.gsb-link-all {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--gsb-forest-700);
}

body.home .gsb-section-head-centered .gsb-link-all {
  margin-top: 2px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-decoration: none;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
}

.gsb-link-all:hover {
  color: var(--gsb-forest-900);
}

body.home .gsb-section-head-centered .gsb-link-all:hover,
body.home .gsb-section-head-centered .gsb-link-all:focus-visible {
  color: var(--gsb-forest-900);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.gsb-empty-state {
  border: 1px dashed rgba(24, 74, 51, 0.34);
  border-radius: var(--gsb-radius-md);
  background: #fff;
  padding: 16px;
}

.gsb-empty-state p {
  margin: 0;
  color: var(--gsb-ink-700);
}

.gsb-search-empty {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: clamp(18px, 2.4vw, 26px) 0 0;
  border-top: 1px solid rgba(24, 74, 51, 0.12);
  background: transparent;
  box-shadow: none;
}

.gsb-search-empty__kicker {
  margin: 0;
  color: var(--gsb-forest-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gsb-search-empty h2 {
  margin: 0;
  max-width: 13ch;
  color: var(--gsb-ink-900);
  font-family: var(--gsb-font-display);
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  line-height: 0.97;
  letter-spacing: -0.04em;
}

.gsb-search-empty__lead {
  margin: 0;
  max-width: 54ch;
  color: var(--gsb-ink-700);
  font-size: 0.98rem;
  line-height: 1.65;
}

.gsb-search-empty__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  max-width: 760px;
}

.gsb-search-empty__form input[type="search"] {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(24, 74, 51, 0.14);
  border-radius: 999px;
  padding: 0 18px;
  background: #fff;
  color: var(--gsb-ink-900);
  font: inherit;
  box-shadow: none;
}

.gsb-search-empty__form input[type="search"]::placeholder {
  color: var(--gsb-ink-500);
}

.gsb-search-empty__form input[type="search"]:focus {
  outline: 2px solid rgba(24, 74, 51, 0.18);
  outline-offset: 2px;
}

.gsb-search-empty__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: center;
}

.gsb-search-empty__actions .gsb-btn {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--gsb-forest-800);
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: none;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.gsb-search-empty__actions .gsb-btn:hover,
.gsb-search-empty__actions .gsb-btn:focus-visible {
  transform: none;
  filter: none;
  color: var(--gsb-forest-900);
}

.gsb-search-empty__suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
}

.gsb-search-empty__suggestions a {
  display: inline-block;
  padding: 0;
  color: var(--gsb-forest-800);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition:
    transform 0.2s var(--gsb-ease),
    color 0.2s var(--gsb-ease);
}

.gsb-search-empty__suggestions a::after {
  content: "/";
  margin-left: 14px;
  color: rgba(24, 74, 51, 0.28);
}

.gsb-search-empty__suggestions a:hover,
.gsb-search-empty__suggestions a:focus-visible {
  transform: none;
  color: var(--gsb-forest-900);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.gsb-search-empty__suggestions a:last-child::after {
  content: none;
}

.gsb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.2s var(--gsb-ease),
    filter 0.2s var(--gsb-ease),
    box-shadow 0.2s var(--gsb-ease),
    background-color 0.2s var(--gsb-ease),
    color 0.2s var(--gsb-ease),
    opacity 0.2s var(--gsb-ease);
}

.gsb-btn:hover,
.gsb-btn:focus-visible {
  transform: translateY(-2px);
}

.gsb-btn:active {
  transform: translateY(0) scale(0.985);
}

.gsb-btn:focus-visible {
  outline: 2px solid rgba(24, 74, 51, 0.48);
  outline-offset: 2px;
}

.gsb-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    110deg,
    transparent 8%,
    rgba(255, 255, 255, 0.22) 40%,
    transparent 72%
  );
  transform: translateX(-140%);
  transition: transform 0.6s var(--gsb-ease);
}

.gsb-btn:hover::after,
.gsb-btn:focus-visible::after {
  transform: translateX(140%);
}

.gsb-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--gsb-forest-700), var(--gsb-forest-900));
  box-shadow: 0 10px 22px rgba(18, 64, 44, 0.28);
}

.gsb-btn-primary:hover,
.gsb-btn-primary:focus-visible {
  filter: brightness(1.05);
  box-shadow: 0 14px 24px rgba(18, 64, 44, 0.34);
}

.gsb-btn-secondary {
  color: #fff;
  background: linear-gradient(135deg, var(--gsb-gold-500), #b58428);
  box-shadow: 0 10px 22px rgba(157, 113, 28, 0.3);
}

.gsb-btn-secondary:hover,
.gsb-btn-secondary:focus-visible {
  filter: brightness(1.04);
}

.gsb-btn-outline {
  color: var(--gsb-forest-800);
  border: 1px solid rgba(24, 74, 51, 0.28);
  background: #fff;
}

.gsb-btn-outline:hover,
.gsb-btn-outline:focus-visible {
  border-color: var(--gsb-forest-800);
}

.gsb-btn-outline-light {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: transparent;
}

.gsb-btn-link {
  color: var(--gsb-forest-700);
  border: 0;
  background: transparent;
  padding-inline: 4px;
  min-height: 40px;
}

.gsb-btn-small {
  min-height: 38px;
  padding-inline: 14px;
  background: rgba(24, 74, 51, 0.08);
  color: var(--gsb-forest-800);
}

/* Header */
.gsb-header-strip {
  background: var(--gsb-forest-900);
  color: rgba(255, 255, 255, 0.94);
}

.gsb-header-strip-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.gsb-strip-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
  mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    #000 4%,
    #000 96%,
    transparent
  );
}

.gsb-strip-track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
}

.gsb-strip-benefits {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 800;
  white-space: nowrap;
}

.gsb-strip-benefits li {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding-right: clamp(18px, 4vw, 40px);
}

.gsb-strip-benefits li::after {
  content: "";
  margin-left: calc(clamp(18px, 4vw, 40px) / 2);
  width: 4px;
  height: 4px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
}

@media (prefers-reduced-motion: reduce) {
  .gsb-strip-track {
    animation: none;
    width: 100%;
    justify-content: center;
  }

  .gsb-strip-benefits[aria-hidden="true"],
  .gsb-strip-benefits[data-strip-clone="true"] {
    display: none;
  }
}

.gsb-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: var(--gsb-header-surface);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(18, 58, 40, 0.12);
}

.gsb-header-main {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
}

.gsb-brand-link img {
  width: min(240px, 44vw);
}

.gsb-header-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  min-height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(24, 74, 51, 0.22);
  background: #fff;
  overflow: hidden;
}

.gsb-header-search input[type="search"] {
  width: 100%;
  min-width: 0;
  border: 0;
  padding: 0 18px;
  min-height: 46px;
  background: transparent;
  color: var(--gsb-ink-900);
  font-size: 0.94rem;
}

.gsb-header-search input[type="search"]:focus {
  outline: none;
}

.gsb-header-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 46px;
  border: 0;
  padding: 0 18px;
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gsb-forest-700), var(--gsb-forest-900));
  cursor: pointer;
  transition:
    transform 0.2s var(--gsb-ease),
    filter 0.2s var(--gsb-ease),
    box-shadow 0.2s var(--gsb-ease),
    opacity 0.2s var(--gsb-ease);
}

.gsb-search-button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.gsb-search-button-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.gsb-search-button-label {
  display: inline-flex;
  align-items: center;
}

.gsb-header-search button:hover,
.gsb-header-search button:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 10px 18px rgba(17, 52, 36, 0.22);
}

.gsb-header-search button:active {
  transform: translateY(0) scale(0.985);
}

.gsb-header-search button:focus-visible {
  outline: 2px solid rgba(24, 74, 51, 0.48);
  outline-offset: 2px;
}

.gsb-header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.gsb-header-action {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 56px;
  min-width: 94px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  padding: 2px 4px;
  color: var(--gsb-forest-800);
  transition:
    transform 0.2s var(--gsb-ease),
    color 0.2s var(--gsb-ease),
    background-color 0.2s var(--gsb-ease),
    opacity 0.2s var(--gsb-ease);
}

.gsb-header-action:hover,
.gsb-header-action:focus-visible {
  transform: translateY(-1px);
  color: var(--gsb-forest-900);
  background: rgba(24, 74, 51, 0.06);
}

.gsb-header-action:active {
  transform: translateY(0);
}

.gsb-header-action:focus-visible {
  outline: 2px solid rgba(24, 74, 51, 0.46);
  outline-offset: 2px;
}

.gsb-header-action-icon {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  position: relative;
  color: var(--gsb-forest-800);
}

.gsb-header-action-icon svg {
  width: 28px;
  height: 28px;
}

.gsb-header-action-title {
  font-size: 0.77rem;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 700;
  line-height: 1.1;
  color: currentColor;
  text-align: center;
}

.gsb-header-action-sub {
  display: none;
}

.gsb-header-cart-count {
  position: absolute;
  top: -4px;
  right: -6px;
  transform: translate(38%, -28%);
  min-width: 19px;
  height: 19px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.66rem;
  font-weight: 800;
  color: #fff;
  background: var(--gsb-gold-500);
}

.gsb-header-whatsapp {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 16px;
  color: #fff;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  background: linear-gradient(135deg, #1a6e48, #0f422c);
  transition:
    transform 0.2s var(--gsb-ease),
    filter 0.2s var(--gsb-ease),
    box-shadow 0.2s var(--gsb-ease);
}

.gsb-header-whatsapp:hover,
.gsb-header-whatsapp:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 10px 18px rgba(15, 56, 38, 0.28);
}

.gsb-header-whatsapp:active {
  transform: translateY(0) scale(0.985);
}

.gsb-header-whatsapp:focus-visible {
  outline: 2px solid rgba(24, 74, 51, 0.46);
  outline-offset: 2px;
}

.gsb-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  appearance: none;
  border-radius: 12px;
  border: 1px solid rgba(24, 74, 51, 0.22);
  background: #fff;
  padding: 8px;
  cursor: pointer;
}

.gsb-menu-toggle-line {
  display: block;
  width: 24px;
  height: 2.5px;
  margin: 3px auto;
  border-radius: 20px;
  background: var(--gsb-forest-800);
  transition: transform 0.2s var(--gsb-ease), opacity 0.2s var(--gsb-ease);
  transform-origin: center;
}

body.is-menu-open .gsb-menu-toggle-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

body.is-menu-open .gsb-menu-toggle-line:nth-child(2) {
  opacity: 0;
}

body.is-menu-open .gsb-menu-toggle-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.gsb-header-nav {
  border-top: 1px solid rgba(24, 74, 51, 0.1);
}

.gsb-header-nav-inner {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.gsb-nav {
  display: flex;
  width: 100%;
  justify-content: center;
}

.gsb-departments {
  position: relative;
}

.gsb-departments-toggle {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(24, 74, 51, 0.22);
  background: #fff;
  padding: 0 14px;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--gsb-forest-800);
  cursor: pointer;
  transition:
    transform 0.2s var(--gsb-ease),
    box-shadow 0.2s var(--gsb-ease),
    border-color 0.2s var(--gsb-ease),
    background-color 0.2s var(--gsb-ease);
}

.gsb-departments-toggle:hover,
.gsb-departments-toggle:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(24, 74, 51, 0.34);
  box-shadow: 0 10px 18px rgba(17, 52, 36, 0.11);
}

.gsb-departments-toggle:active {
  transform: translateY(0) scale(0.985);
}

.gsb-departments-toggle:focus-visible {
  outline: 2px solid rgba(24, 74, 51, 0.44);
  outline-offset: 2px;
}

.gsb-departments-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  width: 290px;
  border-radius: 14px;
  border: 1px solid rgba(24, 74, 51, 0.16);
  background: #fff;
  box-shadow: var(--gsb-shadow-card);
  z-index: 30;
}

.gsb-departments-menu ul {
  list-style: none;
  margin: 0;
  padding: 8px;
  display: grid;
  gap: 2px;
}

.gsb-departments-menu li a,
.gsb-departments-menu li span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  border-radius: 8px;
  padding: 0 10px;
  font-size: 0.86rem;
  color: var(--gsb-ink-900);
}

.gsb-departments-menu li a:hover,
.gsb-departments-menu li a[aria-current="page"] {
  background: rgba(24, 74, 51, 0.08);
  color: var(--gsb-forest-800);
}

.gsb-departments-menu li a small {
  font-size: 0.72rem;
  color: var(--gsb-ink-500);
}

.gsb-departments-empty {
  color: var(--gsb-ink-500);
}

.gsb-menu,
.gsb-mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gsb-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 22px;
}

.gsb-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  color: #29463a;
}

.gsb-menu a:hover,
.gsb-menu .current-menu-item > a {
  color: var(--gsb-forest-800);
}

.gsb-header-checkout {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border-radius: 999px;
  padding: 0 14px;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--gsb-gold-500), #b58429);
}

.gsb-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: flex;
  justify-content: flex-end;
  border-top: 0;
  background: rgba(9, 31, 22, 0.52);
  backdrop-filter: blur(3px);
}

.gsb-mobile-menu[hidden] {
  display: none;
}

.gsb-mobile-menu-inner {
  width: min(90vw, 376px);
  max-width: 376px;
  height: 100vh;
  min-height: 100vh;
  height: 100dvh;
  min-height: 100dvh;
  padding: calc(12px + env(safe-area-inset-top)) 16px calc(20px + env(safe-area-inset-bottom));
  display: grid;
  align-content: start;
  gap: 12px;
  background: linear-gradient(180deg, #fcfdfb 0%, #f6f9f6 100%);
  border-left: 1px solid rgba(24, 74, 51, 0.18);
  box-shadow: -16px 0 30px rgba(12, 36, 26, 0.22);
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translateX(36px);
  opacity: 0;
  transition: transform 0.26s var(--gsb-ease), opacity 0.26s var(--gsb-ease);
}

body.is-menu-open .gsb-mobile-menu-inner {
  transform: translateX(0);
  opacity: 1;
}

.gsb-mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.gsb-mobile-menu-brand {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
}

.gsb-mobile-menu-brand img {
  width: min(188px, 56vw);
  height: auto;
}

.gsb-mobile-menu-close {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(24, 74, 51, 0.2);
  background: #fff;
  color: var(--gsb-forest-800);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
}

.gsb-mobile-menu-close svg {
  width: 18px;
  height: 18px;
}

  .gsb-mobile-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    border-radius: 999px;
    border: 1px solid rgba(24, 74, 51, 0.16);
    background: #fff;
    overflow: hidden;
  }

.gsb-mobile-search input[type="search"] {
  min-height: 42px;
  border: 0;
  padding: 0 14px;
}

.gsb-mobile-search button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 42px;
  border: 0;
  padding: 0 14px;
  background: var(--gsb-forest-800);
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.2s var(--gsb-ease),
    filter 0.2s var(--gsb-ease),
    box-shadow 0.2s var(--gsb-ease),
    opacity 0.2s var(--gsb-ease);
}

.gsb-mobile-search button:hover,
.gsb-mobile-search button:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 8px 16px rgba(17, 52, 36, 0.22);
}

.gsb-mobile-search button:active {
  transform: translateY(0) scale(0.985);
}

.gsb-mobile-search button:focus-visible {
  outline: 2px solid rgba(24, 74, 51, 0.46);
  outline-offset: 2px;
}

  .gsb-mobile-menu-list {
    display: grid;
    gap: 0;
    margin-top: 2px;
  }

.gsb-mobile-menu-list li + li {
  border-top: 1px solid rgba(24, 74, 51, 0.08);
}

.gsb-mobile-menu-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0 4px 0 2px;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--gsb-ink-900);
  transition: color 0.18s var(--gsb-ease), transform 0.18s var(--gsb-ease), opacity 0.18s var(--gsb-ease);
}

.gsb-mobile-menu-list a:hover {
  background: transparent;
  color: var(--gsb-forest-800);
  transform: translateX(2px);
}

.gsb-mobile-menu-list a::after {
  content: "\203A";
  margin-left: 12px;
  color: var(--gsb-forest-700);
  font-size: 1.2rem;
  line-height: 1;
  opacity: 0.68;
  flex: 0 0 auto;
}

.gsb-mobile-menu-list a[aria-current="page"] {
  color: var(--gsb-forest-800);
}

.gsb-mobile-menu-list a[aria-current="page"]::after {
  opacity: 1;
}

.gsb-mobile-departments h3 {
  margin: 0 0 8px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gsb-forest-800);
}

.gsb-mobile-departments ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 4px;
}

.gsb-mobile-departments li a,
.gsb-mobile-departments li span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border-radius: 8px;
  padding: 0 12px;
  border: 1px solid rgba(24, 74, 51, 0.14);
  background: #fff;
}

.gsb-mobile-shortcuts {
  display: grid;
  gap: 10px;
  padding-top: 10px;
  margin-top: 4px;
  border-top: 1px solid rgba(24, 74, 51, 0.1);
}

.gsb-mobile-shortcuts a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(24, 74, 51, 0.14);
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gsb-forest-800);
  box-shadow: 0 8px 18px rgba(20, 44, 31, 0.04);
  transition: transform 0.18s var(--gsb-ease), box-shadow 0.18s var(--gsb-ease), border-color 0.18s var(--gsb-ease), background 0.18s var(--gsb-ease);
}

.gsb-mobile-shortcuts a:hover,
.gsb-mobile-shortcuts a:focus-visible {
  background: #fff;
  border-color: rgba(24, 74, 51, 0.22);
  box-shadow: 0 10px 18px rgba(20, 44, 31, 0.08);
  transform: translateY(-1px);
}

/* Home */
.gsb-home-hero {
  padding: clamp(22px, 4vw, 34px) 0 clamp(28px, 5vw, 46px);
}

.gsb-home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: stretch;
}

.gsb-home-hero-copy {
  border-radius: var(--gsb-radius-xl);
  border: 1px solid rgba(24, 74, 51, 0.14);
  background: linear-gradient(160deg, #fff 0%, #f3f7f3 100%);
  box-shadow: var(--gsb-shadow-soft);
  padding: clamp(22px, 4vw, 34px);
}

.gsb-home-hero-copy h1 {
  margin: 0 0 12px;
  max-width: 18ch;
  font-family: var(--gsb-font-display);
  font-size: clamp(1.95rem, 3.6vw, 3.6rem);
  line-height: 0.98;
  color: #173f2d;
}

.gsb-home-hero-copy > p {
  margin: 0 0 16px;
  color: var(--gsb-ink-700);
  max-width: 56ch;
}

.gsb-home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.gsb-home-hero-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 7px;
}

.gsb-home-hero-points li {
  position: relative;
  padding-left: 20px;
  color: #2f463d;
}

.gsb-home-hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gsb-gold-500);
}

.gsb-home-hero-media {
  border-radius: var(--gsb-radius-xl);
  border: 1px solid rgba(24, 74, 51, 0.14);
  overflow: hidden;
  box-shadow: var(--gsb-shadow-soft);
  min-height: 380px;
  background: #0f3022;
}

.gsb-home-hero-image,
.gsb-home-hero-video {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.gsb-home-hero-placeholder {
  height: 100%;
  min-height: 380px;
  padding: clamp(20px, 4vw, 30px);
  display: grid;
  align-content: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.92);
  background:
    radial-gradient(circle at 12% 12%, rgba(215, 161, 56, 0.32), transparent 34%),
    linear-gradient(145deg, #1a563a 0%, #0d2b1f 100%);
}

.gsb-home-hero-placeholder h2 {
  margin: 0;
  font-family: var(--gsb-font-display);
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  line-height: 1.1;
}

.gsb-home-hero-placeholder p {
  margin: 0;
  max-width: 44ch;
}

.gsb-promo-band {
  padding-bottom: 10px;
}

.gsb-promo-band-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.gsb-promo-item {
  border-radius: var(--gsb-radius-lg);
  border: 1px solid rgba(24, 74, 51, 0.12);
  background: #fff;
  padding: 18px;
}

.gsb-promo-item h3 {
  margin: 0 0 6px;
  font-size: 1.02rem;
}

.gsb-promo-item p {
  margin: 0;
  color: var(--gsb-ink-700);
  font-size: 0.92rem;
}

.gsb-benefits-strip {
  padding: 0;
  background: #fff;
  border-top: 1px solid rgba(24, 74, 51, 0.12);
  border-bottom: 1px solid rgba(24, 74, 51, 0.12);
}

.gsb-benefits-strip .gsb-container {
  width: min(1460px, calc(100% - 24px));
  max-width: 1460px;
  margin-inline: auto;
  padding-inline: clamp(10px, 1.8vw, 22px);
}

.gsb-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.gsb-benefit-item {
  display: grid;
  grid-template-columns: 50px minmax(0, auto);
  justify-content: center;
  align-items: center;
  gap: 12px;
  border: 0;
  border-right: 1px solid rgba(24, 74, 51, 0.14);
  border-radius: 0;
  background: transparent;
  padding: 14px 16px;
  min-height: 88px;
}

.gsb-benefit-item:last-child {
  border-right: 0;
}

.gsb-benefit-icon {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  color: var(--gsb-gold-500);
}

.gsb-benefit-icon svg {
  width: 100%;
  height: 100%;
}

.gsb-benefit-copy h3 {
  margin: 0 0 2px;
  color: var(--gsb-forest-800);
  font-size: 0.9rem;
  line-height: 1.18;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 800;
}

.gsb-benefit-copy p {
  margin: 0;
  color: var(--gsb-ink-700);
  font-size: 0.9rem;
  line-height: 1.3;
}

.gsb-department-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 320px));
  justify-content: center;
  gap: 16px;
}

.gsb-department-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--gsb-radius-lg);
  border: 1px solid rgba(24, 74, 51, 0.13);
  background: #fff;
  box-shadow: var(--gsb-shadow-soft);
  overflow: hidden;
  transition: transform 0.2s var(--gsb-ease), box-shadow 0.2s var(--gsb-ease);
}

.gsb-department-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(16, 47, 33, 0.16);
}

.gsb-department-media {
  position: relative;
  min-height: 188px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #215f41, #123827);
  color: #fff;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  overflow: hidden;
}

.gsb-department-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 49, 34, 0.2), rgba(10, 34, 24, 0.34));
  pointer-events: none;
}

.gsb-department-media img {
  width: 100%;
  height: 188px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02) brightness(0.94);
  transition: transform 0.45s var(--gsb-ease), filter 0.35s var(--gsb-ease);
}

.gsb-department-card:hover .gsb-department-media img {
  transform: scale(1.05);
  filter: saturate(0.95) contrast(1.03) brightness(0.97);
}

.gsb-department-card[data-department-slug="redondo-com-abas"] .gsb-department-media img {
  object-position: center 30%;
}

.gsb-department-media-fallback {
  padding: 0 12px;
  text-align: center;
  line-height: 1.3;
}

.gsb-department-content {
  padding: 16px 16px 18px;
  display: grid;
  gap: 9px;
  text-align: center;
  justify-items: center;
}

.gsb-department-content h3 {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.25;
}

.gsb-department-content p {
  margin: 0;
  color: var(--gsb-ink-500);
  font-size: 0.88rem;
}

.gsb-department-content .gsb-btn {
  width: 100%;
  max-width: 240px;
}

.gsb-store-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gsb-store-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  border: 1px solid rgba(24, 74, 51, 0.12);
  background: #fff;
  box-shadow: var(--gsb-shadow-soft);
  overflow: hidden;
  transition:
    transform 0.22s var(--gsb-ease),
    box-shadow 0.22s var(--gsb-ease);
}

.gsb-store-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 32px rgba(14, 40, 29, 0.16);
  z-index: 8;
}

.gsb-store-card-media {
  position: relative;
  isolation: isolate;
  min-height: 0;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: #fff;
}

.gsb-store-card-media::before {
  display: none;
}

.gsb-store-card-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 180px;
  object-fit: contain;
  object-position: center center;
  mix-blend-mode: normal;
  filter: none;
}

.gsb-store-card-media .gsb-loop-media-frame,
.woocommerce ul.products li.product .gsb-loop-media-frame {
  display: block;
  line-height: 0;
}

.gsb-store-card-media .gsb-store-loop-media-frame {
  position: relative;
  isolation: isolate;
  width: 100%;
  height: 180px;
  min-height: 0;
  overflow: hidden;
  background: transparent;
}

.gsb-store-card-media .gsb-store-loop-media-frame .gsb-loop-media-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 180px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  object-fit: contain;
  object-position: center center;
  mix-blend-mode: normal;
  filter: none;
  opacity: 0;
  transform: translate3d(0, 8px, 0) scale(1.01);
  transition:
    opacity 0.45s var(--gsb-ease),
    transform 0.6s var(--gsb-ease),
    filter 0.3s var(--gsb-ease);
}

.gsb-store-card-media .gsb-store-loop-media-frame .gsb-loop-media-img.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.gsb-store-card-media-overlay {
  display: none;
}

.gsb-store-card-media:hover .gsb-store-card-media-overlay,
.gsb-store-card-media:focus-visible .gsb-store-card-media-overlay,
.gsb-store-card:hover .gsb-store-card-media-overlay {
  display: none;
}

.gsb-store-card-media > span:not(.gsb-store-card-media-overlay) {
  position: relative;
  z-index: 1;
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--gsb-ink-700);
}

.gsb-store-card-content {
  display: grid;
  gap: 5px;
  padding: 10px 12px 12px;
  justify-items: center;
  text-align: center;
}

.gsb-store-card-category {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--gsb-ink-500);
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gsb-store-card-content h3 {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.18;
  min-height: 2.36em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-wrap: balance;
}

.gsb-store-card-price {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: 0;
  color: var(--gsb-forest-800);
  font-weight: 800;
}

.gsb-store-card-actions {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  justify-content: center;
  width: 100%;
}

.gsb-store-card-actions .gsb-btn {
  width: 100%;
  max-width: 260px;
}

.gsb-loop-buy-now {
  min-width: 170px;
}

.gsb-store-view-product-link {
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  width: calc(100% - 14px);
  max-width: 260px;
  border-radius: 7px;
  border: 1px solid rgba(24, 74, 51, 0.2);
  font-size: 0.7rem;
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 800;
  text-decoration: none;
  color: var(--gsb-forest-800);
  background: #fff;
  box-shadow: 0 8px 14px rgba(14, 40, 29, 0.1);
  opacity: 0;
  visibility: hidden;
  padding: 0 14px;
  margin-top: 0;
  overflow: visible;
  pointer-events: none;
  z-index: 10;
  transform: translate(-50%, 6px);
  transition:
    opacity 0.22s var(--gsb-ease),
    transform 0.22s var(--gsb-ease),
    visibility 0.22s var(--gsb-ease);
}

.gsb-store-card:hover .gsb-store-view-product-link,
.gsb-store-card:focus-within .gsb-store-view-product-link {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.gsb-section-shelf .gsb-shelf-carousel {
  position: relative;
  display: grid;
  gap: 10px;
  padding-inline: clamp(44px, 3.4vw, 66px);
}

.gsb-shelf-carousel-bar {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  pointer-events: none;
  z-index: 3;
}

.gsb-shelf-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  width: 100%;
}

.gsb-shelf-button {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(24, 74, 51, 0.12);
  border-radius: 999px;
  background: #fff;
  color: var(--gsb-forest-800);
  box-shadow: 0 8px 18px rgba(14, 40, 29, 0.08);
  cursor: pointer;
  pointer-events: auto;
  transition:
    transform 0.2s var(--gsb-ease),
    box-shadow 0.2s var(--gsb-ease),
    border-color 0.2s var(--gsb-ease),
    background-color 0.2s var(--gsb-ease),
    color 0.2s var(--gsb-ease);
}

.gsb-shelf-button svg {
  width: 18px;
  height: 18px;
}

.gsb-shelf-button:hover,
.gsb-shelf-button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(24, 74, 51, 0.28);
  background: rgba(24, 74, 51, 0.06);
  box-shadow: 0 12px 22px rgba(14, 40, 29, 0.12);
}

.gsb-shelf-button:focus-visible {
  outline: 2px solid rgba(24, 74, 51, 0.34);
  outline-offset: 2px;
}

.gsb-shelf-button:disabled {
  opacity: 0.4;
  transform: none;
  box-shadow: none;
  cursor: not-allowed;
}

.gsb-shelf-viewport {
  overflow: hidden;
  overflow-y: visible;
  padding: 10px 2px 16px;
  margin: -10px -2px 0;
  position: relative;
  z-index: 1;
  touch-action: pan-y;
}

.gsb-shelf-viewport::-webkit-scrollbar {
  display: none;
}

.gsb-section-shelf .gsb-shelf-carousel .gsb-store-grid {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 14px;
  width: max-content;
  min-width: 100%;
  grid-template-columns: none;
  will-change: transform;
}

.gsb-section-shelf .gsb-shelf-carousel .gsb-store-card {
  flex: 0 0 clamp(220px, 24vw, 286px);
  scroll-snap-align: start;
  box-shadow: none !important;
  border-color: rgba(24, 74, 51, 0.1);
}

.gsb-section-shelf .gsb-shelf-carousel .gsb-store-card:last-child {
  margin-right: 2px;
}

.gsb-section-shelf .gsb-shelf-carousel .gsb-store-card:hover {
  transform: translateY(-4px);
  box-shadow: none !important;
}

.gsb-store-card-media,
.gsb-store-view-product-link,
.gsb-store-card-content h3 a,
.woocommerce ul.products li.product .woocommerce-LoopProduct-link,
.woocommerce ul.products li.product .woocommerce-loop-product__link,
.woocommerce ul.products li.product .woocommerce-loop-product__title a,
.woocommerce ul.products li.product .gsb-loop-view-product-link {
  position: relative;
}

.gsb-store-card .gsb-store-view-product-link {
  position: absolute;
}

.gsb-store-card-media.is-loading,
.gsb-store-view-product-link.is-loading,
.gsb-store-card-content h3 a.is-loading,
.woocommerce ul.products li.product .woocommerce-LoopProduct-link.is-loading,
.woocommerce ul.products li.product .woocommerce-loop-product__link.is-loading,
.woocommerce ul.products li.product .woocommerce-loop-product__title a.is-loading,
.woocommerce ul.products li.product .gsb-loop-view-product-link.is-loading {
  pointer-events: none;
  cursor: wait;
}

.gsb-store-card-media.is-nav-loading,
.gsb-store-view-product-link.is-nav-loading,
.gsb-store-card-content h3 a.is-nav-loading,
.woocommerce ul.products li.product .woocommerce-LoopProduct-link.is-nav-loading,
.woocommerce ul.products li.product .woocommerce-loop-product__link.is-nav-loading,
.woocommerce ul.products li.product .woocommerce-loop-product__title a.is-nav-loading,
.woocommerce ul.products li.product .gsb-loop-view-product-link.is-nav-loading {
  cursor: progress;
}

.gsb-store-view-product-link.is-loading,
.gsb-store-card-content h3 a.is-loading,
.woocommerce ul.products li.product .woocommerce-loop-product__title a.is-loading,
.woocommerce ul.products li.product .gsb-loop-view-product-link.is-loading {
  color: transparent !important;
}

.gsb-store-card-media.is-loading::after,
.gsb-store-view-product-link.is-loading::after,
.gsb-store-card-content h3 a.is-loading::after,
.woocommerce ul.products li.product .woocommerce-LoopProduct-link.is-loading::after,
.woocommerce ul.products li.product .woocommerce-loop-product__link.is-loading::after,
.woocommerce ul.products li.product .woocommerce-loop-product__title a.is-loading::after,
.woocommerce ul.products li.product .gsb-loop-view-product-link.is-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border: 2px solid rgba(24, 74, 51, 0.24);
  border-top-color: rgba(24, 74, 51, 0.9);
  border-radius: 50%;
  z-index: 3;
  animation: gsb-button-spin 0.72s linear infinite;
}

.gsb-store-card-media.is-nav-loading::after,
.gsb-store-view-product-link.is-nav-loading::after,
.gsb-store-card-content h3 a.is-nav-loading::after,
.woocommerce ul.products li.product .woocommerce-LoopProduct-link.is-nav-loading::after,
.woocommerce ul.products li.product .woocommerce-loop-product__link.is-nav-loading::after,
.woocommerce ul.products li.product .woocommerce-loop-product__title a.is-nav-loading::after,
.woocommerce ul.products li.product .gsb-loop-view-product-link.is-nav-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border: 2px solid rgba(24, 74, 51, 0.24);
  border-top-color: rgba(24, 74, 51, 0.9);
  border-radius: 50%;
  z-index: 3;
  animation: gsb-button-spin 0.72s linear infinite;
}

.gsb-store-card-media.is-nav-loading::before,
.woocommerce ul.products li.product .woocommerce-LoopProduct-link.is-nav-loading::before,
.woocommerce ul.products li.product .woocommerce-loop-product__link.is-nav-loading::before {
  content: "";
  display: block !important;
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.24);
  z-index: 2;
}

.gsb-store-card-media.is-loading::before,
.woocommerce ul.products li.product .woocommerce-LoopProduct-link.is-loading::before,
.woocommerce ul.products li.product .woocommerce-loop-product__link.is-loading::before {
  content: "";
  display: block !important;
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.42);
  z-index: 2;
}

.gsb-buyflow-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.gsb-buyflow-steps li {
  border-radius: var(--gsb-radius-md);
  border: 1px solid rgba(24, 74, 51, 0.12);
  background: #fff;
  padding: 16px;
  display: grid;
  gap: 8px;
}

.gsb-buyflow-steps strong {
  font-size: 0.98rem;
}

.gsb-buyflow-steps span {
  color: var(--gsb-ink-700);
  font-size: 0.9rem;
}

.gsb-section-cta {
  padding-top: 18px;
}

.gsb-cta-box {
  border-radius: var(--gsb-radius-xl);
  padding: clamp(22px, 4vw, 34px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 18%, rgba(233, 191, 108, 0.24), transparent 42%),
    linear-gradient(145deg, #1b4f37 0%, #0f2e21 100%);
}

.gsb-cta-box h2 {
  margin: 0;
  max-width: 24ch;
  font-family: var(--gsb-font-display);
  font-size: clamp(1.35rem, 2.5vw, 2.2rem);
  line-height: 1.12;
}

.gsb-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.gsb-home-about {
  padding-top: 0;
  padding-bottom: clamp(8px, 1.4vw, 16px);
  background: linear-gradient(180deg, rgba(24, 74, 51, 0.03) 0%, rgba(255, 255, 255, 0.92) 100%);
}

.gsb-home-about-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  border-top: 1px solid rgba(24, 74, 51, 0.08);
  border-bottom: 1px solid rgba(24, 74, 51, 0.08);
  background: transparent;
  box-shadow: none;
}

.gsb-home-about-story,
.gsb-home-newsletter {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.gsb-home-about-story {
  padding: clamp(18px, 2.6vw, 28px) clamp(14px, 2vw, 22px) clamp(18px, 2.6vw, 28px) 0;
  display: grid;
  gap: 10px;
  align-content: start;
  border-right: 1px solid rgba(24, 74, 51, 0.08);
}

.gsb-home-about-story h2 {
  margin: 0;
  max-width: 18ch;
  font-family: var(--gsb-font-display);
  font-size: clamp(1.45rem, 2.3vw, 2.25rem);
  line-height: 1.08;
  color: #173f2d;
}

.gsb-home-about-story p {
  margin: 0;
  max-width: 62ch;
  color: var(--gsb-ink-700);
  line-height: 1.68;
}

.gsb-home-newsletter {
  padding: clamp(18px, 2.6vw, 28px) 0 clamp(18px, 2.6vw, 28px) clamp(14px, 2vw, 22px);
  display: grid;
  gap: 10px;
  align-content: center;
  background: transparent;
}

.gsb-home-newsletter h3 {
  margin: 0;
  font-family: var(--gsb-font-display);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.12;
  color: #173f2d;
}

.gsb-home-newsletter p {
  margin: 0;
  color: var(--gsb-ink-700);
  line-height: 1.6;
}

.gsb-home-newsletter-form {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.gsb-home-newsletter-form input[type="email"] {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(24, 74, 51, 0.16);
  border-radius: 999px;
  padding: 0 16px;
  font: inherit;
  color: var(--gsb-ink-900);
  background: #fff;
  box-shadow: inset 0 1px 1px rgba(15, 31, 23, 0.04);
}

.gsb-home-newsletter-form input[type="email"]::placeholder {
  color: var(--gsb-ink-500);
}

.gsb-home-newsletter-form input[type="email"]:focus {
  outline: 2px solid rgba(24, 74, 51, 0.24);
  outline-offset: 2px;
}

.gsb-home-newsletter-form .gsb-btn {
  width: 100%;
  min-width: 0;
}

/* Footer */
.gsb-footer {
  margin-top: clamp(22px, 4vw, 44px);
  color: rgba(255, 255, 255, 0.88);
  background: linear-gradient(180deg, #102f22 0%, #0a2118 100%);
}

.gsb-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(28px, 4.5vw, 52px) 0;
}

.gsb-footer-brand img {
  width: 240px;
  margin-bottom: 10px;
}

.gsb-footer-brand p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.84);
}

.gsb-footer h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 0.93rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gsb-footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 7px;
}

.gsb-footer-list a:hover {
  color: #fff;
}

.gsb-footer-trust-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.gsb-footer-trust-item {
  display: grid;
  gap: 6px;
}

.gsb-footer-trust-label {
  margin: 0;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.gsb-footer-trust-media {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: fit-content;
  max-width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.gsb-footer-trust-media img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
}

.gsb-footer-trust-item-payments .gsb-footer-trust-media {
  max-width: 214px;
}

.gsb-footer-trust-item-security .gsb-footer-trust-media {
  max-width: 150px;
}

.gsb-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.gsb-footer-bottom-inner {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.78rem;
}

.gsb-footer-bottom-inner p {
  margin: 0;
}

.gsb-footer-legal-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.gsb-footer-legal-nav {
  min-height: 56px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  padding: 12px 0;
}

.gsb-footer-legal-nav a,
.gsb-footer-legal-nav__button {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
}

.gsb-footer-legal-nav a:hover,
.gsb-footer-legal-nav a:focus-visible,
.gsb-footer-legal-nav__button:hover,
.gsb-footer-legal-nav__button:focus-visible {
  color: #fff;
}

.gsb-footer-legal-nav__button {
  appearance: none;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

/* Legal pages */
.gsb-legal-shell {
  padding-top: clamp(30px, 5vw, 54px);
}

.gsb-legal-hero {
  max-width: 780px;
  margin-bottom: 28px;
}

.gsb-legal-hero__eyebrow,
.gsb-legal-side__title {
  margin: 0 0 10px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b8831e;
}

.gsb-legal-hero h1 {
  margin: 0 0 14px;
  color: #102f22;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 0.96;
}

.gsb-legal-hero__summary {
  max-width: 64ch;
  margin: 0;
  color: #466158;
  font-size: 1.02rem;
  line-height: 1.8;
}

.gsb-legal-hero__meta {
  margin: 14px 0 0;
  color: #6a7e76;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.gsb-legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 240px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.gsb-legal-side {
  position: sticky;
  top: 96px;
  align-self: start;
}

.gsb-legal-side__nav {
  display: grid;
  gap: 6px;
}

.gsb-legal-side__link {
  display: block;
  padding: 12px 14px;
  border: 1px solid rgba(16, 47, 34, 0.1);
  border-radius: 14px;
  color: #244235;
  background: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-weight: 700;
  transition: border-color 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}

.gsb-legal-side__link:hover,
.gsb-legal-side__link:focus-visible {
  border-color: rgba(16, 47, 34, 0.18);
  background: #fff;
  transform: translateY(-1px);
}

.gsb-legal-side__link.is-active {
  color: #fff;
  border-color: #143625;
  background: linear-gradient(135deg, #143625, #1d4c35);
}

.gsb-legal-article {
  min-width: 0;
}

.gsb-legal-entry {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(16, 47, 34, 0.1);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(214, 160, 56, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 247, 0.96));
  box-shadow: 0 20px 40px rgba(13, 31, 22, 0.08);
}

.gsb-legal-document {
  display: grid;
  gap: 24px;
}

.gsb-legal-document section {
  display: grid;
  gap: 10px;
}

.gsb-legal-document h2 {
  margin: 0;
  color: #102f22;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.gsb-legal-document p,
.gsb-legal-document li {
  margin: 0;
  color: #375148;
  line-height: 1.86;
}

.gsb-legal-document ul {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
}

.gsb-legal-document a {
  color: #174833;
  font-weight: 700;
}

.gsb-legal-document a:hover,
.gsb-legal-document a:focus-visible {
  color: #0e2d20;
}

@media (max-width: 960px) {
  .gsb-legal-layout {
    grid-template-columns: 1fr;
  }

  .gsb-legal-side {
    position: static;
  }
}

@media (max-width: 640px) {
  .gsb-footer-legal-nav {
    align-items: flex-start;
    gap: 8px 14px;
  }

  .gsb-legal-hero h1 {
    font-size: clamp(1.8rem, 12vw, 2.8rem);
  }

  .gsb-legal-entry {
    padding: 20px 16px;
    border-radius: 20px;
  }
}

/* Generic page content */
.gsb-content-default {
  max-width: 920px;
}

.gsb-content-default article {
  border-radius: var(--gsb-radius-lg);
  border: 1px solid rgba(24, 74, 51, 0.13);
  background: #fff;
  padding: clamp(18px, 3vw, 30px);
}

.gsb-content-default h1 {
  margin: 0 0 14px;
  font-family: var(--gsb-font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #173f2d;
}

/* Woo wrappers */
.gsb-woo-shell {
  padding-top: clamp(26px, 4vw, 42px);
}

.gsb-woo-catalog-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  align-items: start;
  gap: 18px;
}

.gsb-woo-catalog-sidebar {
  position: sticky;
  top: var(--gsb-sticky-header-offset);
  max-height: calc(100vh - var(--gsb-sticky-header-offset) - 14px);
  overflow: auto;
  border-radius: var(--gsb-radius-lg);
  border: 1px solid rgba(24, 74, 51, 0.14);
  background: #fff;
  padding: 14px;
}

.gsb-woo-catalog-sidebar h2 {
  margin: 0 0 10px;
  font-size: 0.95rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gsb-forest-800);
}

.gsb-woo-catalog-cats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 4px;
}

.gsb-woo-catalog-cats a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 40px;
  border-radius: 8px;
  padding: 0 10px;
  color: #30453c;
  font-size: 0.92rem;
}

.gsb-woo-catalog-cats a:hover,
.gsb-woo-catalog-cats a[aria-current="page"] {
  background: rgba(24, 74, 51, 0.09);
  color: var(--gsb-forest-800);
}

.gsb-woo-catalog-cats a span {
  font-size: 0.72rem;
  color: var(--gsb-ink-500);
}

.gsb-woo-catalog-help {
  margin-top: 12px;
  border-radius: 10px;
  border: 1px solid rgba(24, 74, 51, 0.14);
  background: #f3f8f4;
  padding: 10px;
}

.gsb-woo-catalog-help p {
  margin: 0 0 8px;
  font-size: 0.84rem;
  color: var(--gsb-ink-700);
}

.gsb-woo-catalog-help a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border-radius: 999px;
  padding: 0 12px;
  background: var(--gsb-forest-800);
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
}

.gsb-woo-catalog-content {
  border-radius: var(--gsb-radius-lg);
  border: 1px solid rgba(24, 74, 51, 0.13);
  background: #fff;
  padding: 16px;
}

.gsb-woo-panel-header {
  margin-bottom: 12px;
}

.gsb-woo-panel-header h1 {
  margin: 0 0 8px;
  font-family: var(--gsb-font-display);
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  color: #173f2d;
}

.gsb-woo-panel-header p {
  margin: 0;
  color: var(--gsb-ink-700);
}

.gsb-woo-panel-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.gsb-woo-panel-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(24, 74, 51, 0.2);
  background: #fff;
  padding: 0 12px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--gsb-forest-800);
}

.gsb-woo-panel-content {
  border-radius: var(--gsb-radius-lg);
  border: 1px solid rgba(24, 74, 51, 0.13);
  background: #fff;
  padding: clamp(14px, 2.5vw, 20px);
}

.gsb-woo-page-article {
  margin: 0;
}

.gsb-woo-page-article .entry-content > :first-child {
  margin-top: 0;
}

/* WooCommerce components */
.woocommerce .woocommerce-breadcrumb {
  margin-bottom: 14px;
  font-size: 0.8rem;
  color: var(--gsb-ink-500);
}

.woocommerce .woocommerce-ordering {
  margin-bottom: 14px;
}

.woocommerce .woocommerce-ordering select,
.woocommerce .woocommerce-result-count {
  font-size: 0.84rem;
}

.woocommerce .woocommerce-ordering select {
  min-height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(24, 74, 51, 0.2);
  padding: 0 10px;
  background: #fff;
}

.woocommerce .woocommerce-result-count {
  color: var(--gsb-ink-700);
}

.woocommerce ul.products {
  margin-top: 0;
  margin-bottom: 0;
}

.woocommerce ul.products li.product {
  border-radius: 14px;
  border: 1px solid rgba(24, 74, 51, 0.13);
  background: var(--gsb-header-surface);
  padding: 10px;
  box-shadow: var(--gsb-shadow-soft);
  overflow: hidden;
}

.woocommerce ul.products li.product img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: var(--gsb-loop-media-height);
  object-fit: contain;
  object-position: center center;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
  mix-blend-mode: multiply;
  filter:
    saturate(1.06)
    contrast(1.03)
    drop-shadow(0 10px 14px rgba(20, 52, 38, 0.16));
}

.woocommerce ul.products li.product {
  display: flex;
  flex-direction: column;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 1rem;
  line-height: 1.3;
  min-height: 2.6em;
}

.woocommerce ul.products li.product .price {
  color: var(--gsb-forest-800);
  font-weight: 800;
}

.gsb-price-from {
  display: inline-grid;
  gap: 3px;
  align-items: start;
  color: var(--gsb-forest-800);
  line-height: 1;
}

.gsb-price-from__label {
  color: rgba(24, 74, 51, 0.62);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.gsb-price-from__value {
  display: inline-flex;
  align-items: baseline;
  font: inherit;
  white-space: nowrap;
}

.gsb-price-from__value .woocommerce-Price-amount {
  white-space: nowrap;
}

.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  position: relative;
  isolation: isolate;
  border-radius: 999px;
  border: 0;
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--gsb-forest-700), var(--gsb-forest-900));
  cursor: pointer;
  transition:
    transform 0.2s var(--gsb-ease),
    filter 0.2s var(--gsb-ease),
    box-shadow 0.2s var(--gsb-ease),
    opacity 0.2s var(--gsb-ease);
}

.woocommerce a.button,
.woocommerce button.button {
  overflow: hidden;
}

.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:focus-visible,
.woocommerce a.button:focus-visible,
.woocommerce button.button:focus-visible,
.woocommerce input.button:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 10px 18px rgba(17, 52, 36, 0.2);
}

.woocommerce #respond input#submit:active,
.woocommerce a.button:active,
.woocommerce button.button:active,
.woocommerce input.button:active {
  transform: translateY(0) scale(0.985);
}

.woocommerce #respond input#submit:focus-visible,
.woocommerce a.button:focus-visible,
.woocommerce button.button:focus-visible,
.woocommerce input.button:focus-visible {
  outline: 2px solid rgba(24, 74, 51, 0.48);
  outline-offset: 2px;
}

.woocommerce a.button::after,
.woocommerce button.button::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    110deg,
    transparent 10%,
    rgba(255, 255, 255, 0.2) 42%,
    transparent 72%
  );
  transform: translateX(-140%);
  transition: transform 0.6s var(--gsb-ease);
}

.woocommerce a.button:hover::after,
.woocommerce button.button:hover::after,
.woocommerce a.button:focus-visible::after,
.woocommerce button.button:focus-visible::after {
  transform: translateX(140%);
}

.gsb-btn:disabled,
.gsb-btn.disabled,
.woocommerce #respond input#submit:disabled,
.woocommerce #respond input#submit.disabled,
.woocommerce a.button:disabled,
.woocommerce a.button.disabled,
.woocommerce button.button:disabled,
.woocommerce button.button.disabled,
.woocommerce input.button:disabled,
.woocommerce input.button.disabled {
  opacity: 0.66;
  filter: grayscale(0.08);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.gsb-btn.is-loading,
.gsb-btn[aria-busy="true"],
.gsb-header-search button.is-loading,
.gsb-header-search button[aria-busy="true"],
.gsb-mobile-search button.is-loading,
.gsb-mobile-search button[aria-busy="true"],
.gsb-site-main button[type="submit"].is-loading,
.gsb-site-main button[type="submit"][aria-busy="true"],
.gsb-site-main input[type="submit"].is-loading,
.gsb-site-main input[type="submit"][aria-busy="true"],
.woocommerce #respond input#submit.loading,
.woocommerce #respond input#submit.is-loading,
.woocommerce a.button.loading,
.woocommerce a.button.is-loading,
.woocommerce button.button.loading,
.woocommerce button.button.is-loading,
.woocommerce input.button.loading,
.woocommerce input.button.is-loading {
  color: transparent !important;
  text-shadow: none !important;
  pointer-events: none;
  cursor: wait;
  transform: none;
}

.gsb-btn.is-loading::before,
.gsb-btn[aria-busy="true"]::before,
.gsb-header-search button.is-loading::before,
.gsb-header-search button[aria-busy="true"]::before,
.gsb-mobile-search button.is-loading::before,
.gsb-mobile-search button[aria-busy="true"]::before,
.gsb-site-main button[type="submit"].is-loading::before,
.gsb-site-main button[type="submit"][aria-busy="true"]::before,
.woocommerce a.button.loading::before,
.woocommerce a.button.is-loading::before,
.woocommerce button.button.loading::before,
.woocommerce button.button.is-loading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  margin-left: -8px;
  border: 2px solid rgba(255, 255, 255, 0.36);
  border-top-color: #fff;
  border-radius: 50%;
  animation: gsb-button-spin 0.7s linear infinite;
}

.woocommerce #respond input#submit.loading,
.woocommerce #respond input#submit.is-loading,
.woocommerce input.button.loading,
.woocommerce input.button.is-loading,
.gsb-site-main input[type="submit"].is-loading,
.gsb-site-main input[type="submit"][aria-busy="true"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18'%3E%3Ccircle cx='9' cy='9' r='7' fill='none' stroke='rgba(255,255,255,0.32)' stroke-width='2'/%3E%3Cpath d='M9 2a7 7 0 0 1 7 7' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
  animation: gsb-button-input-pulse 1s ease-in-out infinite alternate;
}

@keyframes gsb-button-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes gsb-button-input-pulse {
  from {
    filter: brightness(0.98);
  }
  to {
    filter: brightness(1.08);
  }
}

.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  background: linear-gradient(135deg, var(--gsb-gold-500), #b6852a);
}

.woocommerce a.added_to_cart {
  display: none !important;
}

.woocommerce nav.woocommerce-pagination {
  margin: clamp(26px, 4vw, 38px) 0 0;
  padding-top: 6px;
}

.woocommerce nav.woocommerce-pagination ul {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
}

.woocommerce nav.woocommerce-pagination ul li {
  border: 0;
  margin: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0 12px;
  margin: 0;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--gsb-forest-900);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 0.18s var(--gsb-ease),
    background-color 0.18s var(--gsb-ease),
    border-color 0.18s var(--gsb-ease),
    color 0.18s var(--gsb-ease),
    box-shadow 0.18s var(--gsb-ease);
}

.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(24, 74, 51, 0.14);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 18px rgba(16, 47, 34, 0.08);
}

.woocommerce nav.woocommerce-pagination ul li span.current {
  border-color: rgba(24, 74, 51, 0.08);
  background: linear-gradient(180deg, rgba(247, 242, 250, 0.98), rgba(240, 235, 247, 0.98));
  color: #6c5f7a;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.woocommerce nav.woocommerce-pagination ul li .prev,
.woocommerce nav.woocommerce-pagination ul li .next {
  min-width: 46px;
  padding: 0 14px;
  font-size: 1.1rem;
}

.woocommerce div.product .product_title {
  margin-top: 0;
  font-family: var(--gsb-font-display);
  color: #173f2d;
  line-height: 1.06;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--gsb-forest-800);
  font-size: 1.55rem;
  font-weight: 800;
}

.woocommerce div.product .woocommerce-product-details__short-description {
  color: var(--gsb-ink-700);
}

.woocommerce div.product .images .woocommerce-product-gallery__wrapper {
  border-radius: 14px;
  border: 1px solid rgba(24, 74, 51, 0.12);
  background: #fff;
}

.woocommerce div.product .images img {
  border-radius: 12px;
}

.woocommerce div.product form.cart {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.woocommerce .quantity .qty {
  min-height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(24, 74, 51, 0.2);
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  margin-bottom: 12px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border-radius: 999px;
  border: 1px solid rgba(24, 74, 51, 0.2);
  background: #fff;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  background: rgba(24, 74, 51, 0.1);
}

.woocommerce div.product.gsb-single-product {
  display: block;
}

.woocommerce div.product.gsb-single-product div.images,
.woocommerce div.product.gsb-single-product div.summary {
  width: 100%;
  float: none;
  margin: 0;
}

.gsb-single-product-main {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  gap: 28px;
  align-items: start;
}

.gsb-single-gallery {
  min-width: 0;
}

.gsb-single-gallery .woocommerce-product-gallery {
  width: 100% !important;
}

.gsb-single-gallery .woocommerce-product-gallery__wrapper {
  background: linear-gradient(180deg, #f1f4f1, #ffffff);
}

.gsb-single-gallery .woocommerce-product-gallery__image {
  min-height: 560px;
  display: grid;
  place-items: center;
  background: #eef2ef;
}

.gsb-single-gallery .woocommerce-product-gallery__image img {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
  padding: 18px;
}

.gsb-single-buybox {
  position: sticky;
  top: 126px;
  min-width: 0;
  border: 1px solid rgba(24, 74, 51, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(249, 252, 249, 0.98) 100%);
  box-shadow: 0 10px 22px rgba(18, 42, 31, 0.05);
  padding: 20px;
}

.gsb-single-status {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.gsb-single-status span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  background: #edf5ef;
  color: var(--gsb-forest-800);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.gsb-single-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.gsb-single-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(24, 74, 51, 0.08);
  background: rgba(238, 245, 239, 0.78);
  color: var(--gsb-forest-800);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.woocommerce div.product.gsb-single-product .product_title {
  font-family: var(--gsb-font-display);
  font-size: 2.25rem;
  letter-spacing: 0;
  line-height: 1.03;
  margin-bottom: 10px;
}

.woocommerce div.product.gsb-single-product p.price,
.woocommerce div.product.gsb-single-product span.price {
  display: block;
  margin: 10px 0 4px;
  color: var(--gsb-success);
  font-size: 2rem;
  line-height: 1.1;
}

body.gsb-single-variable-product .woocommerce div.product.gsb-single-product > .summary > p.price,
body.gsb-single-variable-product .woocommerce div.product.gsb-single-product > .summary > span.price,
body.gsb-single-variable-product .woocommerce div.product.gsb-single-product .summary > p.price,
body.gsb-single-variable-product .woocommerce div.product.gsb-single-product .summary > span.price,
body.gsb-single-variable-product .woocommerce div.product.gsb-single-product .entry-summary > p.price,
body.gsb-single-variable-product .woocommerce div.product.gsb-single-product .entry-summary > span.price,
body.gsb-single-variable-product .woocommerce div.product.gsb-single-product .gsb-single-buybox > p.price,
body.gsb-single-variable-product .woocommerce div.product.gsb-single-product .gsb-single-buybox > span.price,
.woocommerce div.product.gsb-single-product .summary:has(form.variations_form) > p.price,
.woocommerce div.product.gsb-single-product .summary:has(form.variations_form) > span.price {
  display: none;
}

.woocommerce div.product.gsb-single-product p.price .gsb-price-from,
.woocommerce div.product.gsb-single-product span.price .gsb-price-from {
  gap: 5px;
  color: var(--gsb-success);
}

.woocommerce div.product.gsb-single-product p.price .gsb-price-from__label,
.woocommerce div.product.gsb-single-product span.price .gsb-price-from__label {
  color: rgba(24, 74, 51, 0.66);
  font-size: 0.72rem;
}

.woocommerce div.product.gsb-single-product .woocommerce-product-details__short-description {
  margin: 14px 0;
  color: var(--gsb-ink-700);
}

.woocommerce div.product.gsb-single-product .product_meta {
  display: none;
}

.woocommerce div.product.gsb-single-product form.cart {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 18px 0 14px;
}

.woocommerce div.product.gsb-single-product form.cart .quantity {
  width: 100%;
}

.woocommerce div.product.gsb-single-product form.cart .quantity .qty {
  width: 100%;
  height: 52px;
  min-height: 52px;
}

.woocommerce div.product.gsb-single-product form.cart .single_add_to_cart_button {
  grid-column: 1 / -1;
  min-height: 52px;
  width: 100%;
  float: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gsb-forest-700), var(--gsb-forest-900));
  font-size: 0.82rem;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
  border-radius: 8px;
}

.woocommerce div.product.gsb-single-product form.variations_form {
  gap: 8px;
}

.woocommerce div.product.gsb-single-product .gsb-variable-picker {
  display: grid;
  gap: 8px;
  margin: 8px 0 0;
  padding: 0 0 10px;
  border-bottom: 1px solid rgba(24, 74, 51, 0.1);
}

.woocommerce div.product.gsb-single-product .gsb-variable-field {
  display: grid;
  gap: 7px;
}

.woocommerce div.product.gsb-single-product .gsb-variable-field label {
  color: var(--gsb-forest-900);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.woocommerce div.product.gsb-single-product .gsb-variable-select {
  position: relative;
}

.woocommerce div.product.gsb-single-product .gsb-variable-select::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid rgba(24, 74, 51, 0.68);
  border-bottom: 2px solid rgba(24, 74, 51, 0.68);
  pointer-events: none;
  transform: translateY(-64%) rotate(45deg);
}

.woocommerce div.product.gsb-single-product .gsb-variable-select select {
  width: 100%;
  min-height: 50px;
  padding: 0 42px 0 14px;
  border: 1px solid rgba(24, 74, 51, 0.18);
  border-radius: 8px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: none !important;
  background: #fff;
  color: var(--gsb-forest-950);
  font-size: 0.96rem;
  font-weight: 750;
  outline: none;
  transition:
    border-color 0.18s var(--gsb-ease),
    box-shadow 0.18s var(--gsb-ease);
}

.woocommerce div.product.gsb-single-product .gsb-variable-select select:focus-visible {
  border-color: rgba(24, 74, 51, 0.58);
  box-shadow: 0 0 0 3px rgba(24, 74, 51, 0.1);
}

.woocommerce div.product.gsb-single-product .gsb-variable-select select::-ms-expand {
  display: none;
}

.woocommerce div.product.gsb-single-product .reset_variations {
  width: fit-content;
  color: rgba(24, 74, 51, 0.74);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.woocommerce div.product.gsb-single-product .gsb-variable-summary {
  display: grid;
  gap: 8px;
  margin-top: 0;
}

.woocommerce div.product.gsb-single-product .woocommerce-variation {
  margin: 0;
  min-height: 0;
}

.woocommerce div.product.gsb-single-product .woocommerce-variation:empty {
  display: none;
}

.woocommerce div.product.gsb-single-product .woocommerce-variation-price {
  padding: 0;
}

.woocommerce div.product.gsb-single-product .woocommerce-variation-price::before {
  content: "Preço para o tamanho escolhido";
  display: block;
  margin: 0 0 4px;
  color: rgba(24, 74, 51, 0.64);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.woocommerce div.product.gsb-single-product .woocommerce-variation-price .price {
  margin: 0 0 2px;
  color: var(--gsb-forest-800);
  font-size: 1.38rem;
  line-height: 1.1;
}

.woocommerce div.product.gsb-single-product .woocommerce-variation-availability {
  display: none;
}

.woocommerce div.product.gsb-single-product .gsb-variable-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 0;
}

.woocommerce div.product.gsb-single-product .gsb-variable-actions .quantity {
  width: 100%;
  max-width: 210px;
  display: grid;
  grid-template-columns: 46px minmax(64px, 1fr) 46px;
  align-items: stretch;
  overflow: visible;
  border: 1px solid rgba(24, 74, 51, 0.14);
  border-radius: 8px;
  background: #fff;
}

.woocommerce div.product.gsb-single-product form.variations_form .gsb-variable-actions .quantity {
  display: none;
}

.woocommerce div.product.gsb-single-product .woocommerce-variation-add-to-cart-disabled .quantity {
  display: none;
}

.woocommerce div.product.gsb-single-product .woocommerce-variation-add-to-cart-enabled .quantity {
  display: grid;
}

.woocommerce div.product.gsb-single-product .gsb-variable-actions .quantity .qty {
  width: 100%;
  min-width: 0;
  height: 50px;
  min-height: 50px;
  padding: 0;
  border: 0;
  border-inline: 1px solid rgba(24, 74, 51, 0.1);
  border-radius: 0;
  background: #fff;
  color: var(--gsb-forest-950);
  font-size: 1rem;
  font-weight: 850;
  opacity: 1;
  text-align: center;
  -webkit-text-fill-color: var(--gsb-forest-950);
}

.woocommerce div.product.gsb-single-product .gsb-variable-actions .quantity .gsb-qty-btn {
  width: 46px;
  min-width: 46px;
  height: 50px;
  border: 0;
  border-radius: 0;
  background: rgba(238, 245, 239, 0.86);
  color: var(--gsb-forest-900);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
}

.woocommerce div.product.gsb-single-product .gsb-variable-actions .quantity .gsb-qty-btn:hover,
.woocommerce div.product.gsb-single-product .gsb-variable-actions .quantity .gsb-qty-btn:focus-visible {
  background: rgba(24, 74, 51, 0.1);
  transform: none;
}

.woocommerce .quantity.gsb-quantity-fixed {
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 8px;
  width: auto;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid rgba(24, 74, 51, 0.14);
  border-radius: 8px;
  background: #fff;
  color: var(--gsb-forest-950);
}

.woocommerce .quantity.gsb-quantity-fixed .gsb-quantity-fixed__label {
  color: rgba(13, 47, 31, 0.68);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.woocommerce .quantity.gsb-quantity-fixed .gsb-quantity-fixed__value {
  display: inline-grid;
  place-items: center;
  min-width: 28px;
  height: 28px;
  border-radius: 7px;
  background: rgba(24, 74, 51, 0.08);
  color: var(--gsb-forest-950);
  font-size: 0.95rem;
  font-weight: 900;
}

.woocommerce-notices-wrapper,
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-error {
  max-width: 100%;
}

.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-error {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px 16px;
  border-radius: 14px;
  line-height: 1.45;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.woocommerce .woocommerce-message::before,
.woocommerce .woocommerce-info::before,
.woocommerce .woocommerce-error::before {
  position: static;
  margin: 0;
  transform: none;
}

.woocommerce .woocommerce-message a,
.woocommerce .woocommerce-info a,
.woocommerce .woocommerce-error a {
  word-break: break-word;
}

.woocommerce div.product.gsb-single-product .woocommerce-variation-add-to-cart-disabled .single_add_to_cart_button,
.woocommerce div.product.gsb-single-product .single_add_to_cart_button.disabled,
.woocommerce div.product.gsb-single-product .single_add_to_cart_button:disabled {
  background: linear-gradient(135deg, #d7ddd9, #b9c3be) !important;
  color: #5a6862 !important;
  box-shadow: none !important;
  cursor: not-allowed !important;
  opacity: 1 !important;
}

.woocommerce div.product.gsb-single-product .woocommerce-variation-add-to-cart-enabled .single_add_to_cart_button {
  cursor: pointer;
}

.gsb-single-commercial {
  display: grid;
  gap: 12px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(24, 74, 51, 0.08);
}

.gsb-single-commercial-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.gsb-single-commercial-row strong {
  flex: 0 0 auto;
  min-width: 112px;
  color: var(--gsb-forest-800);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.gsb-single-commercial-row span {
  flex: 1;
  color: var(--gsb-ink-700);
  font-size: 0.88rem;
  line-height: 1.45;
}

.gsb-single-whatsapp {
  width: 100%;
  min-height: 46px;
  margin-top: 10px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eef7ef;
  color: var(--gsb-forest-800);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.gsb-single-assurance {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 6px;
  color: var(--gsb-ink-700);
  font-size: 0.9rem;
}

.gsb-single-assurance li {
  position: relative;
  padding-left: 18px;
}

.gsb-single-assurance li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gsb-gold-500);
}

.gsb-single-after {
  margin-top: 34px;
}

.gsb-single-shipping-estimate {
  margin-top: 16px;
  padding: 18px 0 0;
  border: 0;
  border-top: 1px solid rgba(24, 74, 51, 0.08);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.gsb-single-shipping-estimate-head {
  margin-bottom: 0.75rem;
}

.gsb-single-shipping-estimate h3 {
  font-size: 1.02rem;
}

.gsb-single-shipping-estimate p {
  font-size: 0.92rem;
  line-height: 1.45;
}

.gsb-single-shipping-form {
  margin-top: 0.85rem;
}

.gsb-single-shipping-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.gsb-single-shipping-row input {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
}

.gsb-single-shipping-row .gsb-btn {
  border-radius: 14px;
}

.gsb-shipping-status {
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(24, 74, 51, 0.08);
}

.gsb-shipping-rate-item {
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
}

.gsb-single-after .woocommerce-tabs,
.gsb-single-after .related,
.gsb-single-after .upsells {
  border: 1px solid rgba(24, 74, 51, 0.12);
  border-radius: 10px;
  background: #fff;
  padding: clamp(16px, 3vw, 24px);
  margin-bottom: 18px;
}

.woocommerce .woocommerce-cart-form,
.woocommerce .cart-collaterals,
.woocommerce .woocommerce-checkout,
.woocommerce form.login,
.woocommerce form.register,
.woocommerce form.lost_reset_password,
.woocommerce form.checkout_coupon {
  border-radius: 14px;
  border: 1px solid rgba(24, 74, 51, 0.13);
  background: #fff;
  padding: clamp(14px, 2.5vw, 20px);
}

.woocommerce .shop_table {
  border-radius: 12px;
  overflow: hidden;
}

.woocommerce .shop_table thead th {
  background: #edf3ee;
}

.woocommerce .shop_table th,
.woocommerce .shop_table td {
  border-color: rgba(24, 74, 51, 0.12);
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  min-height: 42px;
  border-radius: 8px;
  border: 1px solid rgba(24, 74, 51, 0.2);
  padding: 0 11px;
}

.woocommerce form .form-row textarea {
  min-height: 120px;
  padding: 10px 11px;
}

.woocommerce .woocommerce-info,
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-error {
  border-radius: 12px;
  border-width: 1px;
  background: #fff;
}

.woocommerce-account .woocommerce {
  display: block;
}

/* Two-column account layout. Anchored on the theme's own panel wrapper
   (always present on account pages) so it never depends on :has() support,
   which some browsers/concat setups do not honour for this critical layout. */
body.woocommerce-account .gsb-woo-panel-content > .woocommerce {
  display: grid;
  grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
  align-items: start;
  gap: 16px;
}

.woocommerce-account .woocommerce:has(.woocommerce-MyAccount-navigation) {
  display: grid;
  grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
  align-items: start;
  gap: 16px;
}

.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
  border-radius: 14px;
  border: 1px solid rgba(24, 74, 51, 0.13);
  background: #fff;
  padding: 18px;
}

/* Force each panel to fill its grid cell. The body.woocommerce-account prefix
   raises specificity above WooCommerce's default 30%/68% float widths, so the
   layout no longer relies on stylesheet load order. */
body.woocommerce-account .woocommerce-MyAccount-navigation,
body.woocommerce-account .woocommerce-MyAccount-content {
  float: none;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

@media (max-width: 860px) {
  body.woocommerce-account .gsb-woo-panel-content > .woocommerce {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ---- My Account: dashboard intro ---- */

body.woocommerce-account .woocommerce-MyAccount-content > p:first-child {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gsb-ink-900);
}

body.woocommerce-account .woocommerce-MyAccount-content > p {
  max-width: 56ch;
  line-height: 1.6;
  color: var(--gsb-ink-700);
}

body.woocommerce-account .woocommerce-MyAccount-content > p a {
  color: var(--gsb-forest-700);
  font-weight: 700;
  text-decoration: underline;
}

/* ---- My Account: notices (always keep the action button on its own row,
   so the message text keeps the full available width at any viewport) ---- */

body.woocommerce-account .woocommerce-info,
body.woocommerce-account .woocommerce-message,
body.woocommerce-account .woocommerce-error {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 8px 12px;
  width: 100%;
  margin: 0 0 16px;
  border: 1px solid rgba(24, 74, 51, 0.14);
  border-left: 4px solid var(--gsb-forest-700);
  border-radius: 10px;
  background: #fff;
  color: var(--gsb-ink-900);
  box-shadow: 0 12px 26px rgba(18, 42, 31, 0.08);
  padding: 14px 16px;
  line-height: 1.5;
  list-style: none;
}

body.woocommerce-account .woocommerce-error {
  border-left-color: var(--gsb-danger);
}

body.woocommerce-account .woocommerce-info {
  border-left-color: var(--gsb-gold-500);
}

body.woocommerce-account .woocommerce-message::before,
body.woocommerce-account .woocommerce-info::before,
body.woocommerce-account .woocommerce-error::before {
  position: static;
  inset: auto;
  grid-row: 1;
  grid-column: 1;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  margin: 0;
  font-family: var(--gsb-font-base);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
  color: #fff;
  background: var(--gsb-forest-700);
}

body.woocommerce-account .woocommerce-message::before {
  content: "\2713";
  font-size: 0.9rem;
}

body.woocommerce-account .woocommerce-info::before {
  content: "i";
  background: var(--gsb-gold-500);
}

body.woocommerce-account .woocommerce-error::before {
  content: "!";
  background: var(--gsb-danger);
}

body.woocommerce-account .woocommerce-info .button,
body.woocommerce-account .woocommerce-message .button,
body.woocommerce-account .woocommerce-error .button {
  grid-column: 1 / -1;
  justify-self: stretch;
  float: none;
  width: 100%;
  min-height: 42px;
  padding-inline: 16px;
  margin-top: 4px;
}

body.woocommerce-account .woocommerce-error li {
  margin: 0;
}

/* ---- My Account: navigation sidebar ---- */

body.woocommerce-account .woocommerce-MyAccount-navigation-link--customer-logout {
  margin-top: 6px;
  border-top: 1px solid rgba(24, 74, 51, 0.12);
  padding-top: 6px;
}

body.woocommerce-account .woocommerce-MyAccount-navigation-link--customer-logout a {
  color: var(--gsb-danger);
}

/* ---- My Account: address card ---- */

body.woocommerce-account .woocommerce-Addresses {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

body.woocommerce-account .woocommerce-Address {
  border: 1px solid rgba(24, 74, 51, 0.13);
  border-radius: 12px;
  background: #fafdfb;
  padding: 16px 18px;
  min-width: 0;
}

body.woocommerce-account .woocommerce-Address-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 14px;
  margin: 0 0 10px;
}

body.woocommerce-account .woocommerce-Address-title h2 {
  margin: 0;
  font-family: var(--gsb-font-display);
  font-size: 1.05rem;
  color: var(--gsb-forest-900);
}

body.woocommerce-account .woocommerce-Address-title .edit {
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: var(--gsb-forest-700);
  text-decoration: underline;
}

body.woocommerce-account .woocommerce-Address address {
  font-style: normal;
  line-height: 1.7;
  color: var(--gsb-ink-700);
}

/* ---- My Account: edit-account ("Perfil") and edit-address forms ----
   Single-column layout keeps every field comfortably full width,
   regardless of how narrow the content column gets. */

body.woocommerce-account .woocommerce-EditAccountForm .form-row-first,
body.woocommerce-account .woocommerce-EditAccountForm .form-row-last,
body.woocommerce-account .woocommerce-address-fields .form-row-first,
body.woocommerce-account .woocommerce-address-fields .form-row-last {
  float: none;
  width: 100%;
}

body.woocommerce-account .woocommerce-EditAccountForm fieldset {
  margin: 22px 0 0;
  padding: 18px 16px;
  border: 1px solid rgba(24, 74, 51, 0.13);
  border-radius: 10px;
  background: #fafdfb;
}

body.woocommerce-account .woocommerce-EditAccountForm legend {
  padding: 0 6px;
  margin-left: -6px;
  font-weight: 800;
  color: var(--gsb-forest-800);
}

body.woocommerce-account .woocommerce-EditAccountForm span#account_display_name_description,
body.woocommerce-account .woocommerce-EditAccountForm em {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  font-style: normal;
  color: var(--gsb-ink-700);
}

body.woocommerce-account .woocommerce-EditAccountForm .gsb-account-readonly-field {
  grid-column: 1 / -1;
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border: 1px solid rgba(24, 74, 51, 0.13);
  border-radius: 12px;
  background: linear-gradient(180deg, #fbfdfc 0%, #f7faf8 100%);
}

body.woocommerce-account .woocommerce-EditAccountForm .gsb-account-readonly-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gsb-forest-700);
}

body.woocommerce-account .woocommerce-EditAccountForm .gsb-account-readonly-value {
  display: block;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--gsb-forest-900);
  word-break: break-word;
}

body.woocommerce-account .woocommerce-EditAccountForm .gsb-account-readonly-note {
  display: block;
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--gsb-ink-700);
}

body.woocommerce-account .woocommerce-EditAccountForm .clear {
  display: none;
}

body.woocommerce-account .woocommerce-EditAccountForm > p:last-of-type,
body.woocommerce-account .woocommerce-address-fields p:last-of-type {
  margin-top: 18px;
}

/* ---- My Account: orders table, responsive ---- */

body.woocommerce-account table.shop_table_responsive {
  width: 100%;
}

@media (max-width: 760px) {
  body.woocommerce-account table.shop_table_responsive,
  body.woocommerce-account table.shop_table_responsive tbody,
  body.woocommerce-account table.shop_table_responsive tr {
    display: block;
    width: 100%;
  }

  body.woocommerce-account table.shop_table_responsive thead {
    display: none;
  }

  body.woocommerce-account table.shop_table_responsive tr {
    margin-bottom: 14px;
    border: 1px solid rgba(24, 74, 51, 0.13);
    border-radius: 10px;
    padding: 12px;
  }

  body.woocommerce-account table.shop_table_responsive td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border: 0;
    padding: 6px 4px;
    text-align: right;
  }

  body.woocommerce-account table.shop_table_responsive td::before {
    content: attr(data-title);
    font-weight: 800;
    color: var(--gsb-ink-700);
    text-align: left;
    margin-right: auto;
  }

  body.woocommerce-account table.shop_table_responsive td.woocommerce-orders-table__cell-order-actions {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}

.gsb-auth-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.gsb-auth-card {
  border: 1px solid rgba(24, 74, 51, 0.13);
  border-radius: 10px;
  background: #fff;
  padding: clamp(18px, 3vw, 26px);
  min-width: 0;
}

.gsb-auth-card-head {
  margin-bottom: 16px;
}

.gsb-auth-card-head h2 {
  margin: 0 0 8px;
  font-family: var(--gsb-font-display);
  font-size: 1.7rem;
  line-height: 1.05;
  color: #173f2d;
}

.gsb-auth-card-head p:last-child {
  margin: 0;
  color: var(--gsb-ink-700);
}

.gsb-auth-card form.login,
.gsb-auth-card form.register {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
}

.gsb-auth-card .form-row {
  margin-bottom: 12px;
}

.gsb-auth-card label {
  font-weight: 700;
  color: var(--gsb-ink-700);
}

.gsb-auth-actions {
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

.gsb-auth-actions .button {
  width: 100%;
  min-height: 48px;
}

.gsb-auth-note {
  border-radius: 8px;
  background: #f3f8f4;
  padding: 10px 12px;
  color: var(--gsb-ink-700);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 4px;
}

.woocommerce-account .woocommerce-MyAccount-navigation-link a {
  display: block;
  min-height: 38px;
  border-radius: 8px;
  padding: 9px 10px;
  font-weight: 700;
}

.woocommerce-account .woocommerce-MyAccount-navigation-link.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation-link a:hover {
  background: rgba(24, 74, 51, 0.1);
  color: var(--gsb-forest-800);
}

.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review,
.woocommerce-cart .cart-collaterals .cart_totals {
  border-radius: 12px;
  border: 1px solid rgba(24, 74, 51, 0.13);
  background: #fff;
  padding: 12px;
}

.woocommerce-checkout #customer_details {
  margin-bottom: 12px;
}

.woocommerce-checkout #customer_details .col2-set {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2 {
  width: 100%;
  float: none;
}

.woocommerce .return-to-shop {
  margin-bottom: 0;
}

body.woocommerce-cart .gsb-woo-panel-content {
  border: 0;
  background: transparent;
  padding: 0;
}

body.woocommerce-cart .woocommerce {
  position: relative;
}

body.woocommerce-cart .woocommerce-notices-wrapper {
  position: static;
  width: auto;
  margin: 0 0 16px;
  pointer-events: auto;
}

body.woocommerce-cart .woocommerce-notices-wrapper .woocommerce-message,
body.woocommerce-cart .woocommerce-notices-wrapper .woocommerce-info,
body.woocommerce-cart .woocommerce-notices-wrapper .woocommerce-error {
  pointer-events: auto;
  margin: 0 0 10px;
  border: 1px solid rgba(24, 74, 51, 0.14);
  border-left: 3px solid var(--gsb-forest-700);
  border-radius: 8px;
  background: #f7fbf8;
  box-shadow: none;
  color: var(--gsb-ink-800);
  animation: none;
}

body.woocommerce-cart .woocommerce-notices-wrapper .woocommerce-error {
  border-left-color: #b42318;
}

@keyframes gsbCartToastIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.gsb-cart-page {
  --gsb-cart-line: rgba(24, 74, 51, 0.12);
  --gsb-cart-soft: rgba(239, 247, 241, 0.82);
  position: relative;
  color: var(--gsb-ink-900);
}

.gsb-cart-page.is-updating .gsb-cart-page-layout {
  pointer-events: none;
  user-select: none;
}

.gsb-cart-page.is-updating::before {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: 30;
  border-radius: 12px;
  background: rgba(248, 252, 249, 0.72);
  backdrop-filter: blur(2px);
}

.gsb-cart-page.is-updating::after {
  content: "";
  position: absolute;
  top: min(38vh, 260px);
  left: 50%;
  z-index: 31;
  width: 44px;
  height: 44px;
  margin: -22px 0 0 -22px;
  border: 4px solid rgba(24, 74, 51, 0.15);
  border-top-color: var(--gsb-forest-800);
  border-radius: 999px;
  animation: gsbCartSpin 0.75s linear infinite;
}

@keyframes gsbCartSpin {
  to {
    transform: rotate(360deg);
  }
}

.gsb-cart-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
  align-items: start;
  gap: clamp(16px, 2.5vw, 28px);
}

.gsb-cart-main {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.woocommerce .gsb-cart-form,
.woocommerce .gsb-cart-panel,
.woocommerce .gsb-cart-summary-card,
.woocommerce .gsb-cart-recommendations {
  border: 1px solid var(--gsb-cart-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(20, 50, 36, 0.06);
}

.woocommerce .gsb-cart-form {
  padding: 0;
}

.gsb-cart-panel,
.gsb-cart-recommendations,
.gsb-cart-summary-card {
  padding: clamp(16px, 2.2vw, 24px);
}

.gsb-cart-panel-head,
.gsb-cart-section-head,
.gsb-cart-summary-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.gsb-cart-panel-head h2,
.gsb-cart-section-head h2,
.gsb-cart-summary-head h2 {
  margin: 0;
  font-family: var(--gsb-font-display);
  color: var(--gsb-forest-900);
  letter-spacing: 0;
}

.gsb-cart-panel-head h2 {
  font-size: 1.55rem;
}

.gsb-cart-summary-head h2 {
  font-size: 1.35rem;
}

.gsb-cart-kicker {
  margin: 0 0 6px;
  color: var(--gsb-gold-700);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gsb-cart-section-head p,
.gsb-cart-summary-head p {
  margin: 6px 0 0;
  color: var(--gsb-ink-700);
  font-size: 0.92rem;
}

.gsb-cart-continue,
.gsb-cart-summary-continue {
  color: var(--gsb-forest-800);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.gsb-cart-list-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px 130px;
  gap: 16px;
  align-items: center;
  min-height: 40px;
  padding: 0 56px 0 0;
  border-radius: 8px;
  background: #f1f6f2;
  color: var(--gsb-forest-900);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gsb-cart-list-head span:first-child {
  padding-left: 16px;
}

.gsb-cart-items {
  display: grid;
  gap: 0;
}

.gsb-cart-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px 130px;
  gap: 16px;
  align-items: center;
  padding: 18px 56px 18px 0;
  border-bottom: 1px solid rgba(24, 74, 51, 0.1);
}

.gsb-cart-item:last-child {
  border-bottom: 0;
}

.gsb-cart-item-product {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-width: 0;
}

.gsb-cart-item-media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  aspect-ratio: 1;
  border-radius: 8px;
  background: #eef5ef;
  overflow: hidden;
}

.gsb-cart-item-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gsb-cart-item-copy {
  min-width: 0;
}

.gsb-cart-item-name {
  display: inline-block;
  color: var(--gsb-forest-950);
  font-weight: 800;
  line-height: 1.35;
}

.gsb-cart-item-meta {
  margin-top: 6px;
  color: var(--gsb-ink-700);
  font-size: 0.84rem;
}

.gsb-cart-item-meta dl,
.gsb-cart-item-meta p {
  margin: 0;
}

.gsb-cart-item-price {
  margin: 8px 0 0;
  color: var(--gsb-ink-700);
  font-size: 0.86rem;
}

.gsb-cart-item-quantity .quantity {
  margin-inline: auto;
}

.gsb-cart-item-total {
  color: var(--gsb-forest-900);
  font-size: 1rem;
  text-align: right;
}

.gsb-cart-remove {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 40px;
  height: 38px;
  margin-left: auto;
  border: 1px solid rgba(180, 35, 24, 0.15);
  border-radius: 8px;
  background: rgba(180, 35, 24, 0.04);
  color: #b42318 !important;
  font-size: 0 !important;
  font-weight: 900;
  line-height: 1 !important;
  text-decoration: none;
}

body.woocommerce-cart .woocommerce a.gsb-cart-remove {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 40px !important;
  height: 38px !important;
  border: 1px solid rgba(180, 35, 24, 0.15) !important;
  border-radius: 8px !important;
  background: rgba(180, 35, 24, 0.04) !important;
  color: #b42318 !important;
  font-size: 0 !important;
  line-height: 1 !important;
}

.gsb-cart-remove svg {
  display: block;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.gsb-cart-remove:hover,
.gsb-cart-remove:focus-visible {
  background: #b42318;
  color: #fff !important;
}

body.woocommerce-cart .woocommerce a.gsb-cart-remove:hover,
body.woocommerce-cart .woocommerce a.gsb-cart-remove:focus-visible {
  background: #b42318 !important;
  color: #fff !important;
}

.gsb-cart-item-remove {
  position: absolute;
  top: 50%;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 38px;
  transform: translateY(-50%);
  z-index: 2;
}

.gsb-cart-form-footer {
  display: flex;
  justify-content: flex-end;
  min-height: 1px;
}

.gsb-cart-hidden-update {
  position: absolute;
  width: 1px;
  height: 1px;
  min-width: 0 !important;
  min-height: 0 !important;
  padding: 0;
  border: 0 !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
}

.gsb-cart-auto-status {
  margin: 0;
  color: var(--gsb-forest-800);
  font-size: 0.86rem;
  font-weight: 800;
}

.gsb-cart-form.is-updating,
.gsb-cart-summary-card.is-updating {
  opacity: 0.7;
}

.gsb-cart-summary {
  position: sticky;
  grid-column: 2;
  grid-row: 1 / span 2;
  top: 118px;
  min-width: 0;
}

.woocommerce .gsb-cart-summary-card {
  padding: 22px;
}

.gsb-cart-summary-block {
  padding: 16px 0;
  border-top: 1px solid rgba(24, 74, 51, 0.1);
}

.gsb-cart-summary-block h3,
.gsb-cart-summary-block label {
  display: block;
  margin: 0 0 10px;
  color: var(--gsb-forest-900);
  font-size: 0.95rem;
  font-weight: 900;
}

.gsb-cart-inline-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: stretch;
}

.gsb-cart-inline-form input.input-text,
.woocommerce form .gsb-cart-inline-form input.input-text {
  width: 100%;
  min-height: 48px;
  border-radius: 8px;
  border: 1px solid rgba(24, 74, 51, 0.2);
  background: #fff;
  padding: 0 14px;
}

.gsb-cart-inline-form input.gsb-postcode-mask {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.gsb-cart-inline-form .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  padding-inline: 18px;
  line-height: 1;
  white-space: nowrap;
}

.gsb-cart-postcode-form label {
  margin-bottom: 10px;
}

.gsb-cart-summary-table {
  margin: 0;
  border: 1px solid rgba(24, 74, 51, 0.11);
  border-radius: 8px;
  overflow: hidden;
}

.woocommerce .gsb-cart-summary-table th,
.woocommerce .gsb-cart-summary-table td {
  padding: 14px 12px;
  border-color: rgba(24, 74, 51, 0.1);
  vertical-align: top;
}

.woocommerce .gsb-cart-summary-table th {
  width: 36%;
  color: var(--gsb-forest-900);
  font-weight: 900;
}

.woocommerce .gsb-cart-summary-table td {
  text-align: right;
}

.woocommerce .gsb-cart-summary-table .order-total th,
.woocommerce .gsb-cart-summary-table .order-total td {
  background: #f6faf7;
  color: var(--gsb-forest-950);
  font-size: 1.04rem;
}

.gsb-cart-shipping-methods {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.gsb-cart-shipping-methods li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px;
  align-items: start;
}

.gsb-cart-shipping-methods label {
  color: var(--gsb-ink-800);
  line-height: 1.35;
}

.gsb-cart-shipping-destination,
.gsb-cart-shipping-message,
.gsb-cart-shipping-contents {
  margin: 10px 0 0;
  color: var(--gsb-ink-700);
  font-size: 0.86rem;
  line-height: 1.45;
  text-align: left;
}

.gsb-cart-summary-card .wc-proceed-to-checkout {
  padding: 18px 0 0;
}

.gsb-cart-summary-card .checkout-button {
  width: 100%;
  min-height: 54px;
  border-radius: 8px;
  background: var(--gsb-gold-600);
  color: #fff;
  font-size: 0.96rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gsb-cart-summary-continue {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  margin-top: 12px;
}

.gsb-cart-recommendations {
  grid-column: 1;
  overflow: hidden;
}

.gsb-cart-carousel-controls {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.gsb-cart-carousel-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(24, 74, 51, 0.16);
  border-radius: 999px;
  background: #f3f8f4;
  color: var(--gsb-forest-900);
  cursor: pointer;
  transition: transform 0.18s var(--gsb-ease), background 0.18s var(--gsb-ease), opacity 0.18s var(--gsb-ease);
}

.gsb-cart-carousel-button svg {
  width: 18px;
  height: 18px;
}

.gsb-cart-carousel-button:hover,
.gsb-cart-carousel-button:focus-visible {
  background: var(--gsb-forest-800);
  color: #fff;
  transform: translateY(-1px);
}

.gsb-cart-carousel-button:disabled {
  cursor: default;
  opacity: 0.35;
  transform: none;
}

.gsb-cart-recommendation-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.gsb-cart-recommendation-viewport::-webkit-scrollbar {
  display: none;
}

.gsb-cart-recommendation-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(178px, calc((100% - 42px) / 4));
  grid-template-columns: none;
  gap: 14px;
  min-width: 100%;
}

.gsb-cart-recommendation-card {
  display: grid;
  grid-template-rows: auto minmax(58px, auto) auto auto;
  gap: 10px;
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(24, 74, 51, 0.11);
  border-radius: 8px;
  background: #fff;
  scroll-snap-align: start;
}

.gsb-cart-recommendation-media {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 138px;
  border-radius: 8px;
  background: #eef5ef;
  overflow: hidden;
}

.gsb-cart-recommendation-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gsb-cart-recommendation-card h3 {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.35;
}

.gsb-cart-recommendation-card h3 a {
  color: var(--gsb-forest-950);
}

.gsb-cart-recommendation-price {
  margin: 0;
  color: var(--gsb-forest-900);
  font-weight: 900;
}

.gsb-cart-recommendation-button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  padding: 0 16px !important;
  border-radius: 8px;
  font-size: 0.78rem;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
}

.gsb-cart-empty {
  display: flex;
  justify-content: center;
}

.gsb-cart-empty-card {
  width: min(620px, 100%);
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid rgba(24, 74, 51, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(20, 50, 36, 0.08);
  text-align: center;
}

.gsb-cart-empty-card h2 {
  margin: 0 0 10px;
  font-family: var(--gsb-font-display);
  color: var(--gsb-forest-900);
  font-size: 2rem;
}

.gsb-cart-empty-card p:not(.gsb-cart-kicker) {
  margin: 0 auto 20px;
  max-width: 420px;
  color: var(--gsb-ink-700);
}

.gsb-cart-empty-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 1080px) {
  .gsb-cart-page-layout {
    grid-template-columns: 1fr;
  }

  .gsb-cart-main {
    order: 1;
  }

  .gsb-cart-summary {
    grid-column: auto;
    grid-row: auto;
    order: 2;
    position: static;
  }

  .gsb-cart-recommendations {
    grid-column: auto;
    order: 3;
  }

  .gsb-cart-recommendation-grid {
    grid-auto-columns: minmax(176px, calc((100% - 14px) / 2));
  }
}

@media (max-width: 760px) {
  .gsb-search-empty {
    padding-top: 16px;
  }

  .gsb-search-empty h2 {
    max-width: none;
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  .gsb-search-empty__form {
    grid-template-columns: 1fr;
  }

  .gsb-search-empty__form .gsb-btn,
  .gsb-search-empty__form .gsb-btn {
    width: 100%;
  }

  .gsb-search-empty__actions {
    display: grid;
    gap: 8px;
    justify-items: start;
  }

  .gsb-search-empty__actions .gsb-btn {
    width: auto;
  }

  .gsb-search-empty__suggestions {
    gap: 6px 12px;
  }

  .gsb-search-empty__suggestions a::after {
    margin-left: 12px;
  }

  body.woocommerce-cart .woocommerce-notices-wrapper {
    margin-bottom: 12px;
  }

  .gsb-cart-panel-head,
  .gsb-cart-section-head,
  .gsb-cart-summary-head {
    display: grid;
  }

  .gsb-cart-list-head {
    display: none;
  }

  .gsb-cart-item {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: start;
    padding: 16px 46px 16px 0;
  }

  .gsb-cart-item-product {
    grid-column: 1 / -1;
    grid-template-columns: 68px minmax(0, 1fr);
  }

  .gsb-cart-item-media {
    width: 68px;
  }

  .gsb-cart-item-quantity {
    justify-self: start;
  }

  .gsb-cart-item-total {
    text-align: right;
  }

  .gsb-cart-item-remove {
    position: absolute;
    right: 0;
    top: 16px;
    transform: none;
  }

  .gsb-cart-item {
    position: relative;
  }

  .gsb-cart-inline-form {
    grid-template-columns: 1fr;
  }

  .gsb-cart-recommendation-grid {
    grid-auto-columns: minmax(168px, 62vw);
    gap: 12px;
  }

  .gsb-cart-recommendation-card {
    padding: 12px;
  }

  .gsb-cart-recommendation-media {
    height: 118px;
  }

  .gsb-cart-recommendation-card h3 {
    font-size: 0.86rem;
    line-height: 1.28;
  }

  .gsb-cart-recommendation-price {
    font-size: 0.94rem;
  }

  .gsb-cart-carousel-controls {
    justify-content: flex-start;
  }

  .gsb-cart-carousel-button {
    width: 36px;
    height: 36px;
  }
}

/* Reveal animation */
.reveal-up,
.reveal-scale {
  opacity: 0;
  transition: transform 0.7s var(--gsb-ease), opacity 0.7s var(--gsb-ease);
}

.reveal-up {
  transform: translateY(16px);
}

.reveal-scale {
  transform: scale(0.98);
}

.reveal-up.is-visible,
.reveal-scale.is-visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 1220px) {
  .gsb-store-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gsb-department-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gsb-buyflow-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1020px) {
  .gsb-header-main {
    grid-template-columns: auto 1fr auto;
  }

  .gsb-header-action-sub {
    display: none;
  }

  .gsb-header-action {
    min-width: 92px;
  }

  .gsb-header-whatsapp {
    display: none;
  }

  .gsb-header-nav {
    display: none;
  }

  .gsb-menu-toggle {
    display: inline-block;
  }

  .gsb-home-hero-grid {
    grid-template-columns: 1fr;
  }

  .gsb-promo-band-grid {
    grid-template-columns: 1fr;
  }

  .gsb-benefits-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .gsb-store-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gsb-department-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gsb-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gsb-woo-catalog-layout {
    grid-template-columns: 1fr;
  }

  .gsb-woo-catalog-sidebar {
    position: static;
    top: auto;
  }

  .gsb-single-product-main {
    grid-template-columns: 1fr;
  }

  .gsb-single-buybox {
    position: static;
    top: auto;
  }

  .gsb-single-shipping-row {
    grid-template-columns: 1fr;
  }

  .gsb-auth-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .gsb-home-banner-copy-wrap {
    width: min(100%, calc(100% - 32px));
    padding: 0 16px;
  }

  .gsb-home-banner-copy {
    width: min(100%, 22rem);
    gap: 10px;
  }

  .gsb-home-banner-kicker {
    font-size: 0.66rem;
    letter-spacing: 0.16em;
  }

  .gsb-home-banner-title {
    font-size: clamp(1.5rem, 3vw, 2.35rem);
    line-height: 0.98;
    max-width: 10ch;
  }

  .gsb-home-banner-text {
    max-width: 24ch;
    font-size: 0.86rem;
    line-height: 1.4;
  }

  .gsb-home-banner-actions .gsb-btn {
    min-height: 46px;
    padding-inline: 20px;
    font-size: 0.72rem;
  }

  .gsb-home-banner-track {
    aspect-ratio: 26 / 9;
  }
}

@media (max-width: 820px) {
  .gsb-home-banner-copy-wrap {
    width: min(100%, calc(100% - 24px));
    padding: 0 12px;
  }

  .gsb-home-banner-copy {
    width: min(100%, 23rem);
    gap: 8px;
  }

  .gsb-home-banner-kicker {
    font-size: 0.64rem;
    letter-spacing: 0.14em;
  }

  .gsb-home-banner-title {
    font-size: clamp(1.25rem, 2.6vw, 1.95rem);
    line-height: 0.96;
    max-width: 13ch;
  }

  .gsb-home-banner-text {
    max-width: 28ch;
    font-size: 0.88rem;
    line-height: 1.38;
  }

  .gsb-home-banner-actions .gsb-btn {
    min-height: 44px;
    padding-inline: 18px;
    font-size: 0.68rem;
  }

  .gsb-home-banner-track {
    aspect-ratio: 15 / 5.8;
  }
}

@media (max-width: 760px) {
  .gsb-header-strip {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 145;
  }

  .gsb-header {
    position: fixed;
    top: var(--gsb-header-strip-height, 34px);
    left: 0;
    right: 0;
    width: 100%;
    z-index: 140;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }

  .gsb-site-main {
    padding-top: var(--gsb-sticky-header-offset, 180px);
  }

  body.home .gsb-section {
    padding: 20px 0;
  }

  body.home .gsb-section-head {
    margin-bottom: 14px;
  }

  body.home .gsb-section-head h2 {
    font-size: clamp(1.3rem, 6vw, 1.8rem);
  }

  body.is-menu-open {
    overflow: hidden;
  }

  body.is-menu-open .gsb-header-search {
    visibility: hidden;
  }

  .gsb-container {
    width: min(var(--gsb-container), calc(100% - 20px));
  }

  .gsb-header-strip-inner {
    min-height: 34px;
  }

  .gsb-strip-marquee {
    mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(
      to right,
      transparent,
      #000 8%,
      #000 92%,
      transparent
    );
  }

  .gsb-strip-track {
    animation-duration: 42s;
  }

  .gsb-strip-benefits {
    padding-inline: 14px;
    gap: 20px;
    font-size: 0.72rem;
    letter-spacing: 0.03em;
  }

  .gsb-header-main {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
  }

  .gsb-header-search {
    grid-column: 1 / -1;
    order: 3;
  }

  .gsb-brand-link img {
    width: min(198px, 52vw);
  }

  .gsb-header-actions {
    justify-content: flex-end;
  }

  .gsb-header-search button {
    width: 56px;
    min-width: 56px;
    padding-inline: 0;
  }

  .gsb-search-button-label {
    display: none;
  }

  .gsb-search-button-icon {
    width: 18px;
    height: 18px;
  }

  .gsb-header-action {
    display: none;
  }

  .gsb-home-hero-copy h1 {
    max-width: 100%;
  }

  .gsb-store-grid,
  .gsb-department-grid,
  .gsb-buyflow-steps,
  .gsb-footer-grid {
    grid-template-columns: 1fr;
  }

  .gsb-benefits-strip {
    padding: 0;
  }

  .gsb-benefits-strip .gsb-container {
    padding-inline: 12px;
  }

  .gsb-benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    overflow: visible;
  }

  .gsb-benefit-item {
    grid-template-columns: 38px minmax(0, 1fr);
    align-content: stretch;
    align-items: center;
    justify-items: flex-start;
    gap: 10px;
    padding: 11px 0;
    min-height: 64px;
    border-right: 0;
    border-bottom: 1px solid rgba(24, 74, 51, 0.12);
  }

  .gsb-benefit-item:last-child {
    border-bottom: 0;
  }

  .gsb-benefit-icon {
    width: 30px;
    height: 30px;
  }

  .gsb-benefit-copy h3 {
    font-size: 0.74rem;
  }

  .gsb-benefit-copy p {
    font-size: 0.8rem;
  }

  .gsb-section-departments .gsb-department-grid,
  .gsb-section-shelf .gsb-store-grid {
    gap: 12px;
  }

  .gsb-section-shelf .gsb-shelf-carousel {
    gap: 8px;
    padding-inline: 30px;
  }

  .gsb-section-shelf .gsb-shelf-carousel .gsb-store-card {
    flex-basis: min(82vw, 320px);
  }

  .gsb-home-promo-banner {
    padding-top: 0;
    padding-bottom: 10px;
  }

  .gsb-home-promo-banner .gsb-container {
    width: min(var(--gsb-container), calc(100% - 20px));
  }

  .gsb-department-card,
  .gsb-store-card {
    border-radius: 14px;
    box-shadow: 0 10px 18px rgba(16, 47, 33, 0.1);
  }

  .gsb-department-content,
  .gsb-store-card-content {
    padding: 14px;
  }

  .gsb-store-card-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .gsb-shelf-carousel-bar {
    align-items: center;
  }

  .gsb-shelf-button {
    width: 40px;
    height: 40px;
  }

  .gsb-shelf-button svg {
    width: 16px;
    height: 16px;
  }

  .gsb-store-card-actions .gsb-btn {
    width: 100%;
    max-width: none;
  }

  .gsb-loop-buy-now {
    min-width: 0;
  }

  .gsb-section-head-row {
    flex-direction: column;
    align-items: flex-start;
  }

  body.home .gsb-section-cta {
    padding-top: 10px;
  }

  .gsb-cta-box {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .gsb-cta-actions {
    justify-content: flex-start;
  }

  .gsb-home-about {
    padding-top: 0;
    padding-bottom: 10px;
    background: linear-gradient(180deg, rgba(24, 74, 51, 0.025) 0%, rgba(255, 255, 255, 1) 100%);
  }

  .gsb-home-about-shell {
    grid-template-columns: 1fr;
    border-top: 1px solid rgba(24, 74, 51, 0.08);
    border-bottom: 1px solid rgba(24, 74, 51, 0.08);
  }

  .gsb-home-about-story {
    padding: 18px 0 14px;
    border-right: 0;
    border-bottom: 1px solid rgba(24, 74, 51, 0.08);
  }

  .gsb-home-newsletter {
    padding: 14px 0 18px;
  }

  .gsb-footer-trust-column {
    gap: 10px;
  }

  .gsb-footer-trust-label {
    font-size: 0.8rem;
  }

  .gsb-footer-trust-media {
    max-width: 100%;
  }

  .gsb-footer-trust-item-payments .gsb-footer-trust-media {
    max-width: min(100%, 214px);
  }

  .gsb-footer-trust-item-security .gsb-footer-trust-media {
    max-width: min(100%, 150px);
  }

  .gsb-footer-bottom-inner {
    min-height: auto;
    padding: 12px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .gsb-footer-legal-name,
  .gsb-footer-legal-cnpj {
    width: 100%;
  }

  .woocommerce-checkout #customer_details .col2-set,
  .woocommerce-account .woocommerce:has(.woocommerce-MyAccount-navigation) {
    grid-template-columns: 1fr;
  }

  .gsb-single-gallery .woocommerce-product-gallery__image {
    min-height: 340px;
  }

  .gsb-single-gallery .woocommerce-product-gallery__image img {
    max-height: 380px;
  }

  .woocommerce div.product.gsb-single-product .product_title {
    font-size: 1.8rem;
  }

  .woocommerce div.product.gsb-single-product form.cart {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal-up,
  .reveal-scale {
    opacity: 1;
    transform: none;
  }
}

@supports (zoom: 1) {
  @media (min-width: 1200px) {
    html {
      zoom: var(--gsb-desktop-ui-zoom);
    }
  }
}

/* Refinements | 2026-05-29 */
.gsb-home-banner {
  padding: 0;
  overflow: hidden;
}

.gsb-home-banner .gsb-container {
  width: 100%;
  max-width: none;
  margin: 0;
}

.gsb-home-banner-slider {
  position: relative;
  border-radius: 0;
  border: 0;
  background: #fff;
  box-shadow: none;
  overflow: hidden;
}

.gsb-home-banner-track {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 1;
  min-height: 0;
  height: auto;
}

.gsb-home-banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
  transition:
    opacity 0.52s var(--gsb-ease),
    transform 0.9s var(--gsb-ease),
    visibility 0.52s var(--gsb-ease);
}

.gsb-home-banner-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

.gsb-home-banner-slide::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: min(18%, 96px);
  pointer-events: none;
  background: linear-gradient(to top, rgba(14, 37, 27, 0.14), rgba(14, 37, 27, 0));
}

.gsb-home-banner-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(251, 248, 242, 0.82) 0%,
      rgba(251, 248, 242, 0.76) 22%,
      rgba(251, 248, 242, 0.46) 40%,
      rgba(251, 248, 242, 0.16) 58%,
      rgba(251, 248, 242, 0) 78%
    );
}

.gsb-home-banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.gsb-home-banner-slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.gsb-home-banner-copy-wrap {
  position: absolute;
  inset: 0;
  width: min(var(--gsb-container), calc(100% - 48px));
  margin-inline: auto;
  z-index: 3;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 clamp(24px, 4vw, 72px);
  pointer-events: none;
}

.gsb-home-banner-copy {
  width: min(100%, 31rem);
  display: grid;
  gap: 12px;
  pointer-events: auto;
}

.gsb-home-banner-kicker {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(24, 74, 51, 0.86);
}

.gsb-home-banner-title {
  margin: 0;
  font-family: var(--gsb-font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.3vw, 3.35rem);
  line-height: 1;
  letter-spacing: 0;
  color: #143a29;
  text-wrap: balance;
  max-width: 11ch;
  overflow-wrap: anywhere;
}

.gsb-home-banner-text {
  margin: 0;
  max-width: 29rem;
  font-size: clamp(0.94rem, 1.05vw, 1.08rem);
  line-height: 1.5;
  color: rgba(27, 35, 31, 0.88);
}

.gsb-home-banner-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 6px;
}

.gsb-home-banner-actions .gsb-btn {
  min-height: 50px;
  padding-inline: 26px;
  box-shadow: 0 16px 28px rgba(18, 53, 38, 0.16);
}

.gsb-home-banner-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(24, 74, 51, 0.2);
  background: rgba(255, 255, 255, 0.92);
  color: var(--gsb-forest-900);
  display: inline-grid;
  place-items: center;
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 0.2s var(--gsb-ease),
    background-color 0.2s var(--gsb-ease),
    box-shadow 0.2s var(--gsb-ease),
    color 0.2s var(--gsb-ease);
}

.gsb-home-banner-arrow:hover,
.gsb-home-banner-arrow:focus-visible {
  transform: translateY(-50%) scale(1.05);
  background: #fff;
  color: var(--gsb-forest-800);
  box-shadow: 0 12px 20px rgba(14, 40, 29, 0.18);
}

.gsb-home-banner-arrow:focus-visible {
  outline: 2px solid rgba(24, 74, 51, 0.45);
  outline-offset: 2px;
}

.gsb-home-banner-arrow-prev {
  left: 14px;
}

.gsb-home-banner-arrow-next {
  right: 14px;
}

.gsb-home-banner-dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  z-index: 5;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
}

.gsb-home-banner-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  padding: 0;
  transition:
    width 0.24s var(--gsb-ease),
    background-color 0.24s var(--gsb-ease),
    transform 0.24s var(--gsb-ease);
}

.gsb-home-banner-dot.is-active {
  width: 30px;
  background: var(--gsb-white);
}

.gsb-home-banner-dot:hover,
.gsb-home-banner-dot:focus-visible {
  transform: scale(1.08);
  background: #fff;
}

.gsb-home-banner-dot:focus-visible {
  outline: 2px solid rgba(24, 74, 51, 0.45);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .gsb-home-banner-slide {
    transition: none;
    transform: none;
  }

  .gsb-home-banner-arrow,
  .gsb-home-banner-dot {
    transition: none;
  }
}

.gsb-header-checkout-mode {
  position: sticky;
  top: 0;
  z-index: 90;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(24, 74, 51, 0.14);
}

.gsb-header-checkout-inner {
  min-height: 82px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gsb-header-checkout-mode .gsb-brand-link img {
  width: min(260px, 72vw);
}

.gsb-site-main-checkout {
  padding-top: 18px;
}

.gsb-cart-icon,
.gsb-whatsapp-icon {
  display: inline-grid;
  place-items: center;
}

.gsb-cart-icon svg {
  width: 18px;
  height: 18px;
}

.gsb-whatsapp-icon {
  margin-right: 8px;
}

.gsb-whatsapp-icon svg {
  width: 18px;
  height: 18px;
}

.gsb-header-action.gsb-header-cart {
  display: inline-flex;
  min-width: 100px;
  padding: 2px 4px;
}

.gsb-header-action.gsb-header-cart .gsb-cart-icon {
  width: 32px;
  height: 32px;
  color: var(--gsb-forest-800);
}

.gsb-header-action.gsb-header-cart .gsb-cart-icon svg {
  width: 28px;
  height: 28px;
}

.gsb-header-action.gsb-header-cart .gsb-header-action-title {
  line-height: 1.1;
}

.gsb-header-action.gsb-header-cart .gsb-header-cart-count {
  top: -4px;
  right: -6px;
}

.gsb-woo-catalog-sidebar {
  top: var(--gsb-sticky-header-offset);
}

.gsb-search-heading {
  margin-bottom: 14px;
}

.gsb-search-heading h1 {
  margin: 0;
  font-family: var(--gsb-font-display);
  font-size: clamp(1.65rem, 3vw, 2.75rem);
  line-height: 1.08;
  color: #173f2d;
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  content: none !important;
  display: none !important;
}

.woocommerce ul.products[class*="columns-"] li.product,
.woocommerce-page ul.products[class*="columns-"] li.product {
  width: auto !important;
  margin: 0 !important;
  float: none !important;
  clear: none !important;
}

.woocommerce ul.products li.product {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(24, 74, 51, 0.14);
  background: #fff;
  box-shadow: var(--gsb-shadow-soft);
  overflow: hidden;
  transition:
    transform 0.24s var(--gsb-ease),
    box-shadow 0.24s var(--gsb-ease);
}

.woocommerce ul.products li.product:hover,
.woocommerce ul.products li.product:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 18px 30px rgba(14, 40, 29, 0.16);
  z-index: 8;
}

.woocommerce ul.products li.product .woocommerce-LoopProduct-link {
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 6px;
  align-content: start;
  width: 100%;
  text-align: center;
  text-decoration: none;
}

.woocommerce ul.products li.product .woocommerce-LoopProduct-link::before,
.woocommerce ul.products li.product .gsb-loop-media-overlay {
  display: none !important;
}

.woocommerce ul.products li.product .gsb-loop-media-frame {
  position: relative;
  isolation: isolate;
  width: calc(100% + 20px);
  margin-inline: -10px;
  height: 174px;
  min-height: 0;
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid rgba(24, 74, 51, 0.08);
}

.woocommerce ul.products li.product .gsb-loop-media-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 174px;
  margin: 0;
  padding: 6px 10px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
  object-position: center center;
  mix-blend-mode: normal;
  filter: none;
  opacity: 0;
  transform: translate3d(0, 8px, 0) scale(1.01);
  transition:
    opacity 0.45s var(--gsb-ease),
    transform 0.6s var(--gsb-ease),
    filter 0.3s var(--gsb-ease);
}

.woocommerce ul.products li.product .gsb-loop-media-img.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.woocommerce ul.products li.product:hover .gsb-loop-media-img.is-active,
.woocommerce ul.products li.product:focus-within .gsb-loop-media-img.is-active {
  filter: none;
}

.woocommerce ul.products li.product .gsb-loop-card-category {
  margin: 0;
  padding-top: 4px;
  font-size: 0.68rem;
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gsb-ink-500);
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  margin: 0;
  padding-top: 0;
  min-height: 2.35em;
  font-size: 0.98rem;
  line-height: 1.16;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-wrap: balance;
}

.woocommerce ul.products li.product .price {
  margin: 0;
  min-height: 46px;
  font-size: 1.34rem;
  line-height: 1;
  letter-spacing: 0;
  color: var(--gsb-forest-800);
  font-weight: 800;
  display: grid;
  place-items: center;
}

.woocommerce ul.products li.product .price .gsb-price-from {
  width: 100%;
  justify-items: center;
  gap: 4px;
}

.woocommerce ul.products li.product .price .gsb-price-from__label {
  color: rgba(24, 74, 51, 0.58);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
}

.woocommerce ul.products li.product .price .gsb-price-from__value {
  color: var(--gsb-forest-800);
  font-size: 1.28rem;
  font-weight: 900;
}

.woocommerce ul.products li.product .button {
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: none;
  min-height: 40px;
  padding: 0 18px;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
  margin-top: auto;
}

.woocommerce ul.products li.product .button.gsb-loop-buy-now {
  background: linear-gradient(135deg, var(--gsb-gold-500), #b6852a);
  box-shadow: 0 10px 20px rgba(157, 113, 28, 0.28);
}

.woocommerce ul.products li.product .gsb-loop-view-product-link {
  position: absolute;
  left: 50%;
  bottom: -44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 20px);
  min-height: 36px;
  margin-top: 0;
  border-radius: 7px;
  border: 1px solid rgba(24, 74, 51, 0.2);
  color: var(--gsb-forest-800);
  background: #fff;
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 800;
  box-shadow: 0 8px 14px rgba(14, 40, 29, 0.08);
  opacity: 0;
  visibility: hidden;
  padding: 0 14px;
  overflow: visible;
  pointer-events: none;
  z-index: 10;
  transform: translate(-50%, 6px);
  transition:
    opacity 0.22s var(--gsb-ease),
    transform 0.22s var(--gsb-ease),
    visibility 0.22s var(--gsb-ease);
}

.woocommerce ul.products li.product:hover .gsb-loop-view-product-link,
.woocommerce ul.products li.product:focus-within .gsb-loop-view-product-link {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.gsb-store-card-actions a.added_to_cart,
.woocommerce ul.products li.product a.added_to_cart,
.woocommerce ul.products li.product a.added_to_cart.wc-forward {
  display: none !important;
}

@media (max-width: 1280px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1220px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .woocommerce ul.products {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .woocommerce ul.products li.product .gsb-loop-media-frame {
    height: 170px;
    min-height: 0;
  }

  .woocommerce ul.products li.product .gsb-loop-media-img {
    height: 170px;
  }

  .woocommerce ul.products li.product .price {
    font-size: 1.22rem;
  }
}

@media (hover: none), (pointer: coarse) {
  .gsb-store-card-media-overlay,
  .woocommerce ul.products li.product .gsb-loop-media-overlay {
    display: none !important;
  }

  .gsb-store-view-product-link,
  .woocommerce ul.products li.product .gsb-loop-view-product-link {
    display: none !important;
  }
}

.woocommerce .quantity {
  width: 100%;
  max-width: 170px;
  display: inline-grid;
  grid-template-columns: 40px minmax(58px, 1fr) 40px;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(24, 74, 51, 0.2);
  background: #fff;
  overflow: hidden;
}

.woocommerce .quantity .qty {
  width: 100%;
  min-height: 44px;
  height: 44px;
  border: 0;
  border-left: 1px solid rgba(24, 74, 51, 0.14);
  border-right: 1px solid rgba(24, 74, 51, 0.14);
  border-radius: 0;
  text-align: center;
  font-weight: 700;
  padding: 0;
  appearance: textfield;
  -moz-appearance: textfield;
}

.woocommerce .quantity .qty::-webkit-outer-spin-button,
.woocommerce .quantity .qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.gsb-qty-btn {
  width: 100%;
  min-height: 44px;
  border: 0;
  background: #f0f5f1;
  color: var(--gsb-forest-800);
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
}

.gsb-qty-btn:hover {
  background: #e2ece5;
}

.woocommerce div.product.gsb-single-product form.cart .quantity {
  max-width: 210px;
}

.woocommerce div.product.gsb-single-product form.cart .quantity .qty,
.woocommerce div.product.gsb-single-product form.cart .quantity .gsb-qty-btn {
  min-height: 52px;
  height: 52px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  border-bottom: 1px solid rgba(24, 74, 51, 0.16);
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
  display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  margin: 0;
  border-radius: 999px;
  border: 1px solid rgba(24, 74, 51, 0.2);
  background: #f5f8f6;
  padding: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
  display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  padding: 10px 16px;
  color: #315044;
  font-size: 0.94rem;
  font-weight: 800;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  background: #fff;
  border-color: rgba(24, 74, 51, 0.34);
}

.woocommerce div.product .woocommerce-tabs .panel {
  margin: 0;
  padding: 0;
}

.woocommerce .related h2,
.woocommerce .upsells h2 {
  margin-top: 0;
  margin-bottom: 14px;
  font-family: var(--gsb-font-display);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  color: #173f2d;
}

.woocommerce .related ul.products li.product .button,
.woocommerce .upsells ul.products li.product .button {
  margin-top: 10px;
}

.gsb-product-description-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.gsb-product-description-list li {
  border-radius: 10px;
  border: 1px solid rgba(24, 74, 51, 0.14);
  background: #f7faf7;
  padding: 10px 12px;
  line-height: 1.5;
}

.woocommerce #reviews #comments ol.commentlist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.woocommerce #reviews #comments ol.commentlist li {
  border: 1px solid rgba(24, 74, 51, 0.14);
  border-radius: 12px;
  background: #fff;
  padding: 14px;
  margin-bottom: 10px;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text {
  margin: 0;
  border: 0;
  padding: 0;
}

.woocommerce #reviews #comments ol.commentlist li img.avatar {
  border-radius: 999px;
  border: 1px solid rgba(24, 74, 51, 0.18);
  padding: 0;
  background: #fff;
}

.woocommerce #review_form #respond {
  border: 1px solid rgba(24, 74, 51, 0.14);
  border-radius: 12px;
  background: #f9fcfa;
  padding: 14px;
}

.woocommerce .woocommerce-info,
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-error {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  border-radius: 12px;
  border: 1px solid rgba(24, 74, 51, 0.16);
  background: #f7fbf8;
  color: var(--gsb-ink-900);
}

.woocommerce .woocommerce-info::before,
.woocommerce .woocommerce-message::before,
.woocommerce .woocommerce-error::before {
  position: static;
  margin-right: 0;
}

.woocommerce .woocommerce-info a.button,
.woocommerce .woocommerce-message a.button,
.woocommerce .woocommerce-error a.button {
  margin: 0;
  min-height: 36px;
  padding-inline: 14px;
}

.woocommerce-notices-wrapper:empty {
  display: none;
}

body.gsb-cart-drawer-open {
  overflow: hidden;
}

.gsb-cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 230;
  pointer-events: none;
}

.gsb-cart-drawer[hidden] {
  display: none;
}

.gsb-cart-drawer.is-open {
  pointer-events: auto;
}

.gsb-cart-drawer-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(14, 31, 24, 0.36);
  opacity: 0;
  transition: opacity 0.24s var(--gsb-ease);
  cursor: default;
}

.gsb-cart-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(92vw, 400px);
  height: 100dvh;
  background: #f7fbf8;
  border-left: 1px solid rgba(24, 74, 51, 0.16);
  box-shadow: -24px 0 38px rgba(10, 30, 22, 0.24);
  padding: calc(16px + env(safe-area-inset-top)) 16px calc(20px + env(safe-area-inset-bottom));
  display: grid;
  align-content: start;
  gap: 14px;
  transform: translateX(105%);
  transition: transform 0.28s var(--gsb-ease);
}

.gsb-cart-drawer.is-open .gsb-cart-drawer-backdrop {
  opacity: 1;
}

.gsb-cart-drawer.is-open .gsb-cart-drawer-panel {
  transform: translateX(0);
}

.gsb-cart-drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.gsb-cart-drawer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gsb-forest-800);
}

.gsb-cart-drawer-badge svg {
  width: 18px;
  height: 18px;
  color: var(--gsb-success);
}

.gsb-cart-drawer-close {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(24, 74, 51, 0.22);
  background: #fff;
  color: var(--gsb-forest-800);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
}

.gsb-cart-drawer-close svg {
  width: 18px;
  height: 18px;
}

.gsb-cart-drawer-text {
  display: grid;
  gap: 8px;
}

.gsb-cart-drawer-title {
  margin: 0;
  font-family: var(--gsb-font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  line-height: 1.08;
  color: #173f2d;
}

.gsb-cart-drawer-message {
  margin: 0;
  color: var(--gsb-ink-700);
  line-height: 1.45;
}

.gsb-cart-drawer-item-wrap {
  display: grid;
  gap: 12px;
  min-height: 126px;
  max-height: min(52vh, 520px);
  overflow: auto;
  padding-right: 2px;
  overscroll-behavior: contain;
}

.gsb-cart-drawer-list {
  display: grid;
  gap: 12px;
}

.gsb-cart-drawer-summary {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gsb-forest-700);
}

.gsb-cart-drawer-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  border-radius: 14px;
  border: 1px solid rgba(24, 74, 51, 0.14);
  background: #fff;
  box-shadow: 0 12px 26px rgba(13, 42, 30, 0.1);
  padding: 10px;
}

.gsb-cart-drawer-item.is-featured {
  border-color: rgba(24, 74, 51, 0.24);
  box-shadow: 0 16px 30px rgba(13, 42, 30, 0.14);
}

.gsb-cart-drawer-item-media {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(24, 74, 51, 0.1);
  background: linear-gradient(160deg, #f4f8f5 0%, #eaf0ec 100%);
  aspect-ratio: 1 / 1;
  min-height: 0;
}

.gsb-cart-drawer-item-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
  padding: 8px;
}

.gsb-cart-drawer-item-body {
  display: grid;
  gap: 8px;
}

.gsb-cart-drawer-item-pending {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(24, 74, 51, 0.08);
  color: var(--gsb-forest-700);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gsb-cart-drawer-item-name {
  margin: 0;
  color: var(--gsb-ink-900);
  font-size: 0.96rem;
  line-height: 1.32;
  font-weight: 700;
}

.gsb-cart-drawer-item-name:hover {
  color: var(--gsb-forest-800);
}

.gsb-cart-drawer-item-meta {
  margin: 0;
  color: rgba(23, 61, 45, 0.72);
  font-size: 0.82rem;
  line-height: 1.35;
}

.gsb-cart-drawer-item-price {
  margin: 0;
  color: var(--gsb-forest-800);
  font-size: 0.9rem;
  font-weight: 800;
}

.gsb-cart-drawer-item-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gsb-cart-drawer-qty {
  display: grid;
  grid-template-columns: 34px 58px 34px;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(24, 74, 51, 0.18);
  background: #fff;
  overflow: hidden;
}

.gsb-cart-drawer-qty-btn {
  min-height: 36px;
  border: 0;
  background: #eef4f0;
  color: var(--gsb-forest-800);
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 0.2s var(--gsb-ease);
}

.gsb-cart-drawer-qty-btn:hover,
.gsb-cart-drawer-qty-btn:focus-visible {
  background: #dfeae3;
}

.gsb-cart-drawer-qty-btn:disabled,
.gsb-cart-drawer-qty-input:disabled,
.gsb-cart-drawer-remove:disabled {
  cursor: progress;
  opacity: 0.55;
  pointer-events: none;
}

.gsb-cart-drawer-qty-input {
  min-height: 36px;
  border: 0;
  border-left: 1px solid rgba(24, 74, 51, 0.16);
  border-right: 1px solid rgba(24, 74, 51, 0.16);
  text-align: center;
  font-weight: 700;
  color: var(--gsb-ink-900);
  padding: 0;
  width: 100%;
  background: #fff;
}

.gsb-cart-drawer-qty-input::-webkit-outer-spin-button,
.gsb-cart-drawer-qty-input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.gsb-cart-drawer-qty-input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}

.gsb-cart-drawer-remove {
  width: 38px;
  min-width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(24, 74, 51, 0.2);
  background: #fff;
  color: #214d38;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  transition:
    transform 0.2s var(--gsb-ease),
    background-color 0.2s var(--gsb-ease),
    border-color 0.2s var(--gsb-ease),
    color 0.2s var(--gsb-ease);
}

.gsb-cart-drawer-remove svg {
  width: 16px;
  height: 16px;
}

.gsb-cart-drawer-remove:hover,
.gsb-cart-drawer-remove:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(146, 24, 24, 0.36);
  background: #fff6f6;
  color: #8f2222;
}

.gsb-cart-drawer-item-empty {
  border-radius: 12px;
  border: 1px dashed rgba(24, 74, 51, 0.24);
  background: #f8fcf9;
  color: var(--gsb-ink-700);
  padding: 12px;
  font-size: 0.92rem;
  line-height: 1.4;
}

.gsb-cart-drawer-status {
  margin: 0;
  border-radius: 10px;
  border: 1px solid rgba(24, 74, 51, 0.16);
  background: #f1f8f3;
  color: var(--gsb-forest-800);
  font-size: 0.82rem;
  line-height: 1.35;
  padding: 9px 10px;
}

.gsb-cart-drawer-status.is-error {
  border-color: rgba(146, 24, 24, 0.28);
  background: #fff5f5;
  color: #7d1f1f;
}

.gsb-cart-drawer-panel.is-loading .gsb-cart-drawer-item {
  opacity: 0.78;
}

.gsb-cart-drawer-actions {
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

.gsb-cart-drawer-actions .gsb-btn {
  width: 100%;
}

@media (max-width: 760px) {
  .gsb-cart-drawer-panel {
    width: 100%;
    max-width: 100%;
    border-left: 0;
  }

  .gsb-cart-drawer-item {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 10px;
  }

  .gsb-cart-drawer-item-wrap {
    max-height: min(46vh, 440px);
  }

  .gsb-cart-drawer-item-media {
    min-height: 0;
  }

  .gsb-cart-drawer-item-media img {
    padding: 6px;
  }
}

.woocommerce-cart table.cart td.actions .coupon {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.woocommerce-cart table.cart td.actions .coupon input.input-text {
  min-height: 42px;
  min-width: 200px;
  border-radius: 999px;
  border: 1px solid rgba(24, 74, 51, 0.18);
  padding: 0 14px;
}

.woocommerce-cart .cart-collaterals .cart_totals {
  width: 100%;
  max-width: 420px;
  margin-left: auto;
}

.woocommerce-cart .wc-proceed-to-checkout {
  margin-bottom: 0;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  width: 100%;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.woocommerce-checkout form.checkout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 14px;
  align-items: start;
}

.woocommerce-checkout #customer_details {
  grid-column: 1;
  margin-bottom: 0;
}

.woocommerce-checkout #order_review_heading {
  grid-column: 2;
  margin: 0;
  font-family: var(--gsb-font-display);
  font-size: 1.45rem;
  line-height: 1.08;
  color: #173f2d;
}

.woocommerce-checkout #order_review {
  grid-column: 2;
}

.woocommerce-checkout #order_review .shop_table {
  margin-bottom: 14px;
}

.woocommerce-checkout #payment .place-order {
  margin-bottom: 0;
}

.woocommerce-checkout #payment .place-order .button {
  width: 100%;
  min-height: 50px;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table th,
.woocommerce-checkout .woocommerce-checkout-review-order-table td {
  padding: 10px;
}

.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout .woocommerce-additional-fields h3,
.woocommerce-checkout .shipping_address h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.1rem;
  color: #173f2d;
}

.gsb-auth-layout-single {
  max-width: 640px;
  margin-inline: auto;
}

.gsb-auth-card-combined {
  border-radius: 14px;
}

.gsb-auth-toggle {
  margin-bottom: 14px;
  border: 1px solid rgba(24, 74, 51, 0.18);
  border-radius: 999px;
  background: #f2f7f3;
  padding: 4px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
}

.gsb-auth-toggle-btn {
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #385548;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.2s var(--gsb-ease),
    box-shadow 0.2s var(--gsb-ease),
    background-color 0.2s var(--gsb-ease),
    color 0.2s var(--gsb-ease);
}

.gsb-auth-toggle-btn:hover,
.gsb-auth-toggle-btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 8px 14px rgba(17, 52, 36, 0.14);
}

.gsb-auth-toggle-btn:active {
  transform: translateY(0) scale(0.99);
}

.gsb-auth-toggle-btn:focus-visible {
  outline: 2px solid rgba(24, 74, 51, 0.42);
  outline-offset: 2px;
}

.gsb-auth-toggle-btn.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--gsb-forest-700), var(--gsb-forest-900));
}

.gsb-auth-view {
  display: none;
}

.gsb-auth-view.is-active {
  display: block;
}

.gsb-auth-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.gsb-auth-actions .button {
  width: auto;
  min-width: 190px;
}

.woocommerce-LostPassword.lost_password {
  margin-top: 10px;
  margin-bottom: 0;
}

.woocommerce-LostPassword.lost_password a {
  font-weight: 700;
  color: var(--gsb-forest-800);
}

.gsb-cart-empty {
  padding: 12px 0;
}

.gsb-cart-empty-card {
  border-radius: 14px;
  border: 1px solid rgba(24, 74, 51, 0.14);
  background: #fff;
  box-shadow: var(--gsb-shadow-soft);
  padding: clamp(18px, 4vw, 30px);
  display: grid;
  gap: 10px;
  justify-items: start;
}

.gsb-cart-empty-card h2 {
  margin: 0;
  font-family: var(--gsb-font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.3rem);
  color: #173f2d;
}

.gsb-cart-empty-card p {
  margin: 0;
  color: var(--gsb-ink-700);
}

@media (max-width: 1020px) {
  .gsb-home-promo-banner-frame {
    aspect-ratio: 16 / 10;
  }

  .gsb-home-promo-banner-frame::before {
    background:
      linear-gradient(90deg, rgba(247, 250, 245, 0.95) 0%, rgba(247, 250, 245, 0.88) 34%, rgba(247, 250, 245, 0.48) 58%, rgba(247, 250, 245, 0.1) 78%, rgba(247, 250, 245, 0) 100%),
      linear-gradient(180deg, rgba(9, 35, 24, 0.06) 0%, rgba(9, 35, 24, 0.02) 32%, rgba(9, 35, 24, 0.14) 100%);
  }

  .gsb-home-promo-banner-copy {
    width: min(56%, 500px);
    padding: clamp(24px, 4vw, 38px);
    gap: 12px;
  }

  .gsb-home-promo-banner-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
  }

  .gsb-home-promo-banner-text {
    max-width: 30ch;
    font-size: clamp(0.94rem, 1.5vw, 1.05rem);
  }

  .gsb-woo-catalog-sidebar {
    position: static;
  }

  .woocommerce-checkout form.checkout {
    grid-template-columns: 1fr;
  }

  .woocommerce-checkout #order_review_heading,
  .woocommerce-checkout #order_review {
    grid-column: 1;
  }
}

@media (max-width: 760px) {
  .gsb-home-promo-banner {
    padding-top: 0;
    padding-bottom: 10px;
  }

  .gsb-home-promo-banner .gsb-container {
    width: min(var(--gsb-container), calc(100% - 20px));
  }

  .gsb-home-promo-banner-frame {
    aspect-ratio: 5 / 6.3;
  }

  .gsb-home-promo-banner-frame::before {
    background:
      linear-gradient(180deg, rgba(247, 250, 245, 0.95) 0%, rgba(247, 250, 245, 0.88) 34%, rgba(247, 250, 245, 0.42) 60%, rgba(247, 250, 245, 0.1) 78%, rgba(247, 250, 245, 0) 100%),
      linear-gradient(180deg, rgba(9, 35, 24, 0.04) 0%, rgba(9, 35, 24, 0.18) 100%);
  }

  .gsb-home-promo-banner-copy {
    width: 100%;
    max-width: none;
    inset: 0;
    align-content: center;
    justify-items: center;
    gap: 10px;
    padding: 22px 18px 18px;
    text-align: center;
  }

  .gsb-home-promo-banner-kicker {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  .gsb-home-promo-banner-title {
    max-width: 12ch;
    font-size: clamp(1.55rem, 7.6vw, 2.25rem);
    line-height: 0.96;
  }

  .gsb-home-promo-banner-text {
    max-width: 28ch;
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .gsb-home-promo-banner-cta {
    margin-top: 2px;
  }

  .gsb-home-promo-banner-cta {
    min-height: 48px;
    padding-inline: 22px;
    font-size: 0.76rem;
  }

  .gsb-home-banner {
    padding-top: 0;
  }

  .gsb-home-banner .gsb-container {
    width: 100%;
    margin: 0;
  }

  .gsb-home-banner-slider {
    border-radius: 0;
    border: 0;
    background: #fff;
    box-shadow: none;
  }

  .gsb-home-banner-track,
  .gsb-home-banner-image {
    min-height: 0;
    height: auto;
  }

  .gsb-home-banner-track {
    aspect-ratio: auto;
    height: clamp(360px, 92vw, 480px);
  }

  .gsb-home-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    background: #fff;
  }

  .gsb-home-banner-slide::before {
    background:
      linear-gradient(
        180deg,
        rgba(251, 248, 242, 0.08) 0%,
        rgba(251, 248, 242, 0.06) 24%,
        rgba(251, 248, 242, 0.4) 58%,
        rgba(251, 248, 242, 0.72) 82%,
        rgba(251, 248, 242, 0.86) 100%
      );
  }

  .gsb-home-banner-slide[data-slide-index="1"]::before {
    background:
      linear-gradient(
        180deg,
        rgba(245, 248, 242, 0.1) 0%,
        rgba(245, 248, 242, 0.12) 20%,
        rgba(245, 248, 242, 0.44) 50%,
        rgba(245, 248, 242, 0.74) 78%,
        rgba(245, 248, 242, 0.88) 100%
      );
  }

  .gsb-home-banner-slide::after {
    height: 0;
  }

  .gsb-home-banner-copy-wrap {
    align-items: flex-end;
    width: min(100%, calc(100% - 20px));
    padding: 24px 18px 62px;
  }

  .gsb-home-banner-copy {
    width: min(100%, 19rem);
    gap: 10px;
  }

  .gsb-home-banner-kicker {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
  }

  .gsb-home-banner-title {
    font-size: clamp(1.55rem, 6.4vw, 2.15rem);
    line-height: 0.98;
    max-width: 10.5ch;
  }

  .gsb-home-banner-text {
    font-size: 0.92rem;
    line-height: 1.45;
    max-width: 26ch;
  }

  .gsb-home-banner-actions .gsb-btn {
    width: auto;
    min-height: 48px;
    padding-inline: 22px;
    box-shadow: 0 12px 22px rgba(18, 53, 38, 0.16);
  }

  .gsb-home-banner-arrow {
    width: 38px;
    height: 38px;
    font-size: 1.5rem;
  }

  .gsb-home-banner-arrow-prev {
    left: 10px;
  }

  .gsb-home-banner-arrow-next {
    right: 10px;
  }

  .gsb-home-banner-dots {
    bottom: 10px;
  }

  .gsb-header-main {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .gsb-header-action {
    display: none;
  }

  .gsb-header-action.gsb-header-cart {
    display: inline-grid;
    place-items: center;
    width: 48px;
    min-height: 48px;
    padding: 0;
    min-width: 0;
    gap: 0;
  }

  .gsb-header-action.gsb-header-cart .gsb-header-action-title,
  .gsb-header-action.gsb-header-cart .gsb-header-action-sub {
    display: none;
  }

  .gsb-header-action.gsb-header-cart .gsb-cart-icon {
    width: 30px;
    height: 30px;
  }

  .gsb-header-action.gsb-header-cart .gsb-header-cart-count {
    top: -6px;
    right: -6px;
  }

  .gsb-menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .gsb-menu-toggle-line {
    width: 22px;
    margin: 2.5px 0;
  }

  .woocommerce .woocommerce-info,
  .woocommerce .woocommerce-message,
  .woocommerce .woocommerce-error {
    grid-template-columns: 1fr;
  }

  .gsb-auth-actions .button {
    width: 100%;
    min-width: 0;
  }

  .woocommerce-cart table.cart td.actions .coupon input.input-text {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 520px) {
  .gsb-benefit-item {
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 10px 0;
    min-height: 60px;
  }

  .gsb-benefit-icon {
    width: 27px;
    height: 27px;
  }

  .gsb-benefit-copy h3 {
    font-size: 0.74rem;
  }

  .gsb-benefit-copy p {
    font-size: 0.78rem;
  }
}

.gsb-btn-primary:hover,
.gsb-btn-primary:focus-visible {
  color: #fff !important;
  background: linear-gradient(135deg, var(--gsb-forest-700), var(--gsb-forest-900)) !important;
}

.gsb-btn-outline:hover,
.gsb-btn-outline:focus-visible {
  color: var(--gsb-forest-900) !important;
  background: #fff !important;
  border-color: var(--gsb-forest-800) !important;
}

.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:focus-visible,
.woocommerce a.button:focus-visible,
.woocommerce button.button:focus-visible,
.woocommerce input.button:focus-visible {
  color: #fff !important;
  background: linear-gradient(135deg, var(--gsb-forest-700), var(--gsb-forest-900)) !important;
  border-color: transparent !important;
}

.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
  color: #fff !important;
  background: linear-gradient(135deg, var(--gsb-gold-500), #b6852a) !important;
}

.gsb-header-action:hover,
.gsb-header-action:focus-visible {
  background: transparent;
  color: var(--gsb-forest-800);
}

/* Transactional WooCommerce polish */
body:not(.home) .gsb-woo-panel-shell {
  padding-top: clamp(24px, 4vw, 42px);
}

body:not(.home) .gsb-woo-panel-header {
  max-width: 760px;
  margin: 0 auto clamp(18px, 2.8vw, 28px);
  text-align: center;
}

body:not(.home) .gsb-woo-panel-header h1 {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1;
}

body:not(.home) .gsb-woo-panel-header p {
  max-width: 58ch;
  margin-inline: auto;
}

body:not(.home) .gsb-woo-panel-content {
  max-width: 1180px;
  margin-inline: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

body:not(.home) .gsb-woo-panel-content > .woocommerce {
  width: 100%;
}

body:not(.home) .woocommerce .woocommerce-notices-wrapper:not(:empty) {
  margin-bottom: 16px;
}

body:not(.home) .woocommerce .woocommerce-message,
body:not(.home) .woocommerce .woocommerce-info,
body:not(.home) .woocommerce .woocommerce-error {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin: 0 0 14px;
  border: 1px solid rgba(24, 74, 51, 0.14);
  border-left: 4px solid var(--gsb-forest-700);
  border-radius: 10px;
  background: #fff;
  color: var(--gsb-ink-900);
  box-shadow: 0 12px 26px rgba(18, 42, 31, 0.08);
  padding: 14px 16px;
  line-height: 1.45;
  list-style: none;
}

body:not(.home) .woocommerce .woocommerce-error {
  border-left-color: var(--gsb-danger);
}

body:not(.home) .woocommerce .woocommerce-info {
  border-left-color: var(--gsb-gold-500);
}

body:not(.home) .woocommerce .woocommerce-message::before,
body:not(.home) .woocommerce .woocommerce-info::before,
body:not(.home) .woocommerce .woocommerce-error::before {
  position: static;
  inset: auto;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  margin: 0;
  font-family: var(--gsb-font-base);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
  color: #fff;
  background: var(--gsb-forest-700);
}

body:not(.home) .woocommerce .woocommerce-message::before {
  content: "\2713";
  font-size: 0.9rem;
}

body:not(.home) .woocommerce .woocommerce-info::before {
  content: "i";
  background: var(--gsb-gold-500);
}

body:not(.home) .woocommerce .woocommerce-error::before {
  content: "!";
  background: var(--gsb-danger);
}

body:not(.home) .woocommerce .woocommerce-message .button,
body:not(.home) .woocommerce .woocommerce-info .button {
  justify-self: end;
  float: none;
  min-height: 38px;
  padding-inline: 16px;
}

body:not(.home) .woocommerce .woocommerce-error li {
  margin: 0;
}

body:not(.home) .woocommerce form .form-row {
  margin: 0 0 14px;
  padding: 0;
}

body:not(.home) .woocommerce form .form-row label {
  display: block;
  margin-bottom: 7px;
  color: var(--gsb-ink-700);
  font-size: 0.84rem;
  font-weight: 800;
}

body:not(.home) .woocommerce form .form-row input.input-text,
body:not(.home) .woocommerce form .form-row textarea,
body:not(.home) .woocommerce form .form-row select,
body:not(.home) .woocommerce .select2-container .select2-selection--single {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(24, 74, 51, 0.16);
  border-radius: 8px;
  background: #fff;
  color: var(--gsb-ink-900);
  font: inherit;
  box-shadow: inset 0 1px 1px rgba(15, 31, 23, 0.04);
}

body:not(.home) .woocommerce form .form-row input.input-text,
body:not(.home) .woocommerce form .form-row textarea,
body:not(.home) .woocommerce form .form-row select {
  padding: 0 14px;
}

body:not(.home) .woocommerce form .form-row textarea {
  min-height: 118px;
  padding-block: 12px;
}

body:not(.home) .woocommerce form .form-row input.input-text:focus,
body:not(.home) .woocommerce form .form-row textarea:focus,
body:not(.home) .woocommerce form .form-row select:focus {
  border-color: rgba(24, 74, 51, 0.42);
  outline: 3px solid rgba(24, 74, 51, 0.12);
}

body:not(.home) .woocommerce .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 48px;
  padding-inline: 14px 36px;
  color: var(--gsb-ink-900);
}

body:not(.home) .woocommerce .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 48px;
  right: 8px;
}

body:not(.home) .woocommerce .shop_table {
  width: 100%;
  border: 1px solid rgba(24, 74, 51, 0.12);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}

body:not(.home) .woocommerce .shop_table thead th {
  border: 0;
  background: #f2f7f3;
  color: var(--gsb-forest-800);
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 900;
  padding: 14px;
}

body:not(.home) .woocommerce .shop_table tbody td,
body:not(.home) .woocommerce .shop_table tfoot td,
body:not(.home) .woocommerce .shop_table tfoot th {
  border-top: 1px solid rgba(24, 74, 51, 0.1);
  padding: 14px;
  vertical-align: middle;
}

body:not(.home) .woocommerce-cart .woocommerce-cart-form,
body:not(.home) .woocommerce-cart .cart-collaterals,
body:not(.home) .woocommerce-checkout form.login,
body:not(.home) .woocommerce-checkout form.checkout_coupon,
body:not(.home) .woocommerce-account form.login,
body:not(.home) .woocommerce-account form.register,
body:not(.home) .woocommerce-account form.lost_reset_password {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

body:not(.home) .woocommerce-cart .woocommerce-cart-form {
  margin-bottom: 18px;
}

body:not(.home) .woocommerce-cart table.cart td.product-thumbnail {
  width: 112px;
}

body:not(.home) .woocommerce-cart table.cart td.product-thumbnail img {
  width: 86px;
  height: 86px;
  object-fit: contain;
  border-radius: 8px;
  background: linear-gradient(180deg, #f4f8f5, #fff);
  filter: drop-shadow(0 8px 12px rgba(20, 52, 38, 0.1));
}

body:not(.home) .woocommerce-cart table.cart td.product-name a {
  color: var(--gsb-ink-900);
  font-weight: 850;
  line-height: 1.3;
}

body:not(.home) .woocommerce-cart table.cart td.product-price,
body:not(.home) .woocommerce-cart table.cart td.product-subtotal,
body:not(.home) .woocommerce-cart table.cart .amount {
  color: var(--gsb-forest-800);
  font-weight: 900;
}

body:not(.home) .woocommerce-cart table.cart td.product-remove a.remove {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(141, 47, 39, 0.14);
  color: var(--gsb-danger) !important;
  background: #fff;
  font-size: 1.2rem;
  line-height: 1;
}

body:not(.home) .woocommerce-cart table.cart td.product-remove a.remove:hover {
  color: #fff !important;
  background: var(--gsb-danger);
}

body:not(.home) .woocommerce-cart .quantity {
  max-width: 170px;
}

body:not(.home) .woocommerce-cart .quantity .qty {
  color: var(--gsb-ink-900);
  font-weight: 900;
  background: #fff;
}

body:not(.home) .woocommerce-cart table.cart td.actions {
  background: #fbfcfb;
}

body:not(.home) .woocommerce-cart table.cart td.actions .coupon {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

body:not(.home) .woocommerce-cart table.cart td.actions .coupon .input-text {
  width: min(100%, 260px);
  min-height: 44px;
  border: 1px solid rgba(24, 74, 51, 0.16);
  border-radius: 999px;
  padding: 0 14px;
}

body:not(.home) .woocommerce-cart .cart-collaterals::after {
  display: none;
}

body:not(.home) .woocommerce-cart .cart-collaterals .cart_totals {
  float: none;
  width: min(100%, 440px);
  margin-left: auto;
  border: 1px solid rgba(24, 74, 51, 0.12);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(18, 42, 31, 0.08);
  padding: 18px;
}

body:not(.home) .woocommerce-cart .cart_totals h2 {
  margin: 0 0 12px;
  color: var(--gsb-forest-900);
  font-size: 1.25rem;
  line-height: 1.1;
}

body:not(.home) .woocommerce-cart .wc-proceed-to-checkout {
  padding-bottom: 0;
}

body:not(.home) .woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  width: 100%;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

body:not(.home) .gsb-cart-empty {
  min-height: 320px;
  display: grid;
  place-items: center;
  padding: clamp(24px, 5vw, 54px) 0;
}

body:not(.home) .gsb-cart-empty-card {
  max-width: 620px;
  width: 100%;
  justify-items: center;
  text-align: center;
  border-radius: 10px;
  border-color: rgba(24, 74, 51, 0.1);
  background:
    linear-gradient(180deg, rgba(246, 250, 247, 0.9), #fff),
    #fff;
  box-shadow: 0 12px 28px rgba(18, 42, 31, 0.07);
}

body:not(.home) .gsb-cart-empty-card .button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 22px;
}

body:not(.home) form.checkout.woocommerce-checkout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  grid-template-areas:
    "details review-title"
    "details review";
  grid-template-rows: auto 1fr;
  gap: 18px;
  align-items: start;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

body:not(.home) .woocommerce-checkout #customer_details,
body:not(.home) .woocommerce-checkout #order_review {
  border: 1px solid rgba(24, 74, 51, 0.12);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(18, 42, 31, 0.07);
  padding: clamp(16px, 2.2vw, 22px);
}

body:not(.home) .woocommerce-checkout #customer_details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  grid-area: details;
  margin: 0;
}

body:not(.home) .woocommerce-checkout #customer_details .col-1,
body:not(.home) .woocommerce-checkout #customer_details .col-2 {
  float: none;
  width: 100%;
}

body:not(.home) .woocommerce-checkout #order_review_heading {
  grid-area: review-title;
  margin: 0 0 -6px;
  color: var(--gsb-forest-900);
  font-size: 1.28rem;
  line-height: 1.1;
}

body:not(.home) .woocommerce-checkout #order_review {
  grid-area: review;
  position: sticky;
  top: calc(var(--gsb-sticky-header-offset) + 12px);
}

body:not(.home) .woocommerce-checkout h3 {
  color: var(--gsb-forest-900);
  font-size: 1.15rem;
  line-height: 1.18;
}

body:not(.home) .woocommerce-checkout-review-order-table .product-name {
  font-weight: 800;
}

body:not(.home) .woocommerce-checkout-review-order-table .amount,
body:not(.home) .woocommerce-checkout-review-order-table tfoot .order-total .amount {
  color: var(--gsb-forest-800);
  font-weight: 900;
}

body:not(.home) .woocommerce-checkout #payment {
  border-radius: 10px;
  background: #f6faf7;
  border: 1px solid rgba(24, 74, 51, 0.1);
}

body:not(.home) .woocommerce-checkout #payment ul.payment_methods {
  border-bottom: 1px solid rgba(24, 74, 51, 0.1);
  padding: 14px;
}

body:not(.home) .woocommerce-checkout #payment div.payment_box {
  border-radius: 8px;
  background: #fff;
  color: var(--gsb-ink-700);
}

body:not(.home) .woocommerce-checkout #payment div.payment_box::before {
  border-bottom-color: #fff;
}

body:not(.home) .woocommerce-checkout #payment div.form-row {
  padding: 14px;
}

body:not(.home) .woocommerce-checkout #place_order {
  width: 100%;
  min-height: 56px;
  margin-top: 8px;
  font-size: 0.82rem;
}

body:not(.home) .woocommerce-checkout .woocommerce-privacy-policy-text {
  color: var(--gsb-ink-700);
  font-size: 0.84rem;
  line-height: 1.55;
}

body:not(.home) .woocommerce-account .gsb-auth-layout-single {
  max-width: 600px;
  margin-inline: auto;
}

body:not(.home) .woocommerce-account .gsb-auth-card {
  border-radius: 10px;
  box-shadow: 0 14px 30px rgba(18, 42, 31, 0.08);
}

body:not(.home) .woocommerce-account .gsb-auth-toggle {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: #eef4ef;
  padding: 5px;
}

body:not(.home) .woocommerce-account .gsb-auth-toggle-btn {
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--gsb-forest-800);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

body:not(.home) .woocommerce-account .gsb-auth-toggle-btn.is-active {
  background: #fff;
  box-shadow: 0 8px 18px rgba(18, 42, 31, 0.08);
}

body:not(.home) .woocommerce-account .woocommerce-MyAccount-navigation,
body:not(.home) .woocommerce-account .woocommerce-MyAccount-content {
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(18, 42, 31, 0.06);
}

body:not(.home) .woocommerce-account .woocommerce-MyAccount-content {
  min-height: 260px;
  padding: clamp(16px, 2.3vw, 24px);
}

body:not(.home) .woocommerce-account .woocommerce-MyAccount-navigation-link a {
  border-radius: 8px;
}

body:not(.home) .gsb-woo-product-shell .gsb-single-buybox {
  border-radius: 10px;
  box-shadow: 0 16px 34px rgba(18, 42, 31, 0.1);
}

body:not(.home) .gsb-single-after .woocommerce-tabs,
body:not(.home) .gsb-single-after .related,
body:not(.home) .gsb-single-after .upsells {
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(18, 42, 31, 0.06);
}

body:not(.home) .woocommerce div.product .woocommerce-tabs ul.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  border: 0;
}

body:not(.home) .woocommerce div.product .woocommerce-tabs ul.tabs::before,
body:not(.home) .woocommerce div.product .woocommerce-tabs ul.tabs li::before,
body:not(.home) .woocommerce div.product .woocommerce-tabs ul.tabs li::after {
  display: none;
}

body:not(.home) .woocommerce div.product .woocommerce-tabs ul.tabs li {
  margin: 0;
  padding: 0;
  border-radius: 999px;
  overflow: hidden;
}

body:not(.home) .woocommerce div.product .woocommerce-tabs ul.tabs li a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  color: var(--gsb-forest-800);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

body:not(.home) .woocommerce div.product .woocommerce-Tabs-panel {
  color: var(--gsb-ink-700);
  line-height: 1.72;
}

body:not(.home) .woocommerce div.product .woocommerce-Tabs-panel h2,
body:not(.home) .woocommerce div.product .related h2,
body:not(.home) .woocommerce div.product .upsells h2 {
  color: var(--gsb-forest-900);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.12;
}

body:not(.home) .woocommerce #reviews #comments ol.commentlist {
  padding: 0;
}

body:not(.home) .woocommerce #reviews #comments ol.commentlist li {
  margin-bottom: 12px;
}

body:not(.home) .woocommerce #reviews #comments ol.commentlist li .comment-text {
  border: 1px solid rgba(24, 74, 51, 0.12);
  border-radius: 10px;
  background: #fff;
}

body:not(.home) .woocommerce #review_form #respond {
  border-radius: 10px;
  background: #f7faf7;
  padding: 16px;
}

body:not(.home) .woocommerce a.button.loading::after,
body:not(.home) .woocommerce button.button.loading::after,
body:not(.home) .woocommerce a.button.is-loading::after,
body:not(.home) .woocommerce button.button.is-loading::after {
  display: none;
}

body:not(.home) .woocommerce .blockUI.blockOverlay {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72) !important;
  opacity: 1 !important;
}

body:not(.home) .woocommerce .blockUI.blockOverlay::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 26px;
  margin: -13px 0 0 -13px;
  border: 3px solid rgba(24, 74, 51, 0.18);
  border-top-color: var(--gsb-forest-800);
  border-radius: 50%;
  animation: gsb-button-spin 0.72s linear infinite;
}

@media (max-width: 900px) {
  body:not(.home) form.checkout.woocommerce-checkout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "details"
      "review-title"
      "review";
  }

  body:not(.home) .woocommerce-checkout #customer_details,
  body:not(.home) .woocommerce-checkout #order_review,
  body:not(.home) .woocommerce-checkout #order_review_heading {
    grid-column: 1;
  }

  body:not(.home) .woocommerce-checkout #order_review {
    position: static;
  }
}

@media (max-width: 760px) {
  body:not(.home) .gsb-woo-panel-header {
    text-align: left;
  }

  body:not(.home) .gsb-woo-panel-header p {
    margin-inline: 0;
  }

  body:not(.home) .woocommerce .woocommerce-message,
  body:not(.home) .woocommerce .woocommerce-info,
  body:not(.home) .woocommerce .woocommerce-error {
    grid-template-columns: 26px minmax(0, 1fr);
    padding: 12px;
  }

  body:not(.home) .woocommerce .woocommerce-message > a,
  body:not(.home) .woocommerce .woocommerce-info > a,
  body:not(.home) .woocommerce .woocommerce-error > a {
    grid-column: 2;
    min-width: 0;
    width: fit-content;
    max-width: 100%;
    white-space: normal;
  }

  body:not(.home) .woocommerce .woocommerce-message .button,
  body:not(.home) .woocommerce .woocommerce-info .button {
    grid-column: 1 / -1;
    justify-self: stretch;
    width: 100%;
    margin-top: 4px;
  }

  body:not(.home) .woocommerce-cart table.cart {
    display: block;
    border: 0;
    background: transparent;
  }

  body:not(.home) .woocommerce-cart table.cart thead {
    display: none;
  }

  body:not(.home) .woocommerce-cart table.cart tbody,
  body:not(.home) .woocommerce-cart table.cart tr,
  body:not(.home) .woocommerce-cart table.cart td {
    display: block;
    width: 100% !important;
  }

  body:not(.home) .woocommerce-cart table.cart tr.cart_item {
    position: relative;
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 8px 12px;
    margin-bottom: 12px;
    border: 1px solid rgba(24, 74, 51, 0.12);
    border-radius: 10px;
    background: #fff;
    padding: 12px;
    box-shadow: 0 10px 24px rgba(18, 42, 31, 0.06);
  }

  body:not(.home) .woocommerce-cart table.cart tr.cart_item td {
    border: 0;
    padding: 0;
  }

  body:not(.home) .woocommerce-cart table.cart td.product-remove {
    position: absolute;
    top: 10px;
    right: 10px;
    width: auto !important;
  }

  body:not(.home) .woocommerce-cart table.cart td.product-thumbnail {
    grid-row: span 4;
  }

  body:not(.home) .woocommerce-cart table.cart td.product-thumbnail img {
    width: 76px;
    height: 76px;
  }

  body:not(.home) .woocommerce-cart table.cart td.product-name {
    padding-right: 38px;
  }

  body:not(.home) .woocommerce-cart table.cart td.product-price::before,
  body:not(.home) .woocommerce-cart table.cart td.product-quantity::before,
  body:not(.home) .woocommerce-cart table.cart td.product-subtotal::before {
    content: attr(data-title) ": ";
    color: var(--gsb-ink-500);
    font-size: 0.78rem;
    font-weight: 800;
  }

  body:not(.home) .woocommerce-cart table.cart td.actions {
    display: grid;
    gap: 10px;
    border: 1px solid rgba(24, 74, 51, 0.12);
    border-radius: 10px;
    background: #fff;
    padding: 12px;
  }

  body:not(.home) .woocommerce-cart table.cart td.actions .coupon,
  body:not(.home) .woocommerce-cart table.cart td.actions .coupon .input-text,
  body:not(.home) .woocommerce-cart table.cart td.actions .button {
    width: 100%;
  }

  body:not(.home) .woocommerce-cart .cart-collaterals .cart_totals {
    width: 100%;
    margin-left: 0;
  }
}

/* Cart and checkout hardening: body-level WooCommerce classes. */
body:not(.home) .woocommerce .blockUI.blockOverlay {
  background-image: none !important;
  cursor: wait;
}

body:not(.home) .woocommerce .blockUI.blockOverlay::before {
  display: none !important;
}

body:not(.home) .woocommerce .blockUI.blockOverlay::after {
  border-color: rgba(218, 158, 39, 0.24);
  border-top-color: var(--gsb-gold-500);
  border-right-color: var(--gsb-forest-800);
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.72);
}

@media (max-width: 760px) {
  body:not(.home).woocommerce-cart,
  body:not(.home).woocommerce-checkout {
    overflow-x: hidden;
  }

  body:not(.home) .gsb-header-main {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
  }

  body:not(.home) .gsb-brand-link img {
    width: min(190px, 48vw);
  }

  body:not(.home) .gsb-header-actions {
    min-width: 0;
    gap: 8px;
  }

  body:not(.home) .gsb-header-search {
    grid-template-columns: minmax(0, 1fr) 56px;
    justify-self: start;
    min-width: 0;
    width: calc(100vw - 20px);
    max-width: calc(100vw - 20px);
  }

  body:not(.home) .gsb-header-search button {
    box-sizing: border-box;
    width: 56px;
    padding-inline: 0;
    font-size: 0;
  }

  body:not(.home) .gsb-header-search button::after {
    content: none;
  }

  body:not(.home) .gsb-header-search button.is-loading::after,
  body:not(.home) .gsb-header-search button[aria-busy="true"]::after {
    display: none;
  }

  body:not(.home).woocommerce-cart .gsb-woo-panel-shell,
  body:not(.home).woocommerce-cart .gsb-woo-panel-content,
  body:not(.home).woocommerce-cart .woocommerce,
  body:not(.home).woocommerce-cart .gsb-site-main {
    max-width: 100%;
    overflow-x: hidden;
  }

  body:not(.home).woocommerce-cart .woocommerce table.shop_table_responsive,
  body:not(.home).woocommerce-cart .woocommerce table.cart {
    display: block !important;
    width: 100% !important;
    max-width: 100%;
    border: 0;
    background: transparent;
  }

  body:not(.home).woocommerce-cart .woocommerce table.shop_table_responsive tbody,
  body:not(.home).woocommerce-cart .woocommerce table.shop_table_responsive tr,
  body:not(.home).woocommerce-cart .woocommerce table.shop_table_responsive td {
    display: block !important;
    width: 100% !important;
    max-width: 100%;
    box-sizing: border-box;
  }

  body:not(.home).woocommerce-cart .woocommerce table.shop_table_responsive tr.cart_item {
    margin: 0 0 12px;
    border: 1px solid rgba(24, 74, 51, 0.12);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 12px 26px rgba(18, 42, 31, 0.07);
    overflow: hidden;
  }

  body:not(.home).woocommerce-cart .woocommerce table.shop_table_responsive tr.cart_item td {
    display: grid !important;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 5px;
    border: 0;
    border-bottom: 1px solid rgba(24, 74, 51, 0.08);
    padding: 12px 14px !important;
    text-align: left !important;
  }

  body:not(.home).woocommerce-cart .woocommerce table.shop_table_responsive tr.cart_item td:last-child {
    border-bottom: 0;
  }

  body:not(.home).woocommerce-cart .woocommerce table.shop_table_responsive tr.cart_item td::before {
    float: none;
    display: block;
    color: var(--gsb-forest-900);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }

  body:not(.home).woocommerce-cart .woocommerce table.shop_table_responsive td.product-remove {
    display: flex !important;
    justify-content: flex-end;
    padding-bottom: 4px !important;
  }

  body:not(.home).woocommerce-cart .woocommerce table.shop_table_responsive td.product-remove a.remove {
    display: inline-grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(169, 24, 24, 0.16);
    border-radius: 999px;
    background: #fff;
    color: var(--gsb-danger) !important;
    font-size: 1rem;
    line-height: 1;
  }

  body:not(.home).woocommerce-cart .woocommerce table.shop_table_responsive td.product-remove a.remove:hover,
  body:not(.home).woocommerce-cart .woocommerce table.shop_table_responsive td.product-remove a.remove:focus-visible {
    background: rgba(169, 24, 24, 0.08) !important;
    color: var(--gsb-danger) !important;
  }

  body:not(.home).woocommerce-cart .woocommerce table.shop_table_responsive td.product-remove::before,
  body:not(.home).woocommerce-cart .woocommerce table.shop_table_responsive tr.cart_item td.product-thumbnail,
  body:not(.home).woocommerce-page.woocommerce-cart .woocommerce table.shop_table_responsive tr.cart_item td.product-thumbnail,
  body:not(.home).woocommerce-cart .woocommerce table.cart tr.cart_item td.product-thumbnail,
  body:not(.home).woocommerce-page.woocommerce-cart .woocommerce table.cart tr.cart_item td.product-thumbnail {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    padding: 0 !important;
    border: 0 !important;
  }

  body:not(.home).woocommerce-cart .woocommerce table.shop_table_responsive td.product-name,
  body:not(.home).woocommerce-page.woocommerce-cart .woocommerce table.shop_table_responsive td.product-name {
    min-width: 0;
    overflow: visible;
    overflow-wrap: anywhere;
    white-space: normal !important;
    word-break: break-word;
  }

  body:not(.home).woocommerce-cart .woocommerce table.shop_table_responsive td.product-name a {
    display: block;
    min-width: 0;
    max-width: 100%;
    color: var(--gsb-ink-900);
    font-weight: 800;
    line-height: 1.25;
    overflow-wrap: anywhere;
    white-space: normal !important;
    word-break: break-word;
  }

  body:not(.home).woocommerce-cart .woocommerce table.shop_table_responsive td.product-price,
  body:not(.home).woocommerce-cart .woocommerce table.shop_table_responsive td.product-subtotal {
    color: var(--gsb-forest-800);
    font-weight: 900;
  }

  body:not(.home).woocommerce-cart .woocommerce table.shop_table_responsive td.product-quantity .quantity {
    justify-self: start;
    width: min(168px, 100%);
  }

  body:not(.home).woocommerce-cart .woocommerce table.shop_table_responsive td.actions {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 10px;
    border: 1px solid rgba(24, 74, 51, 0.12);
    border-radius: 14px;
    background: #fff;
    padding: 12px !important;
    text-align: left !important;
  }

  body:not(.home).woocommerce-cart .woocommerce table.shop_table_responsive td.actions::before {
    display: none;
  }

  body:not(.home).woocommerce-cart .woocommerce table.shop_table_responsive td.actions .coupon,
  body:not(.home).woocommerce-cart .woocommerce table.shop_table_responsive td.actions .input-text,
  body:not(.home).woocommerce-cart .woocommerce table.shop_table_responsive td.actions .button {
    width: 100% !important;
    max-width: 100%;
  }

  body:not(.home).woocommerce-cart .woocommerce .cart-collaterals,
  body:not(.home).woocommerce-cart .woocommerce .cart-collaterals .cart_totals {
    float: none;
    width: 100% !important;
    max-width: 100%;
    margin-left: 0;
  }

  body:not(.home).woocommerce-checkout .woocommerce .woocommerce-info,
  body:not(.home).woocommerce-checkout .woocommerce .woocommerce-message,
  body:not(.home).woocommerce-checkout .woocommerce .woocommerce-error {
    grid-template-columns: 26px minmax(0, 1fr);
    align-items: start;
  }

  body:not(.home).woocommerce-checkout .woocommerce .woocommerce-info > a,
  body:not(.home).woocommerce-checkout .woocommerce .woocommerce-message > a,
  body:not(.home).woocommerce-checkout .woocommerce .woocommerce-error > a {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 760px) {
  body.woocommerce-cart .woocommerce .gsb-cart-summary-table.shop_table_responsive,
  body.woocommerce-cart .woocommerce .gsb-cart-summary-table.shop_table_responsive tbody,
  body.woocommerce-cart .woocommerce .gsb-cart-summary-table.shop_table_responsive tr {
    display: table !important;
    width: 100% !important;
  }

  body.woocommerce-cart .woocommerce .gsb-cart-summary-table.shop_table_responsive tbody {
    display: table-row-group !important;
  }

  body.woocommerce-cart .woocommerce .gsb-cart-summary-table.shop_table_responsive tr {
    display: table-row !important;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  body.woocommerce-cart .woocommerce .gsb-cart-summary-table.shop_table_responsive th,
  body.woocommerce-cart .woocommerce .gsb-cart-summary-table.shop_table_responsive td {
    display: table-cell !important;
    width: auto !important;
    padding: 13px 10px !important;
    text-align: left !important;
  }

  body.woocommerce-cart .woocommerce .gsb-cart-summary-table.shop_table_responsive td {
    text-align: right !important;
  }

  body.woocommerce-cart .woocommerce .gsb-cart-summary-table.shop_table_responsive td::before {
    display: none !important;
  }
}

/* Cart polish overrides: keep WooCommerce notices and totals readable after generic Woo styles. */
body.woocommerce-cart .woocommerce .woocommerce-notices-wrapper:not(:empty) {
  max-width: 1320px;
  margin: 0 auto 18px;
}

body.woocommerce-cart .woocommerce .woocommerce-notices-wrapper .woocommerce-message,
body.woocommerce-cart .woocommerce .woocommerce-notices-wrapper .woocommerce-info,
body.woocommerce-cart .woocommerce .woocommerce-notices-wrapper .woocommerce-error {
  display: grid !important;
  grid-template-columns: 34px minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 12px !important;
  width: 100%;
  margin: 0 !important;
  padding: 14px 16px !important;
  border: 1px solid rgba(24, 74, 51, 0.13) !important;
  border-left: 0 !important;
  border-radius: 14px !important;
  background: linear-gradient(180deg, #ffffff 0%, #f8fcf9 100%) !important;
  box-shadow: inset 4px 0 0 var(--gsb-forest-700), 0 12px 26px rgba(18, 42, 31, 0.06) !important;
  color: var(--gsb-forest-950) !important;
  font-size: 0.96rem !important;
  line-height: 1.35 !important;
}

body.woocommerce-cart .woocommerce .woocommerce-notices-wrapper .woocommerce-info {
  box-shadow: inset 4px 0 0 var(--gsb-gold-500), 0 12px 26px rgba(18, 42, 31, 0.06) !important;
}

body.woocommerce-cart .woocommerce .woocommerce-notices-wrapper .woocommerce-error {
  box-shadow: inset 4px 0 0 var(--gsb-danger), 0 12px 26px rgba(18, 42, 31, 0.06) !important;
}

body.woocommerce-cart .woocommerce .woocommerce-notices-wrapper .woocommerce-message::before,
body.woocommerce-cart .woocommerce .woocommerce-notices-wrapper .woocommerce-info::before,
body.woocommerce-cart .woocommerce .woocommerce-notices-wrapper .woocommerce-error::before {
  width: 32px !important;
  height: 32px !important;
  margin: 0 !important;
  border-radius: 999px;
  font-size: 0.88rem !important;
}

body.woocommerce-cart .woocommerce .woocommerce-notices-wrapper .woocommerce-message > a,
body.woocommerce-cart .woocommerce .woocommerce-notices-wrapper .woocommerce-info > a,
body.woocommerce-cart .woocommerce .woocommerce-notices-wrapper .woocommerce-error > a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  justify-self: end;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(24, 74, 51, 0.13);
  border-radius: 999px;
  background: #eef6f1;
  color: var(--gsb-forest-900) !important;
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none !important;
  white-space: nowrap;
}

body.woocommerce-cart .woocommerce .woocommerce-notices-wrapper .woocommerce-message > a:hover,
body.woocommerce-cart .woocommerce .woocommerce-notices-wrapper .woocommerce-info > a:hover,
body.woocommerce-cart .woocommerce .woocommerce-notices-wrapper .woocommerce-error > a:hover {
  background: var(--gsb-forest-800);
  color: #fff !important;
}

body.woocommerce-cart .woocommerce .gsb-cart-summary-table.shop_table_responsive,
body.woocommerce-cart .woocommerce .gsb-cart-summary-table.shop_table_responsive tbody {
  display: block !important;
  width: 100% !important;
}

body.woocommerce-cart .woocommerce .gsb-cart-summary-table.shop_table_responsive {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

body.woocommerce-cart .woocommerce .gsb-cart-summary-table.shop_table_responsive tbody {
  display: grid !important;
  gap: 8px;
}

body.woocommerce-cart .woocommerce .gsb-cart-summary-table.shop_table_responsive tr {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  width: 100% !important;
  border: 1px solid rgba(24, 74, 51, 0.1);
  border-radius: 12px;
  background: #fff;
  box-shadow: none;
}

body.woocommerce-cart .woocommerce .gsb-cart-summary-table.shop_table_responsive th,
body.woocommerce-cart .woocommerce .gsb-cart-summary-table.shop_table_responsive td {
  display: block !important;
  width: auto !important;
  border: 0 !important;
  padding: 13px 14px !important;
  text-align: left !important;
}

body.woocommerce-cart .woocommerce .gsb-cart-summary-table.shop_table_responsive td {
  text-align: right !important;
}

body.woocommerce-cart .woocommerce .gsb-cart-summary-table.shop_table_responsive td::before {
  display: none !important;
}

body.woocommerce-cart .woocommerce .gsb-cart-summary-table.shop_table_responsive .gsb-cart-shipping-row {
  grid-template-columns: 1fr;
  align-items: stretch;
}

body.woocommerce-cart .woocommerce .gsb-cart-summary-table.shop_table_responsive .gsb-cart-shipping-row th {
  padding-bottom: 0 !important;
}

body.woocommerce-cart .woocommerce .gsb-cart-summary-table.shop_table_responsive .gsb-cart-shipping-row td {
  margin: 0 12px 12px;
  padding: 12px !important;
  border-radius: 10px;
  background: #f6faf7;
  text-align: left !important;
}

body.woocommerce-cart .woocommerce .gsb-cart-summary-table.shop_table_responsive .order-total {
  border-color: rgba(24, 74, 51, 0.12);
  background: #f1f8f3;
}

body.woocommerce-cart .woocommerce .gsb-cart-summary-table.shop_table_responsive .order-total th,
body.woocommerce-cart .woocommerce .gsb-cart-summary-table.shop_table_responsive .order-total td {
  background: transparent;
}

body.woocommerce-cart .woocommerce .gsb-cart-summary-table.shop_table_responsive .order-total td {
  font-size: 1.08rem;
  font-weight: 950;
}

@media (max-width: 760px) {
  body.woocommerce-cart .woocommerce .woocommerce-notices-wrapper:not(:empty) {
    margin-bottom: 14px;
  }

  body.woocommerce-cart .woocommerce .woocommerce-notices-wrapper .woocommerce-message,
  body.woocommerce-cart .woocommerce .woocommerce-notices-wrapper .woocommerce-info,
  body.woocommerce-cart .woocommerce .woocommerce-notices-wrapper .woocommerce-error {
    grid-template-columns: 30px minmax(0, 1fr) !important;
    align-items: start !important;
    padding: 12px !important;
    border-radius: 12px !important;
    font-size: 0.9rem !important;
  }

  body.woocommerce-cart .woocommerce .woocommerce-notices-wrapper .woocommerce-message::before,
  body.woocommerce-cart .woocommerce .woocommerce-notices-wrapper .woocommerce-info::before,
  body.woocommerce-cart .woocommerce .woocommerce-notices-wrapper .woocommerce-error::before {
    width: 28px !important;
    height: 28px !important;
  }

  body.woocommerce-cart .woocommerce .woocommerce-notices-wrapper .woocommerce-message > a,
  body.woocommerce-cart .woocommerce .woocommerce-notices-wrapper .woocommerce-info > a,
  body.woocommerce-cart .woocommerce .woocommerce-notices-wrapper .woocommerce-error > a {
    grid-column: 2;
    justify-self: start;
    min-height: 32px;
    margin-top: 6px;
    padding: 0 12px;
    font-size: 0.84rem;
  }

  .woocommerce .gsb-cart-summary-card {
    padding: 18px;
    border-radius: 14px;
  }

  .gsb-cart-summary-head {
    gap: 6px;
    margin-bottom: 14px;
  }

  .gsb-cart-summary-head h2 {
    font-size: 1.18rem;
  }

  .gsb-cart-summary-head p {
    font-size: 0.86rem;
  }

  body.woocommerce-cart .woocommerce .gsb-cart-summary-table.shop_table_responsive tbody {
    gap: 7px;
  }

  body.woocommerce-cart .woocommerce .gsb-cart-summary-table.shop_table_responsive tr {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    border-radius: 11px;
  }

  body.woocommerce-cart .woocommerce .gsb-cart-summary-table.shop_table_responsive th,
  body.woocommerce-cart .woocommerce .gsb-cart-summary-table.shop_table_responsive td {
    padding: 12px !important;
  }

  body.woocommerce-cart .woocommerce .gsb-cart-summary-table.shop_table_responsive td {
    font-size: 0.95rem;
  }

  body.woocommerce-cart .woocommerce .gsb-cart-summary-table.shop_table_responsive .gsb-cart-shipping-row {
    grid-template-columns: 1fr;
  }

  body.woocommerce-cart .woocommerce .gsb-cart-summary-table.shop_table_responsive .gsb-cart-shipping-row td {
    margin: 0 10px 10px;
  }

  .gsb-cart-summary-card .wc-proceed-to-checkout {
    padding-top: 16px;
  }

  .gsb-cart-summary-card .checkout-button {
    min-height: 56px;
    border-radius: 999px;
    font-size: 1rem;
    letter-spacing: 0.07em;
  }
}

body:not(.woocommerce-cart) .woocommerce .woocommerce-notices-wrapper .woocommerce-message:has(a.restore-item),
body:not(.woocommerce-cart) .woocommerce .woocommerce-notices-wrapper:has(.woocommerce-message a.restore-item) {
  display: none !important;
}

/* Shopify-like product gallery: clean main image with optional vertical thumbnails. */
.woocommerce div.product.gsb-single-product .gsb-single-gallery .woocommerce-product-gallery {
  position: relative;
  width: 100% !important;
  margin: 0 !important;
}

.woocommerce div.product.gsb-single-product .gsb-single-gallery {
  padding-top: clamp(10px, 1.2vw, 18px);
}

.woocommerce div.product.gsb-single-product .gsb-single-gallery .woocommerce-product-gallery__wrapper,
.woocommerce div.product.gsb-single-product .images .woocommerce-product-gallery__wrapper {
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  overflow: visible !important;
}

.woocommerce div.product.gsb-single-product .gsb-single-gallery .woocommerce-product-gallery__image {
  display: grid !important;
  min-height: clamp(360px, 54vw, 640px) !important;
  place-items: center;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.woocommerce div.product.gsb-single-product .gsb-single-gallery .woocommerce-product-gallery__image a {
  display: grid;
  width: 100%;
  min-height: inherit;
  place-items: center;
  cursor: zoom-in;
}

.woocommerce div.product.gsb-single-product .gsb-single-gallery .woocommerce-product-gallery__image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: clamp(360px, 54vw, 640px);
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  object-fit: contain;
}

.woocommerce div.product.gsb-single-product .gsb-single-gallery .woocommerce-product-gallery__trigger {
  --gsb-gallery-zoom-size: clamp(40px, 3.6vw, 48px);
  top: clamp(12px, 1.8vw, 22px) !important;
  right: clamp(10px, 1.8vw, 22px) !important;
  z-index: 7;
  display: grid;
  width: var(--gsb-gallery-zoom-size) !important;
  height: var(--gsb-gallery-zoom-size) !important;
  place-items: center;
  box-sizing: border-box;
  border: 1px solid rgba(24, 74, 51, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--gsb-forest-950);
  box-shadow: 0 12px 28px rgba(18, 42, 31, 0.12);
  text-indent: -9999px;
  backdrop-filter: blur(8px);
  transition: transform 0.18s var(--gsb-ease), border-color 0.18s var(--gsb-ease), box-shadow 0.18s var(--gsb-ease), background 0.18s var(--gsb-ease);
}

.woocommerce div.product.gsb-single-product .gsb-single-gallery .woocommerce-product-gallery__trigger:hover,
.woocommerce div.product.gsb-single-product .gsb-single-gallery .woocommerce-product-gallery__trigger:focus-visible {
  border-color: rgba(24, 74, 51, 0.34);
  background: #fff;
  box-shadow: 0 16px 34px rgba(18, 42, 31, 0.16);
  transform: translateY(-1px);
}

.woocommerce div.product.gsb-single-product .gsb-single-gallery .woocommerce-product-gallery__trigger::before {
  top: 50% !important;
  left: 50% !important;
  display: block;
  width: 13px !important;
  height: 13px !important;
  margin: 0 !important;
  border: 2px solid currentColor !important;
  border-radius: 999px !important;
  background: transparent !important;
  box-sizing: border-box !important;
  transform: translate(-58%, -58%);
}

.woocommerce div.product.gsb-single-product .gsb-single-gallery .woocommerce-product-gallery__trigger::after {
  top: 50% !important;
  left: 50% !important;
  display: block;
  width: 9px !important;
  height: 2px !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: currentColor !important;
  box-sizing: border-box !important;
  transform: translate(2px, 5px) rotate(45deg);
  transform-origin: left center;
}

.woocommerce div.product.gsb-single-product .gsb-single-gallery .flex-control-nav.flex-control-thumbs {
  display: flex;
  gap: 10px;
  margin: 14px 0 0 !important;
  padding: 0 !important;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: thin;
}

.woocommerce div.product.gsb-single-product .gsb-single-gallery .flex-control-nav.flex-control-thumbs li {
  float: none !important;
  flex: 0 0 76px;
  width: 76px !important;
  margin: 0 !important;
}

.woocommerce div.product.gsb-single-product .gsb-single-gallery .flex-control-nav.flex-control-thumbs img {
  width: 76px !important;
  height: 76px !important;
  padding: 5px;
  border: 1px solid rgba(24, 74, 51, 0.12);
  border-radius: 14px;
  background: #fff;
  opacity: 0.58;
  object-fit: contain;
  cursor: pointer;
  transition: border-color 0.2s var(--gsb-ease), box-shadow 0.2s var(--gsb-ease), opacity 0.2s var(--gsb-ease), transform 0.2s var(--gsb-ease);
}

.woocommerce div.product.gsb-single-product .gsb-single-gallery .flex-control-nav.flex-control-thumbs img:hover,
.woocommerce div.product.gsb-single-product .gsb-single-gallery .flex-control-nav.flex-control-thumbs img.flex-active {
  border-color: rgba(24, 74, 51, 0.48);
  box-shadow: 0 10px 20px rgba(18, 42, 31, 0.1);
  opacity: 1;
}

.woocommerce div.product.gsb-single-product .gsb-single-gallery .flex-control-nav.flex-control-thumbs img.flex-active {
  transform: translateY(-1px);
}

.woocommerce div.product.gsb-single-product .gsb-single-gallery .gsb-mobile-product-gallery {
  display: none;
}

@media (min-width: 861px) {
  .woocommerce div.product.gsb-single-product .gsb-single-gallery .woocommerce-product-gallery:has(.flex-control-nav.flex-control-thumbs) {
    display: grid !important;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
  }

  .woocommerce div.product.gsb-single-product .gsb-single-gallery .woocommerce-product-gallery:has(.flex-control-nav.flex-control-thumbs) .flex-viewport,
  .woocommerce div.product.gsb-single-product .gsb-single-gallery .woocommerce-product-gallery:has(.flex-control-nav.flex-control-thumbs) .woocommerce-product-gallery__wrapper {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
  }

  .woocommerce div.product.gsb-single-product .gsb-single-gallery .woocommerce-product-gallery:has(.flex-control-nav.flex-control-thumbs) .flex-control-nav.flex-control-thumbs {
    grid-column: 1;
    grid-row: 1;
    flex-direction: column;
    max-height: clamp(360px, 54vw, 640px);
    margin: 0 !important;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 12px 2px 0 0 !important;
  }
}

@media (max-width: 860px) {
  .woocommerce div.product.gsb-single-product .gsb-single-gallery {
    width: 100%;
    overflow: visible;
    padding-top: 6px;
  }

  .woocommerce div.product.gsb-single-product .gsb-single-gallery .woocommerce-product-gallery.gsb-has-mobile-gallery {
    display: none !important;
  }

  .woocommerce div.product.gsb-single-product .gsb-single-gallery .gsb-mobile-product-gallery {
    display: grid;
    gap: 12px;
    width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .woocommerce div.product.gsb-single-product .gsb-single-gallery .gsb-mobile-product-gallery-main {
    position: relative;
    display: grid;
    width: 100%;
    min-height: clamp(282px, 76vw, 460px);
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--gsb-forest-950);
    cursor: zoom-in;
    touch-action: pan-y;
  }

  .woocommerce div.product.gsb-single-product .gsb-single-gallery .gsb-mobile-product-gallery-main img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: clamp(282px, 76vw, 460px);
    object-fit: contain;
  }

  .woocommerce div.product.gsb-single-product .gsb-single-gallery .gsb-mobile-product-gallery-zoom {
    position: absolute;
    top: 10px;
    right: 10px;
    display: inline-grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid rgba(24, 74, 51, 0.13);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 28px rgba(18, 42, 31, 0.12);
    backdrop-filter: blur(8px);
    pointer-events: none;
  }

  .woocommerce div.product.gsb-single-product .gsb-single-gallery .gsb-mobile-product-gallery-zoom svg {
    display: block;
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.1;
    stroke-linecap: round;
  }

  .woocommerce div.product.gsb-single-product .gsb-single-gallery .gsb-mobile-product-gallery-thumbs {
    display: flex;
    gap: 8px;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 4px 6px 8px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-padding-inline: 6px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .woocommerce div.product.gsb-single-product .gsb-single-gallery .gsb-mobile-product-gallery-thumbs::-webkit-scrollbar {
    display: none;
  }

  .woocommerce div.product.gsb-single-product .gsb-single-gallery .gsb-mobile-product-gallery-thumb {
    display: grid;
    flex: 0 0 70px;
    width: 70px;
    height: 70px;
    place-items: center;
    padding: 4px;
    border: 1px solid rgba(24, 74, 51, 0.13);
    border-radius: 13px;
    background: #fff;
    box-sizing: border-box;
    cursor: pointer;
    scroll-snap-align: start;
    transition: border-color 0.18s var(--gsb-ease), box-shadow 0.18s var(--gsb-ease), background 0.18s var(--gsb-ease);
  }

  .woocommerce div.product.gsb-single-product .gsb-single-gallery .gsb-mobile-product-gallery-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .woocommerce div.product.gsb-single-product .gsb-single-gallery .gsb-mobile-product-gallery-thumb.is-active {
    border-color: rgba(24, 74, 51, 0.55);
    background: #f8fbf8;
    box-shadow: inset 0 0 0 1px rgba(24, 74, 51, 0.2), 0 8px 18px rgba(18, 42, 31, 0.09);
  }

  .woocommerce div.product.gsb-single-product .gsb-single-gallery .woocommerce-product-gallery {
    overflow: visible;
  }

  .woocommerce div.product.gsb-single-product .gsb-single-gallery .woocommerce-product-gallery__wrapper,
  .woocommerce div.product.gsb-single-product .gsb-single-gallery .flex-viewport {
    width: 100% !important;
    overflow: hidden !important;
  }

  .woocommerce div.product.gsb-single-product .gsb-single-gallery .woocommerce-product-gallery.gsb-gallery-manual-active .woocommerce-product-gallery__wrapper {
    display: block !important;
    width: 100% !important;
    transform: none !important;
  }

  .woocommerce div.product.gsb-single-product .gsb-single-gallery .woocommerce-product-gallery.gsb-gallery-manual-active .woocommerce-product-gallery__image {
    display: none !important;
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
  }

  .woocommerce div.product.gsb-single-product .gsb-single-gallery .woocommerce-product-gallery.gsb-gallery-manual-active .woocommerce-product-gallery__image.gsb-gallery-slide-active {
    display: grid !important;
  }

  .woocommerce div.product.gsb-single-product .gsb-single-gallery .woocommerce-product-gallery__image {
    min-height: clamp(280px, 76vw, 460px) !important;
  }

  .woocommerce div.product.gsb-single-product .gsb-single-gallery .woocommerce-product-gallery__image a {
    min-height: clamp(280px, 76vw, 460px);
  }

  .woocommerce div.product.gsb-single-product .gsb-single-gallery .woocommerce-product-gallery__image img {
    max-width: 100%;
    max-height: clamp(280px, 76vw, 460px);
  }

.woocommerce div.product.gsb-single-product .gsb-single-gallery .woocommerce-product-gallery__trigger {
    --gsb-gallery-zoom-size: 40px;
    top: 10px !important;
    right: 10px !important;
  }

  .woocommerce div.product.gsb-single-product .gsb-single-gallery .flex-control-nav.flex-control-thumbs {
    gap: 8px;
    width: 100%;
    margin: 12px 0 0 !important;
    padding: 3px 6px 8px !important;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-padding-inline: 6px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .woocommerce div.product.gsb-single-product .gsb-single-gallery .flex-control-nav.flex-control-thumbs li {
    flex-basis: 70px;
    width: 70px !important;
    min-width: 70px;
    scroll-snap-align: start;
  }

  .woocommerce div.product.gsb-single-product .gsb-single-gallery .flex-control-nav.flex-control-thumbs img {
    display: block;
    width: 70px !important;
    height: 70px !important;
    padding: 4px;
    border-radius: 13px;
    box-sizing: border-box;
    max-width: none !important;
  }

  .woocommerce div.product.gsb-single-product .gsb-single-gallery .flex-control-nav.flex-control-thumbs img.flex-active {
    transform: none;
  }
}

/* Product description and reviews: marketplace-style structure */
.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper {
  margin-top: 34px;
  padding: 0;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper ul.tabs.wc-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px !important;
  padding: 0 0 14px !important;
  border-bottom: 1px solid rgba(24, 74, 51, 0.12);
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper ul.tabs.wc-tabs::before {
  display: none !important;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper ul.tabs.wc-tabs li {
  margin: 0 !important;
  padding: 0 !important;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper ul.tabs.wc-tabs li::before,
.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper ul.tabs.wc-tabs li::after {
  display: none !important;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper ul.tabs.wc-tabs li a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(24, 74, 51, 0.12);
  border-radius: 999px;
  background: #f7faf7;
  color: var(--gsb-forest-850);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 18px rgba(18, 42, 31, 0.04);
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper ul.tabs.wc-tabs li a:hover,
.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper ul.tabs.wc-tabs li a:focus-visible {
  border-color: rgba(24, 74, 51, 0.24);
  background: #fff;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper ul.tabs.wc-tabs li.active a {
  border-color: rgba(24, 74, 51, 0.32);
  background: #fff;
  color: var(--gsb-forest-950);
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .woocommerce-Tabs-panel {
  margin: 0;
  padding: 0;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .woocommerce-Tabs-panel--description,
.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .woocommerce-Tabs-panel--reviews {
  border: 1px solid rgba(24, 74, 51, 0.12);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 252, 249, 0.98) 100%);
  box-shadow: 0 18px 38px rgba(18, 42, 31, 0.06);
  padding: clamp(18px, 2.2vw, 30px);
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-shell {
  display: grid;
  gap: 18px;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-header {
  display: grid;
  gap: 8px;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-kicker {
  margin: 0;
  color: var(--gsb-forest-700);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-header h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.1vw, 2rem);
  line-height: 1.12;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-subtitle {
  margin: 0;
  max-width: 74ch;
  color: var(--gsb-ink-700);
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-intro {
  display: grid;
  gap: 10px;
  padding: 18px 20px;
  border: 1px solid rgba(24, 74, 51, 0.1);
  border-radius: 20px;
  background: rgba(247, 250, 247, 0.86);
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-intro strong {
  color: var(--gsb-forest-950);
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-intro p {
  margin: 0;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-spec,
.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-note {
  display: grid;
  gap: 6px;
  padding: 16px 17px;
  border: 1px solid rgba(24, 74, 51, 0.1);
  border-radius: 18px;
  background: #fff;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-spec span,
.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-note strong {
  color: var(--gsb-forest-700);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-spec p,
.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-note p {
  margin: 0;
  color: var(--gsb-ink-800);
  line-height: 1.65;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-notes {
  display: grid;
  gap: 12px;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .woocommerce-Reviews {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.9fr);
  gap: 18px;
  align-items: start;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .woocommerce-Reviews #comments,
.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .woocommerce-Reviews #review_form_wrapper {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(24, 74, 51, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.95);
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .woocommerce-Reviews #comments {
  order: 1;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .woocommerce-Reviews #review_form_wrapper {
  order: 2;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .woocommerce-Reviews li.review {
  margin: 0 0 12px;
  padding: 16px 18px;
  border: 1px solid rgba(24, 74, 51, 0.1);
  border-radius: 18px;
  background: #fff;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .woocommerce-noreviews {
  padding: 18px 20px;
  border: 1px dashed rgba(24, 74, 51, 0.18);
  border-radius: 18px;
  background: rgba(247, 250, 247, 0.72);
  color: var(--gsb-ink-700);
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .star-rating {
  color: #c99723;
}

@media (max-width: 860px) {
  .woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper {
    margin-top: 28px;
  }

  .woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper ul.tabs.wc-tabs {
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 12px !important;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper ul.tabs.wc-tabs li {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper ul.tabs.wc-tabs li a {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.88rem;
  }

  .woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .woocommerce-Tabs-panel--description,
  .woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .woocommerce-Tabs-panel--reviews {
    border-radius: 20px;
    padding: 16px;
  }

  .woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-grid {
    grid-template-columns: 1fr;
  }

  .woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .woocommerce-Reviews {
    grid-template-columns: 1fr;
  }

  .woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .woocommerce-Reviews #comments,
  .woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .woocommerce-Reviews #review_form_wrapper {
    padding: 14px;
  }
}

.gsb-product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99990;
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 40px);
  background: rgba(6, 24, 17, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s var(--gsb-ease), visibility 0.2s var(--gsb-ease);
}

.gsb-product-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

body.gsb-product-lightbox-open {
  overflow: hidden;
}

.gsb-product-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
  cursor: zoom-out;
}

.gsb-product-lightbox-frame {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 14px;
  width: min(1120px, 100%);
  max-height: min(86vh, 820px);
}

.gsb-product-lightbox-image-wrap {
  display: grid;
  min-height: 0;
  place-items: center;
}

.gsb-product-lightbox-image {
  display: block;
  max-width: 100%;
  max-height: min(78vh, 760px);
  object-fit: contain;
  background: #fff;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.3);
}

.gsb-product-lightbox-caption {
  min-height: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  line-height: 1.35;
  text-align: center;
}

.gsb-product-lightbox-close,
.gsb-product-lightbox-nav {
  position: absolute;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--gsb-forest-950);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.gsb-product-lightbox-close {
  top: clamp(14px, 2vw, 24px);
  right: clamp(14px, 2vw, 24px);
  width: 46px;
  height: 46px;
  font-size: 1.5rem;
  line-height: 1;
}

.gsb-product-lightbox-nav {
  top: 50%;
  width: 48px;
  height: 48px;
  transform: translateY(-50%);
  font-size: 1.65rem;
}

.gsb-product-lightbox-nav[data-lightbox-prev] {
  left: clamp(14px, 2vw, 26px);
}

.gsb-product-lightbox-nav[data-lightbox-next] {
  right: clamp(14px, 2vw, 26px);
}

.gsb-product-lightbox-nav[hidden] {
  display: none;
}

@media (max-width: 760px) {
  .gsb-product-lightbox {
    padding: 14px;
  }

  .gsb-product-lightbox-frame {
    max-height: 82vh;
  }

  .gsb-product-lightbox-image {
    max-height: 72vh;
  }

  .gsb-product-lightbox-close {
    width: 42px;
    height: 42px;
  }

  .gsb-product-lightbox-nav {
    width: 42px;
    height: 42px;
  }
}

/* Mobile cart summary hardening: prevent Woo responsive table rules from stacking totals. */
@media (max-width: 760px) {
  body.woocommerce-page.woocommerce-cart .woocommerce .cart_totals.gsb-cart-summary-card {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden;
    padding: 16px !important;
    border-radius: 18px !important;
  }

  body.woocommerce-page.woocommerce-cart .woocommerce .cart_totals.gsb-cart-summary-card,
  body.woocommerce-page.woocommerce-cart .woocommerce .cart_totals.gsb-cart-summary-card * {
    box-sizing: border-box;
  }

  body.woocommerce-page.woocommerce-cart .woocommerce .cart_totals.gsb-cart-summary-card .gsb-cart-summary-block {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(24, 74, 51, 0.1);
  }

  body.woocommerce-page.woocommerce-cart .woocommerce .cart_totals.gsb-cart-summary-card .gsb-cart-summary-block:last-of-type {
    margin-bottom: 14px;
  }

  body.woocommerce-page.woocommerce-cart .woocommerce .cart_totals.gsb-cart-summary-card .gsb-cart-inline-form {
    grid-template-columns: 1fr !important;
    gap: 9px;
  }

  body.woocommerce-page.woocommerce-cart .woocommerce .cart_totals.gsb-cart-summary-card .gsb-cart-inline-form .button,
  body.woocommerce-page.woocommerce-cart .woocommerce .cart_totals.gsb-cart-summary-card .gsb-cart-inline-form input.input-text {
    width: 100% !important;
    min-width: 0 !important;
  }

  body.woocommerce-page.woocommerce-cart .woocommerce .cart_totals.gsb-cart-summary-card table.gsb-cart-summary-table,
  body.woocommerce-page.woocommerce-cart .woocommerce .cart_totals.gsb-cart-summary-card table.gsb-cart-summary-table tbody {
    display: grid !important;
    width: 100% !important;
    min-width: 0 !important;
    border: 0 !important;
    gap: 8px;
  }

  body.woocommerce-page.woocommerce-cart .woocommerce .cart_totals.gsb-cart-summary-card table.gsb-cart-summary-table tr:not(.gsb-cart-shipping-row) {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 14px;
    width: 100% !important;
    min-height: 64px;
    padding: 0 !important;
    border: 1px solid rgba(24, 74, 51, 0.11) !important;
    border-radius: 12px !important;
    background: #fff !important;
  }

  body.woocommerce-page.woocommerce-cart .woocommerce .cart_totals.gsb-cart-summary-card table.gsb-cart-summary-table tr:not(.gsb-cart-shipping-row) th,
  body.woocommerce-page.woocommerce-cart .woocommerce .cart_totals.gsb-cart-summary-card table.gsb-cart-summary-table tr:not(.gsb-cart-shipping-row) td {
    display: block !important;
    width: auto !important;
    min-width: 0 !important;
    padding: 14px 12px !important;
    border: 0 !important;
    background: transparent !important;
    line-height: 1.25;
  }

  body.woocommerce-page.woocommerce-cart .woocommerce .cart_totals.gsb-cart-summary-card table.gsb-cart-summary-table tr:not(.gsb-cart-shipping-row) th {
    flex: 0 1 auto;
    color: var(--gsb-forest-950);
  }

  body.woocommerce-page.woocommerce-cart .woocommerce .cart_totals.gsb-cart-summary-card table.gsb-cart-summary-table tr:not(.gsb-cart-shipping-row) td {
    flex: 1 1 auto;
    text-align: right !important;
    overflow-wrap: anywhere;
  }

  body.woocommerce-page.woocommerce-cart .woocommerce .cart_totals.gsb-cart-summary-card table.gsb-cart-summary-table tr.gsb-cart-shipping-row {
    display: block !important;
    width: 100% !important;
    padding: 0 !important;
    border: 1px solid rgba(24, 74, 51, 0.11) !important;
    border-radius: 12px !important;
    background: #fff !important;
    overflow: hidden;
  }

  body.woocommerce-page.woocommerce-cart .woocommerce .cart_totals.gsb-cart-summary-card table.gsb-cart-summary-table tr.gsb-cart-shipping-row th,
  body.woocommerce-page.woocommerce-cart .woocommerce .cart_totals.gsb-cart-summary-card table.gsb-cart-summary-table tr.gsb-cart-shipping-row td {
    display: block !important;
    width: 100% !important;
    border: 0 !important;
    text-align: left !important;
  }

  body.woocommerce-page.woocommerce-cart .woocommerce .cart_totals.gsb-cart-summary-card table.gsb-cart-summary-table tr.gsb-cart-shipping-row th {
    padding: 14px 12px 6px !important;
    background: transparent !important;
  }

  body.woocommerce-page.woocommerce-cart .woocommerce .cart_totals.gsb-cart-summary-card table.gsb-cart-summary-table tr.gsb-cart-shipping-row td {
    margin: 0 !important;
    padding: 4px 12px 14px !important;
    border-radius: 0 !important;
    background: transparent !important;
  }

  body.woocommerce-page.woocommerce-cart .woocommerce .cart_totals.gsb-cart-summary-card .gsb-cart-shipping-methods {
    gap: 6px;
  }

  body.woocommerce-page.woocommerce-cart .woocommerce .cart_totals.gsb-cart-summary-card .gsb-cart-shipping-methods li {
    display: block;
    padding: 10px 11px;
    border-radius: 10px;
    background: #f6faf7;
  }

  body.woocommerce-page.woocommerce-cart .woocommerce .cart_totals.gsb-cart-summary-card .gsb-cart-shipping-methods label {
    display: block;
    font-size: 0.93rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  body.woocommerce-page.woocommerce-cart .woocommerce .cart_totals.gsb-cart-summary-card .gsb-cart-shipping-destination,
  body.woocommerce-page.woocommerce-cart .woocommerce .cart_totals.gsb-cart-summary-card .gsb-cart-shipping-message,
  body.woocommerce-page.woocommerce-cart .woocommerce .cart_totals.gsb-cart-summary-card .gsb-cart-shipping-contents {
    margin-top: 8px;
    font-size: 0.82rem;
  }

  body.woocommerce-page.woocommerce-cart .woocommerce .cart_totals.gsb-cart-summary-card table.gsb-cart-summary-table tr.order-total {
    min-height: 72px;
    border-color: rgba(24, 74, 51, 0.16) !important;
    background: #f0f8f3 !important;
  }

  body.woocommerce-page.woocommerce-cart .woocommerce .cart_totals.gsb-cart-summary-card table.gsb-cart-summary-table tr.order-total td {
    font-size: 1.05rem !important;
    font-weight: 950;
    white-space: nowrap;
  }

  body.woocommerce-page.woocommerce-cart .woocommerce .cart_totals.gsb-cart-summary-card .wc-proceed-to-checkout {
    padding-top: 18px !important;
  }

  body.woocommerce-page.woocommerce-cart .woocommerce .cart_totals.gsb-cart-summary-card .checkout-button {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    min-height: 60px !important;
    margin: 0 !important;
    border-radius: 999px !important;
    text-align: center;
    white-space: normal;
  }

  body.woocommerce-page.woocommerce-cart .woocommerce .cart_totals.gsb-cart-summary-card .gsb-cart-summary-continue {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    margin-top: 15px;
  }

  body:not(.woocommerce-cart) .woocommerce .woocommerce-notices-wrapper .woocommerce-message:has(a.restore-item),
  body:not(.woocommerce-cart) .woocommerce .woocommerce-notices-wrapper:has(.woocommerce-message a.restore-item) {
    display: none !important;
  }
}
.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .woocommerce-Tabs-panel--description,
.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .woocommerce-Tabs-panel--reviews {
  border-radius: 22px;
  padding: clamp(20px, 2.2vw, 28px);
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-shell {
  gap: 16px;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-header {
  gap: 6px;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-intro {
  padding: 0 0 16px;
  border: 0;
  border-bottom: 1px solid rgba(24, 74, 51, 0.1);
  border-radius: 0;
  background: transparent;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(24, 74, 51, 0.1);
  border-bottom: 1px solid rgba(24, 74, 51, 0.1);
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-spec,
.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-note {
  display: grid;
  grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1fr);
  gap: 14px;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid rgba(24, 74, 51, 0.08);
  border-radius: 0;
  background: transparent;
  align-items: start;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-spec:last-child,
.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-note:last-child {
  border-bottom: 0;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-spec span,
.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-note strong {
  font-size: 0.7rem;
  line-height: 1.35;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-spec p,
.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-note p {
  margin: 0;
  font-size: 0.95rem;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-notes {
  gap: 4px;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .woocommerce-Reviews {
  display: block;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .woocommerce-Reviews #comments,
.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .woocommerce-Reviews #review_form_wrapper {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .woocommerce-Reviews #comments {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(24, 74, 51, 0.1);
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .woocommerce-Reviews .commentlist {
  display: grid;
  gap: 14px;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .woocommerce-Reviews li.review {
  margin: 0;
  padding: 0 0 16px;
  border: 0;
  border-bottom: 1px solid rgba(24, 74, 51, 0.08);
  border-radius: 0;
  background: transparent;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .woocommerce-Reviews li.review:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .comment-respond,
.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .comment-form {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .comment-form {
  display: grid;
  gap: 12px;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .comment-form p {
  margin-bottom: 0;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .comment-form input:not([type="checkbox"]):not([type="radio"]),
.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .comment-form textarea {
  width: 100%;
  border-radius: 14px;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .woocommerce-noreviews {
  margin: 0;
  padding: 18px 0;
  border: 0;
  border-bottom: 1px solid rgba(24, 74, 51, 0.1);
  background: transparent;
}

@media (max-width: 860px) {
  .woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .woocommerce-Tabs-panel--description,
  .woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .woocommerce-Tabs-panel--reviews {
    padding: 16px;
    border-radius: 18px;
  }

  .woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-spec,
  .woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-note {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 12px 0;
  }

  .woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .woocommerce-Reviews #comments {
    padding-bottom: 18px;
    margin-bottom: 18px;
  }

  .woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .woocommerce-Reviews .commentlist {
    gap: 12px;
  }
}
.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .woocommerce-Tabs-panel--description,
.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .woocommerce-Tabs-panel--reviews {
  margin: 0;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-shell {
  display: grid;
  gap: 14px;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-header {
  display: grid;
  gap: 6px;
  padding: 2px 0 0;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-kicker {
  margin: 0;
  color: var(--gsb-forest-700);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-header h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.12;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-subtitle {
  margin: 0;
  max-width: 76ch;
  color: var(--gsb-ink-700);
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-intro {
  display: grid;
  gap: 8px;
  padding: 0 0 14px;
  border: 0;
  border-bottom: 1px solid rgba(24, 74, 51, 0.1);
  border-radius: 0;
  background: transparent;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-intro strong {
  color: var(--gsb-forest-950);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-intro p {
  margin: 0;
  color: var(--gsb-ink-800);
  line-height: 1.7;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 4px;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-qa {
  display: none !important;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-highlight {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid rgba(24, 74, 51, 0.09);
  border-radius: 16px;
  background: rgba(247, 250, 247, 0.82);
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-highlight strong {
  color: var(--gsb-forest-700);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-highlight p {
  margin: 0;
  color: var(--gsb-ink-800);
  line-height: 1.55;
}

@media (max-width: 860px) {
  .woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-shell {
    gap: 14px;
  }

  .woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-highlights {
    grid-template-columns: 1fr;
  }

  .woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-highlight {
    padding: 11px 12px;
  }

  .woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-header h2 {
    font-size: 1.28rem;
  }
}
/* Description polish override: reduce boxed look and spacing collisions */
.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper {
  padding-top: 10px;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .woocommerce-Tabs-panel--description,
.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .woocommerce-Tabs-panel--reviews {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-shell {
  gap: 10px !important;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-header {
  gap: 3px !important;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-header h2 {
  font-size: clamp(1.18rem, 1.8vw, 1.55rem) !important;
  line-height: 1.08 !important;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-subtitle {
  font-size: 0.94rem !important;
  line-height: 1.55 !important;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-intro {
  padding: 0 0 10px !important;
  border-bottom-color: rgba(24, 74, 51, 0.08) !important;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-highlights {
  gap: 0 !important;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-highlight {
  grid-template-columns: minmax(132px, 0.26fr) minmax(0, 1fr) !important;
  gap: 10px !important;
  padding: 9px 0 !important;
  border-bottom-color: rgba(24, 74, 51, 0.07) !important;
  background: transparent !important;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-highlight strong {
  font-size: 0.68rem !important;
  letter-spacing: 0.13em !important;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-highlight p {
  font-size: 0.92rem !important;
  line-height: 1.55 !important;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .woocommerce-Reviews #comments {
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(24, 74, 51, 0.08);
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .comment-form {
  gap: 10px;
}

@media (max-width: 860px) {
  .woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper {
    padding-top: 8px !important;
  }

  .woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-shell {
    gap: 10px !important;
  }

  .woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-highlight {
    grid-template-columns: 1fr !important;
    gap: 4px !important;
    padding: 8px 0 !important;
  }

  .woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-header h2 {
    font-size: 1.16rem !important;
  }

  .woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-subtitle {
    font-size: 0.9rem !important;
  }

  .woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .woocommerce-Reviews #comments {
    padding-bottom: 14px !important;
    margin-bottom: 14px !important;
  }
}

/* Product description - editorial ecommerce reading, without artificial cards */
.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper {
  padding: clamp(14px, 2vw, 22px) 0 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper ul.tabs.wc-tabs {
  margin: 0 0 clamp(18px, 2.4vw, 30px) !important;
  padding: 0 0 10px !important;
  border-bottom: 1px solid rgba(24, 74, 51, 0.14) !important;
  gap: 10px !important;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .woocommerce-Tabs-panel--description,
.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .woocommerce-Tabs-panel--reviews {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-header,
.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-kicker,
.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-subtitle,
.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-intro,
.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-grid,
.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-qa,
.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-highlights,
.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-description-highlight {
  display: none !important;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-copy {
  display: block !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 0 clamp(18px, 2vw, 28px) !important;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-copy__inner {
  max-width: 980px;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-copy__title {
  margin: 0 0 16px !important;
  color: var(--gsb-forest-950);
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-copy__body {
  color: var(--gsb-ink-800);
  font-size: clamp(0.98rem, 0.24vw + 0.92rem, 1.08rem);
  line-height: 1.78;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-copy__body p {
  max-width: 90ch;
  margin: 0 0 15px !important;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-copy__body p:last-child {
  margin-bottom: 0 !important;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-copy__facts {
  margin-top: 18px !important;
  padding-top: 14px;
  border-top: 1px solid rgba(24, 74, 51, 0.12);
  color: var(--gsb-ink-700);
  font-size: 0.96em;
  line-height: 1.7;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .woocommerce-Reviews {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.62fr);
  gap: clamp(20px, 3vw, 38px);
  align-items: start;
  padding-top: 4px;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .woocommerce-Reviews #comments,
.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .woocommerce-Reviews #review_form_wrapper {
  min-width: 0;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .woocommerce-Reviews .comment-respond,
.woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .woocommerce-Reviews .comment-form {
  border: 1px solid rgba(24, 74, 51, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

@media (max-width: 860px) {
  .woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper {
    padding-top: 10px !important;
  }

  .woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper ul.tabs.wc-tabs {
    overflow-x: auto;
    padding-bottom: 8px !important;
    scrollbar-width: none;
  }

  .woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper ul.tabs.wc-tabs::-webkit-scrollbar {
    display: none;
  }

  .woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-copy {
    padding-bottom: 20px !important;
  }

  .woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-copy__title {
    margin-bottom: 12px !important;
    font-size: 1.32rem;
  }

  .woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-copy__body {
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .gsb-product-copy__facts {
    margin-top: 14px !important;
    padding-top: 12px;
  }

  .woocommerce div.product.gsb-single-product .woocommerce-tabs.wc-tabs-wrapper .woocommerce-Reviews {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* Single product mobile hardening: no horizontal overflow in buy box */
@media (max-width: 640px) {
  html,
  body {
    overflow-x: hidden;
  }

  .gsb-single-product-main,
  .gsb-single-gallery,
  .gsb-single-buybox,
  .gsb-single-after,
  .woocommerce div.product.gsb-single-product div.summary,
  .woocommerce div.product.gsb-single-product form.cart,
  .gsb-single-shipping-estimate,
  .gsb-single-shipping-form,
  .gsb-single-shipping-row {
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .gsb-single-product-main {
    width: calc(100vw - 20px) !important;
    margin-inline: auto !important;
    justify-items: stretch;
  }

  .gsb-single-gallery,
  .gsb-single-buybox,
  .gsb-single-after {
    width: calc(100vw - 20px) !important;
    margin-inline: auto !important;
  }

  .gsb-single-buybox {
    position: static !important;
    padding: 16px !important;
    border-radius: 16px !important;
  }

  .gsb-single-buybox > *,
  .gsb-single-after > *,
  .gsb-single-shipping-estimate > *,
  .woocommerce div.product.gsb-single-product form.cart > * {
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .woocommerce div.product.gsb-single-product .product_title {
    max-width: 100% !important;
    overflow-wrap: anywhere;
    font-size: clamp(1.72rem, 8.2vw, 2.12rem) !important;
    line-height: 1.02 !important;
  }

  .woocommerce div.product.gsb-single-product .woocommerce-product-details__short-description,
  .woocommerce div.product.gsb-single-product .woocommerce-product-details__short-description p,
  .gsb-single-shipping-estimate p,
  .gsb-single-assurance li {
    max-width: 100% !important;
    overflow-wrap: anywhere;
  }

  .woocommerce div.product.gsb-single-product form.cart .single_add_to_cart_button,
  .gsb-single-shipping-row .gsb-btn,
  .gsb-single-whatsapp {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    white-space: normal !important;
    text-align: center;
  }

  .gsb-single-highlights {
    max-width: 100% !important;
  }

  .gsb-single-highlights span {
    max-width: 100% !important;
    white-space: normal !important;
    text-align: center;
  }

  .gsb-single-shipping-row {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .gsb-single-shipping-row input {
    min-width: 0 !important;
    width: 100% !important;
  }
}

/* My Account final layer: customer-facing account, after legacy Woo overrides */
body.woocommerce-account .gsb-woo-panel-shell {
  background:
    linear-gradient(180deg, rgba(246, 250, 247, 0.92) 0%, rgba(255, 255, 255, 1) 260px),
    #fff;
}

body.woocommerce-account .gsb-woo-panel-header {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

body.woocommerce-account .gsb-woo-panel-header h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
}

body.woocommerce-account .gsb-woo-panel-header p {
  max-width: 52ch;
  margin-inline: auto;
  color: var(--gsb-ink-700);
}

body.woocommerce-account .gsb-woo-panel-content > .woocommerce {
  display: grid !important;
  grid-template-columns: minmax(236px, 280px) minmax(0, 1fr) !important;
  gap: clamp(18px, 3vw, 32px) !important;
  align-items: start !important;
  max-width: 1120px;
  margin-inline: auto;
}

body.woocommerce-account .woocommerce-MyAccount-navigation,
body.woocommerce-account .woocommerce-MyAccount-content {
  float: none !important;
  width: 100% !important;
  min-width: 0;
  box-sizing: border-box;
}

body.woocommerce-account .woocommerce-MyAccount-navigation {
  position: sticky;
  top: calc(var(--gsb-sticky-header-offset, 120px) + 18px);
  border: 1px solid rgba(24, 74, 51, 0.12) !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.94) !important;
  box-shadow: 0 16px 32px rgba(18, 42, 31, 0.07) !important;
  padding: 12px !important;
}

body.woocommerce-account .woocommerce-MyAccount-content {
  border: 1px solid rgba(24, 74, 51, 0.12) !important;
  border-radius: 12px !important;
  background: #fff !important;
  box-shadow: 0 16px 32px rgba(18, 42, 31, 0.06) !important;
  padding: clamp(18px, 3vw, 30px) !important;
}

body.woocommerce-account .gsb-account-nav-head {
  display: grid !important;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 8px 8px 14px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(24, 74, 51, 0.1);
}

body.woocommerce-account .gsb-account-avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gsb-forest-800);
  color: #fff;
  font-weight: 900;
}

body.woocommerce-account .gsb-account-nav-head strong,
body.woocommerce-account .gsb-account-nav-head span {
  display: block;
  overflow: visible;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.woocommerce-account .gsb-account-nav-head strong {
  color: var(--gsb-forest-900);
  font-size: 0.98rem;
}

body.woocommerce-account .gsb-account-nav-head span {
  color: var(--gsb-ink-500);
  font-size: 0.82rem;
}

body.woocommerce-account .woocommerce-MyAccount-navigation ul {
  display: grid !important;
  gap: 4px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

body.woocommerce-account .woocommerce-MyAccount-navigation-link a {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 0;
  min-height: 44px;
  padding: 6px 10px !important;
  border-radius: 10px !important;
  color: var(--gsb-ink-900);
  font-size: 0.92rem;
  font-weight: 850;
  text-decoration: none !important;
}

body.woocommerce-account .gsb-account-nav-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(24, 74, 51, 0.08);
  color: var(--gsb-forest-800);
  font-size: 0.78rem;
  font-weight: 900;
}

body.woocommerce-account .woocommerce-MyAccount-navigation-link.is-active a,
body.woocommerce-account .woocommerce-MyAccount-navigation-link a:hover {
  background: #eef5f0 !important;
  color: var(--gsb-forest-900) !important;
}

body.woocommerce-account .woocommerce-MyAccount-navigation-link.is-active .gsb-account-nav-icon {
  background: var(--gsb-forest-800);
  color: #fff;
}

body.woocommerce-account .woocommerce-MyAccount-navigation-link--customer-logout {
  margin-top: 8px !important;
  padding-top: 8px !important;
  border-top: 1px solid rgba(24, 74, 51, 0.12) !important;
}

body.woocommerce-account .woocommerce-MyAccount-navigation-link--customer-logout a {
  color: var(--gsb-danger) !important;
}

body.woocommerce-account .gsb-account-kicker {
  margin: 0 0 6px !important;
  color: var(--gsb-forest-700);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.woocommerce-account .gsb-account-welcome {
  padding-bottom: clamp(18px, 3vw, 26px);
  border-bottom: 1px solid rgba(24, 74, 51, 0.11);
}

body.woocommerce-account .gsb-account-welcome h2,
body.woocommerce-account .gsb-account-section-head h2,
body.woocommerce-account .gsb-account-section-head h3,
body.woocommerce-account .gsb-account-order-card h3,
body.woocommerce-account .gsb-account-order-card h4,
body.woocommerce-account .gsb-account-order-hero h2 {
  margin: 0;
  color: var(--gsb-forest-900);
  letter-spacing: 0;
}

body.woocommerce-account .gsb-account-welcome h2 {
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  line-height: 1.04;
}

body.woocommerce-account .gsb-account-lead,
body.woocommerce-account .gsb-account-welcome p:last-child,
body.woocommerce-account .gsb-account-order-card p,
body.woocommerce-account .gsb-account-empty-state p,
body.woocommerce-account .gsb-account-order-hero p,
body.woocommerce-account .woocommerce-Address address {
  color: var(--gsb-ink-700);
  line-height: 1.6;
}

body.woocommerce-account .gsb-account-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(18px, 3vw, 26px);
}

body.woocommerce-account .gsb-account-quick-card {
  display: grid;
  gap: 7px;
  min-height: 142px;
  padding: 18px;
  border: 1px solid rgba(24, 74, 51, 0.12);
  border-radius: 10px;
  background: #f9fbf8;
  text-decoration: none !important;
}

body.woocommerce-account .gsb-account-quick-card:hover {
  border-color: rgba(24, 74, 51, 0.28);
  box-shadow: 0 14px 24px rgba(18, 42, 31, 0.08);
}

body.woocommerce-account .gsb-account-quick-card span,
body.woocommerce-account .gsb-account-status {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.woocommerce-account .gsb-account-quick-card span {
  color: var(--gsb-gold-500);
}

body.woocommerce-account .gsb-account-quick-card strong {
  color: var(--gsb-forest-900);
  font-size: 1.02rem;
  line-height: 1.2;
}

body.woocommerce-account .gsb-account-quick-card small {
  color: var(--gsb-ink-700);
  font-size: 0.86rem;
  line-height: 1.45;
}

body.woocommerce-account .gsb-account-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin: clamp(24px, 4vw, 34px) 0 14px;
}

body.woocommerce-account .gsb-account-section-head h2,
body.woocommerce-account .gsb-account-section-head h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

body.woocommerce-account .gsb-account-section-head a,
body.woocommerce-account .woocommerce-Address-title .edit {
  color: var(--gsb-forest-800) !important;
  font-size: 0.88rem;
  font-weight: 900;
  text-decoration: underline !important;
}

body.woocommerce-account .gsb-account-order-list {
  display: grid;
  gap: 12px;
}

body.woocommerce-account .gsb-account-order-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(24, 74, 51, 0.12);
  border-radius: 10px;
  background: #fff;
}

body.woocommerce-account .gsb-account-status {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 10px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: rgba(215, 161, 56, 0.14);
  color: #8a661e;
}

body.woocommerce-account .gsb-account-order-total {
  display: grid;
  justify-items: end;
  gap: 8px;
  text-align: right;
}

body.woocommerce-account .gsb-account-order-total strong {
  color: var(--gsb-forest-900);
  font-size: 1.05rem;
}

body.woocommerce-account .gsb-account-order-total a,
body.woocommerce-account .gsb-account-order-actions .button,
body.woocommerce-account .gsb-account-empty-state .button,
body.woocommerce-account .gsb-account-form-actions .button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--gsb-forest-800) !important;
  color: #fff !important;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-decoration: none !important;
  text-transform: uppercase;
}

body.woocommerce-account .gsb-account-empty-state,
body.woocommerce-account .gsb-account-address-card {
  border: 1px solid rgba(24, 74, 51, 0.12) !important;
  border-radius: 10px !important;
  background: #fbfdfb !important;
  padding: clamp(18px, 3vw, 24px) !important;
}

body.woocommerce-account .gsb-account-empty-state {
  display: grid;
  gap: 10px;
  border-style: dashed !important;
}

body.woocommerce-account .gsb-account-empty-state .button {
  justify-self: start;
  margin-top: 4px;
}

body.woocommerce-account .gsb-account-address-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  margin-top: 18px;
}

body.woocommerce-account .woocommerce-Address-title h3 {
  margin: 0;
  color: var(--gsb-forest-900);
  font-size: 1.08rem;
}

body.woocommerce-account .woocommerce-Address address {
  margin-top: 12px;
  font-style: normal;
}

body.woocommerce-account .gsb-account-form-section {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(24, 74, 51, 0.1);
}

body.woocommerce-account .gsb-account-form-section:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

body.woocommerce-account .gsb-account-form-grid,
body.woocommerce-account .woocommerce-address-fields__field-wrapper {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

body.woocommerce-account .gsb-account-form .form-row {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
}

body.woocommerce-account .gsb-account-form .form-row-wide,
body.woocommerce-account .gsb-account-form fieldset {
  grid-column: 1 / -1;
}

body.woocommerce-account .gsb-account-form label {
  display: block;
  margin-bottom: 7px;
  color: var(--gsb-forest-900);
  font-size: 0.84rem;
  font-weight: 900;
}

body.woocommerce-account .gsb-account-form input.input-text,
body.woocommerce-account .gsb-account-form select,
body.woocommerce-account .gsb-account-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(24, 74, 51, 0.2);
  border-radius: 10px;
  background: #fff;
  color: var(--gsb-ink-900);
  font: inherit;
}

body.woocommerce-account .gsb-account-form input.input-text:focus,
body.woocommerce-account .gsb-account-form select:focus,
body.woocommerce-account .gsb-account-form textarea:focus {
  border-color: var(--gsb-forest-700);
  box-shadow: 0 0 0 3px rgba(31, 96, 67, 0.12);
  outline: 0;
}

body.woocommerce-account .gsb-account-form fieldset {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

body.woocommerce-account .gsb-account-form span#account_display_name_description,
body.woocommerce-account .gsb-account-form em {
  display: block;
  margin-top: 6px;
  color: var(--gsb-ink-500);
  font-size: 0.78rem;
  font-style: normal;
}

body.woocommerce-account .gsb-account-order-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(24, 74, 51, 0.1);
}

body.woocommerce-account .woocommerce-order-details,
body.woocommerce-account .woocommerce-customer-details {
  margin-top: 20px;
}

body.woocommerce-account .woocommerce-order-details h2,
body.woocommerce-account .woocommerce-customer-details h2,
body.woocommerce-account .gsb-account-order-updates h3 {
  margin: 0 0 12px;
  color: var(--gsb-forest-900);
  font-size: 1.3rem;
}

body.woocommerce-account .woocommerce-table,
body.woocommerce-account table.shop_table {
  border: 1px solid rgba(24, 74, 51, 0.12) !important;
  border-radius: 10px !important;
  overflow: hidden;
  background: #fff;
}

@media (max-width: 900px) {
  body.woocommerce-account .gsb-woo-panel-content > .woocommerce {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-navigation {
    position: static !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-navigation ul {
    display: flex !important;
    gap: 8px !important;
    overflow-x: auto;
    padding-bottom: 2px !important;
    scroll-snap-type: x proximity;
  }

  body.woocommerce-account .woocommerce-MyAccount-navigation li {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  body.woocommerce-account .woocommerce-MyAccount-navigation-link a {
    grid-template-columns: 28px max-content;
    min-height: 42px;
    white-space: nowrap;
  }

  body.woocommerce-account .gsb-account-quick-grid {
    grid-template-columns: 1fr;
  }

  body.woocommerce-account .gsb-account-order-card,
  body.woocommerce-account .gsb-account-order-hero {
    grid-template-columns: 1fr;
    display: grid;
  }

  body.woocommerce-account .gsb-account-order-total {
    justify-items: start;
    text-align: left;
  }

  body.woocommerce-account .gsb-account-form-grid,
  body.woocommerce-account .woocommerce-address-fields__field-wrapper,
  body.woocommerce-account .gsb-account-form fieldset {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  body.woocommerce-account .gsb-woo-panel-shell .gsb-container {
    width: min(100% - 20px, var(--gsb-container));
  }

  body.woocommerce-account .gsb-woo-panel-header {
    margin-bottom: 18px;
  }

  body.woocommerce-account .gsb-woo-panel-header h1 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  body.woocommerce-account .woocommerce-MyAccount-navigation,
  body.woocommerce-account .woocommerce-MyAccount-content {
    border-radius: 10px !important;
    padding: 12px !important;
  }

  body.woocommerce-account .gsb-account-nav-head {
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 4px 4px 12px;
  }

  body.woocommerce-account .gsb-account-avatar {
    width: 38px;
    height: 38px;
  }

  body.woocommerce-account .gsb-account-welcome h2 {
    font-size: 1.75rem;
  }

  body.woocommerce-account .gsb-account-section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  body.woocommerce-account .gsb-account-quick-card,
  body.woocommerce-account .gsb-account-order-card,
  body.woocommerce-account .gsb-account-address-card,
  body.woocommerce-account .gsb-account-empty-state {
    border-radius: 10px;
    padding: 16px !important;
  }

  body.woocommerce-account .gsb-account-order-actions,
  body.woocommerce-account .gsb-account-order-actions .button,
  body.woocommerce-account .gsb-account-empty-state .button,
  body.woocommerce-account .gsb-account-form-actions .button {
    width: 100%;
  }
}

/* My Account correction: app-like customer profile based on marketplace patterns */
body.logged-in.woocommerce-account .gsb-woo-panel-shell {
  background:
    radial-gradient(circle at 8% 12%, rgba(215, 161, 56, 0.16), transparent 28%),
    linear-gradient(180deg, #f6f8fc 0%, #f3f6fb 100%);
  padding-top: clamp(18px, 4vw, 34px);
}

body.logged-in.woocommerce-account .gsb-woo-panel-header {
  display: none !important;
}

body.logged-in.woocommerce-account .gsb-woo-panel-content > .woocommerce {
  display: grid !important;
  grid-template-columns: 128px minmax(0, 1fr) !important;
  gap: 18px 24px !important;
  align-items: start !important;
  max-width: 1120px;
  margin-inline: auto;
}

body.logged-in.woocommerce-account .gsb-account-page-hero {
  grid-column: 1 / -1;
  min-height: 176px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(24, 74, 51, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 40%, rgba(215, 161, 56, 0.24), transparent 30%),
    linear-gradient(135deg, #fffdf2 0%, #f6f8ff 54%, #f8f7ff 100%);
  box-shadow: 0 20px 44px rgba(24, 74, 51, 0.06);
}

body.logged-in.woocommerce-account .gsb-account-page-hero p,
body.logged-in.woocommerce-account .gsb-account-page-hero h2,
body.logged-in.woocommerce-account .gsb-account-page-hero span {
  margin: 0;
}

body.logged-in.woocommerce-account .gsb-account-page-hero p {
  color: var(--gsb-forest-700);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.logged-in.woocommerce-account .gsb-account-page-hero h2 {
  color: var(--gsb-forest-900);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
}

body.logged-in.woocommerce-account .gsb-account-page-hero span {
  max-width: 70ch;
  color: var(--gsb-ink-700);
  font-size: 0.95rem;
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation {
  position: static !important;
  grid-column: 1;
  width: 100% !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-content {
  grid-column: 2;
  min-height: 360px;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation ul {
  display: grid !important;
  gap: 10px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation-link a {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 0;
  min-height: 58px;
  padding: 10px 12px !important;
  border: 1px solid rgba(24, 74, 51, 0.1);
  border-radius: 14px !important;
  background: rgba(255, 255, 255, 0.82);
  color: var(--gsb-forest-900) !important;
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.18;
  text-decoration: none !important;
  box-shadow: 0 12px 26px rgba(18, 42, 31, 0.05);
}

body.logged-in.woocommerce-account .gsb-account-nav-icon {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: rgba(24, 74, 51, 0.08);
  color: var(--gsb-forest-800);
  font-size: 0.68rem;
  font-weight: 900;
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation-link.is-active a,
body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation-link a:hover {
  border-color: rgba(24, 74, 51, 0.2);
  background: var(--gsb-forest-800) !important;
  color: #fff !important;
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation-link.is-active .gsb-account-nav-icon,
body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation-link a:hover .gsb-account-nav-icon {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation-link--customer-logout {
  margin-top: 0 !important;
  padding-top: 0 !important;
  border-top: 0 !important;
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation-link--customer-logout a {
  color: var(--gsb-forest-900) !important;
}

body.logged-in.woocommerce-account .gsb-account-dashboard,
body.logged-in.woocommerce-account .gsb-account-orders,
body.logged-in.woocommerce-account .gsb-account-addresses,
body.logged-in.woocommerce-account .gsb-account-form {
  display: grid;
  gap: 22px;
}

body.logged-in.woocommerce-account .gsb-account-welcome {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 28px;
  border: 0;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(18, 42, 31, 0.06);
}

body.logged-in.woocommerce-account .gsb-account-monogram {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: var(--gsb-forest-800);
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.04em;
}

body.logged-in.woocommerce-account .gsb-account-kicker {
  margin: 0 0 4px !important;
  color: var(--gsb-forest-700);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.logged-in.woocommerce-account .gsb-account-welcome h2 {
  margin: 0;
  color: var(--gsb-forest-900);
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  line-height: 1;
}

body.logged-in.woocommerce-account .gsb-account-welcome p:not(.gsb-account-kicker) {
  margin: 6px 0 0;
  color: var(--gsb-ink-700);
}

body.logged-in.woocommerce-account .gsb-account-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
}

body.logged-in.woocommerce-account .gsb-account-quick-card,
body.logged-in.woocommerce-account .gsb-account-empty-state,
body.logged-in.woocommerce-account .gsb-account-address-card,
body.logged-in.woocommerce-account .gsb-account-order-card,
body.logged-in.woocommerce-account .gsb-account-form-section {
  border: 0 !important;
  border-radius: 18px !important;
  background: #fff !important;
  box-shadow: 0 18px 36px rgba(18, 42, 31, 0.06) !important;
}

body.logged-in.woocommerce-account .gsb-account-quick-card {
  min-height: 178px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px !important;
  color: var(--gsb-forest-900);
  text-decoration: none !important;
}

body.logged-in.woocommerce-account .gsb-account-quick-card strong {
  color: var(--gsb-forest-900);
  font-size: 1.2rem;
  line-height: 1.08;
}

body.logged-in.woocommerce-account .gsb-account-quick-card small {
  color: var(--gsb-ink-700);
  font-size: 0.9rem;
  line-height: 1.55;
}

body.logged-in.woocommerce-account .gsb-account-quick-card b,
body.logged-in.woocommerce-account .gsb-account-empty-state .button,
body.logged-in.woocommerce-account .gsb-account-form-actions .button,
body.logged-in.woocommerce-account .gsb-account-order-actions .button,
body.logged-in.woocommerce-account .gsb-account-order-total a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 42px;
  padding: 0 20px !important;
  border: 1px solid rgba(24, 74, 51, 0.24) !important;
  border-radius: 999px !important;
  background: transparent !important;
  color: var(--gsb-forest-800) !important;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-decoration: none !important;
  text-transform: none;
}

body.logged-in.woocommerce-account .gsb-account-form-actions .button {
  border-color: var(--gsb-forest-800) !important;
  background: var(--gsb-forest-800) !important;
  color: #fff !important;
}

body.logged-in.woocommerce-account .gsb-account-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  padding: 20px 22px;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(215, 161, 56, 0.16), transparent 46%),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 32px rgba(18, 42, 31, 0.05);
}

body.logged-in.woocommerce-account .gsb-account-section-head h2,
body.logged-in.woocommerce-account .gsb-account-section-head h3 {
  margin: 0;
  color: var(--gsb-forest-900);
  font-size: 1.22rem;
}

body.logged-in.woocommerce-account .gsb-account-section-head a {
  color: var(--gsb-forest-800) !important;
  font-size: 0.82rem;
  font-weight: 900;
}

body.logged-in.woocommerce-account .gsb-account-empty-state {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px !important;
  border-style: solid !important;
}

body.logged-in.woocommerce-account .gsb-account-empty-state strong,
body.logged-in.woocommerce-account .gsb-account-empty-state p {
  margin: 0;
}

body.logged-in.woocommerce-account .gsb-account-order-card {
  padding: 22px !important;
}

body.logged-in.woocommerce-account .gsb-account-address-grid {
  display: grid !important;
  gap: 16px;
  margin: 0;
}

body.logged-in.woocommerce-account .gsb-account-lead {
  margin: 0;
  color: var(--gsb-ink-700);
}

body.logged-in.woocommerce-account .gsb-account-address-card {
  padding: 22px !important;
}

body.logged-in.woocommerce-account .gsb-account-form-section {
  margin: 0;
  padding: 26px !important;
}

body.logged-in.woocommerce-account .gsb-account-form-grid,
body.logged-in.woocommerce-account .woocommerce-address-fields__field-wrapper,
body.logged-in.woocommerce-account .gsb-account-form fieldset {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

body.logged-in.woocommerce-account .gsb-account-form .form-row-wide,
body.logged-in.woocommerce-account .gsb-account-form fieldset {
  grid-column: 1 / -1;
}

body.logged-in.woocommerce-account .gsb-account-form input.input-text,
body.logged-in.woocommerce-account .gsb-account-form select,
body.logged-in.woocommerce-account .gsb-account-form textarea {
  min-height: 52px;
  border-color: rgba(24, 74, 51, 0.2);
  border-radius: 0;
  background: #fff;
}

body.logged-in.woocommerce-account .gsb-account-form fieldset {
  padding: 20px !important;
  border: 1px solid rgba(24, 74, 51, 0.1) !important;
  border-radius: 18px !important;
  background: #f8fafc !important;
}

body.woocommerce-account .woocommerce-EditAccountForm .gsb-account-readonly-field {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
  margin: 2px 0 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.woocommerce-account .woocommerce-EditAccountForm .gsb-account-readonly-label {
  display: block;
  margin: 0;
  color: var(--gsb-forest-900);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

body.woocommerce-account .woocommerce-EditAccountForm .gsb-account-readonly-input {
  display: flex;
  align-items: center;
  min-height: 52px;
  width: 100%;
  padding: 0 16px;
  border: 1px solid rgba(24, 74, 51, 0.18);
  border-radius: 6px;
  background: #fff;
  box-sizing: border-box;
}

body.woocommerce-account .woocommerce-EditAccountForm .gsb-account-readonly-value {
  display: inline-block;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--gsb-forest-900);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.4;
  overflow-wrap: anywhere;
  word-break: break-word;
}

body.woocommerce-account .woocommerce-EditAccountForm .gsb-account-readonly-note {
  display: block;
  margin: 0;
  padding: 0 2px;
  color: var(--gsb-ink-600);
  font-size: 0.78rem;
  line-height: 1.5;
}

body.logged-in.woocommerce-account .gsb-suite-account-card {
  border: 0 !important;
  border-radius: 18px !important;
  background: #fff !important;
  box-shadow: 0 18px 36px rgba(18, 42, 31, 0.06) !important;
}

@media (max-width: 900px) {
  body.logged-in.woocommerce-account .gsb-woo-panel-content > .woocommerce {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  body.logged-in.woocommerce-account .gsb-account-page-hero,
  body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation,
  body.logged-in.woocommerce-account .woocommerce-MyAccount-content {
    grid-column: 1 !important;
  }

  body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation ul {
    display: flex !important;
    gap: 10px !important;
    overflow-x: auto;
    padding: 0 0 4px !important;
    scroll-snap-type: x proximity;
  }

  body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation li {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation-link a {
    min-width: 132px;
    min-height: 48px;
  }

  body.logged-in.woocommerce-account .gsb-account-quick-grid,
  body.logged-in.woocommerce-account .gsb-account-form-grid,
  body.logged-in.woocommerce-account .woocommerce-address-fields__field-wrapper,
  body.logged-in.woocommerce-account .gsb-account-form fieldset {
    grid-template-columns: 1fr !important;
  }

  body.logged-in.woocommerce-account .gsb-account-empty-state {
    align-items: flex-start;
    flex-direction: column;
  }

  body.woocommerce-account .woocommerce-EditAccountForm .gsb-account-readonly-field {
    gap: 7px;
  }

  body.woocommerce-account .woocommerce-EditAccountForm .gsb-account-readonly-input {
    min-height: 50px;
    padding-inline: 14px;
  }

  body.woocommerce-account .woocommerce-EditAccountForm .gsb-account-readonly-value {
    font-size: 0.94rem;
  }
}

@media (max-width: 560px) {
  body.logged-in.woocommerce-account .gsb-woo-panel-shell .gsb-container {
    width: min(100% - 28px, var(--gsb-container));
  }

  body.logged-in.woocommerce-account .gsb-account-page-hero {
    min-height: 148px;
    border-radius: 20px;
    padding: 22px;
  }

  body.logged-in.woocommerce-account .gsb-account-page-hero h2 {
    font-size: clamp(2rem, 12vw, 2.8rem);
  }

  body.logged-in.woocommerce-account .gsb-account-welcome {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    padding: 20px;
  }

  body.logged-in.woocommerce-account .gsb-account-monogram {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    font-size: 0.86rem;
  }

  body.logged-in.woocommerce-account .gsb-account-welcome h2 {
    font-size: 1.55rem;
  }

  body.logged-in.woocommerce-account .gsb-account-quick-card,
  body.logged-in.woocommerce-account .gsb-account-empty-state,
  body.logged-in.woocommerce-account .gsb-account-address-card,
  body.logged-in.woocommerce-account .gsb-account-order-card,
  body.logged-in.woocommerce-account .gsb-account-form-section {
    border-radius: 16px !important;
    padding: 18px !important;
  }
}

/* Customer address refinement: Brazil-first address capture with polished controls */
body.logged-in.woocommerce-account .gsb-account-section-head span {
  display: block;
  margin-top: 6px;
  color: var(--gsb-ink-700);
  font-size: 0.88rem;
  line-height: 1.45;
}

body.logged-in.woocommerce-account .gsb-account-country-lock {
  display: grid;
  grid-template-columns: minmax(120px, 0.34fr) minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  margin: 22px 0 18px;
  padding: 14px 16px;
  border: 1px solid rgba(24, 74, 51, 0.12);
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(215, 161, 56, 0.12), transparent 44%),
    #fbfdfb;
}

body.logged-in.woocommerce-account .gsb-account-country-lock span {
  color: var(--gsb-ink-600);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.logged-in.woocommerce-account .gsb-account-country-lock strong {
  color: var(--gsb-forest-900);
  font-size: 1rem;
}

body:not(.home) .woocommerce .gsb-phone-combo {
  display: grid;
  grid-template-columns: minmax(138px, 0.36fr) minmax(0, 1fr);
  gap: 10px;
  width: 100%;
}

body:not(.home) .woocommerce .gsb-phone-combo .gsb-phone-country-code,
body:not(.home) .woocommerce .gsb-phone-combo .gsb-phone-custom-code,
body:not(.home) .woocommerce .gsb-phone-combo input.input-text {
  min-height: 52px;
  width: 100%;
  border: 1px solid rgba(24, 74, 51, 0.2);
  border-radius: 14px;
  background: #fff;
  color: var(--gsb-forest-900);
}

body:not(.home) .woocommerce .gsb-phone-combo .gsb-phone-country-code {
  padding-inline: 12px 30px;
  font-weight: 800;
}

body:not(.home) .woocommerce .gsb-phone-combo .gsb-phone-custom-code[hidden] {
  display: none !important;
}

body:not(.home) .woocommerce .gsb-phone-combo:has(.gsb-phone-custom-code:not([hidden])) {
  grid-template-columns: minmax(118px, 0.28fr) 88px minmax(0, 1fr);
}

body:not(.home) .woocommerce .form-row.is-looking-up-postcode input.input-text {
  border-color: rgba(215, 161, 56, 0.55);
  background-image: linear-gradient(90deg, rgba(215, 161, 56, 0.1), transparent);
}

body:not(.home) .woocommerce .select2-container,
body:not(.home) .woocommerce .select2-container--default {
  width: 100% !important;
  max-width: 100% !important;
}

body:not(.home) .select2-container--open {
  z-index: 100020 !important;
}

body:not(.home) .select2-dropdown {
  border: 1px solid rgba(24, 74, 51, 0.18) !important;
  border-radius: 16px !important;
  background: #fff !important;
  box-shadow: 0 18px 42px rgba(18, 42, 31, 0.16) !important;
  overflow: hidden;
}

body:not(.home) .select2-search--dropdown {
  padding: 10px !important;
  background: #f7faf7;
}

body:not(.home) .select2-search--dropdown .select2-search__field {
  min-height: 42px;
  border: 1px solid rgba(24, 74, 51, 0.18) !important;
  border-radius: 12px !important;
  padding: 0 12px !important;
  outline: none !important;
}

body:not(.home) .select2-results__option {
  padding: 11px 14px !important;
  color: var(--gsb-forest-900);
  font-size: 0.92rem;
}

body:not(.home) .select2-container--default .select2-results__option--highlighted[aria-selected],
body:not(.home) .select2-container--default .select2-results__option--highlighted[data-selected] {
  background: var(--gsb-forest-800) !important;
  color: #fff !important;
}

body:not(.home) .select2-container--default .select2-results__option[aria-selected="true"],
body:not(.home) .select2-container--default .select2-results__option[data-selected="true"] {
  background: #eef5ef;
  color: var(--gsb-forest-900);
  font-weight: 800;
}

body:not(.home).woocommerce-checkout .woocommerce-notices-wrapper:not(:empty),
body:not(.home).woocommerce-checkout .woocommerce-form-coupon-toggle,
body:not(.home).woocommerce-checkout .gsb-checkout-session-card {
  max-width: 1180px;
  margin-inline: auto;
}

body:not(.home).woocommerce-checkout .gsb-checkout-session-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  border: 1px solid rgba(24, 74, 51, 0.12);
  border-radius: 18px;
  background:
    radial-gradient(circle at 12% 0%, rgba(215, 161, 56, 0.16), transparent 34%),
    linear-gradient(135deg, #fff 0%, #f7fbf8 100%);
  box-shadow: 0 16px 38px rgba(18, 42, 31, 0.08);
  padding: 16px 18px;
}

body:not(.home).woocommerce-checkout .gsb-checkout-session-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--gsb-forest-800);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(24, 74, 51, 0.18);
}

body:not(.home).woocommerce-checkout .gsb-checkout-session-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

body:not(.home).woocommerce-checkout .gsb-checkout-session-copy span {
  color: var(--gsb-forest-700);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body:not(.home).woocommerce-checkout .gsb-checkout-session-copy strong {
  color: var(--gsb-forest-900);
  font-family: var(--gsb-font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
  line-height: 1.12;
}

body:not(.home).woocommerce-checkout .gsb-checkout-session-copy small {
  color: var(--gsb-ink-700);
  font-size: 0.88rem;
  overflow-wrap: anywhere;
}

body:not(.home).woocommerce-checkout .gsb-checkout-session-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

body:not(.home).woocommerce-checkout .gsb-checkout-session-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(24, 74, 51, 0.16);
  background: #fff;
  color: var(--gsb-forest-900);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  padding-inline: 14px;
  text-decoration: none;
  text-transform: uppercase;
}

body:not(.home).woocommerce-checkout .gsb-checkout-session-actions a:hover,
body:not(.home).woocommerce-checkout .gsb-checkout-session-actions a:focus-visible {
  border-color: rgba(24, 74, 51, 0.28);
  background: #f1f7f3;
}

body:not(.home).woocommerce-checkout .gsb-checkout-hidden-email {
  display: none !important;
}

body:not(.home).woocommerce-checkout form.checkout.woocommerce-checkout {
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.78fr);
  gap: clamp(18px, 2.8vw, 28px);
}

body:not(.home).woocommerce-checkout #customer_details,
body:not(.home).woocommerce-checkout #order_review {
  border-color: rgba(24, 74, 51, 0.13);
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(18, 42, 31, 0.08);
  padding: clamp(18px, 2.6vw, 28px);
}

body:not(.home).woocommerce-checkout #customer_details {
  overflow: visible;
}

body:not(.home).woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper,
body:not(.home).woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 14px;
}

body:not(.home).woocommerce-checkout #customer_details .form-row {
  float: none;
  clear: none;
  width: 100%;
  margin: 0;
}

body:not(.home).woocommerce-checkout #customer_details .form-row-wide {
  grid-column: 1 / -1;
}

body:not(.home).woocommerce-checkout #customer_details .form-row-first,
body:not(.home).woocommerce-checkout #customer_details .form-row-last {
  width: 100% !important;
}

body:not(.home).woocommerce-checkout #customer_details h3,
body:not(.home).woocommerce-checkout #order_review_heading {
  font-family: var(--gsb-font-display);
  color: var(--gsb-forest-900);
}

body:not(.home).woocommerce-checkout #customer_details h3 {
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(24, 74, 51, 0.1);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
}

body:not(.home).woocommerce-checkout .woocommerce-additional-fields {
  margin-top: 18px;
}

body:not(.home).woocommerce-checkout .woocommerce-additional-fields__field-wrapper {
  display: grid;
  gap: 10px;
}

body:not(.home).woocommerce-checkout .gsb-country-locked-field select,
body:not(.home).woocommerce-checkout .gsb-country-locked-field .select2-selection--single {
  background: linear-gradient(180deg, #f7fbf8, #fff);
  color: var(--gsb-forest-800);
  font-weight: 800;
}

body:not(.home).woocommerce-checkout .woocommerce form .form-row input.input-text,
body:not(.home).woocommerce-checkout .woocommerce form .form-row textarea,
body:not(.home).woocommerce-checkout .woocommerce form .form-row select,
body:not(.home).woocommerce-checkout .woocommerce .select2-container .select2-selection--single {
  border-radius: 12px;
}

body:not(.home).woocommerce-checkout .woocommerce form .form-row select {
  display: block !important;
  height: auto;
  min-height: 58px;
  padding-right: 40px;
  appearance: auto;
}

body:not(.home).woocommerce-checkout .woocommerce form .form-row select + .select2-container {
  display: none !important;
}

body:not(.home).woocommerce-checkout .woocommerce form .form-row,
body:not(.home).woocommerce-checkout .woocommerce .woocommerce-input-wrapper,
body.woocommerce-account .woocommerce form .form-row,
body.woocommerce-account .woocommerce .woocommerce-input-wrapper {
  overflow: visible;
}

body:not(.home).woocommerce-checkout .woocommerce .select2-container--default .select2-selection--single .select2-selection__rendered {
  min-height: 48px;
}

body:not(.home).woocommerce-checkout #order_review_heading {
  align-self: end;
  margin: 0;
  font-size: clamp(1.22rem, 2.2vw, 1.55rem);
}

body:not(.home).woocommerce-checkout #order_review {
  overflow: hidden;
}

body:not(.home).woocommerce-checkout #order_review .shop_table {
  border-radius: 16px;
  table-layout: auto;
}

body:not(.home).woocommerce-checkout #order_review .shop_table th,
body:not(.home).woocommerce-checkout #order_review .shop_table td {
  word-break: normal;
  overflow-wrap: anywhere;
}

body:not(.home).woocommerce-checkout #payment {
  border-radius: 16px;
}

body:not(.home).woocommerce-checkout #payment div.payment_box,
body:not(.home).woocommerce-checkout #payment ul.payment_methods {
  border-radius: 14px;
}

body:not(.home).woocommerce-checkout #place_order {
  border-radius: 999px;
  letter-spacing: 0.08em;
}

body:not(.home).woocommerce-checkout .woocommerce .woocommerce-error {
  position: relative;
  display: block;
  padding: 16px 18px 16px 56px;
}

body:not(.home).woocommerce-checkout .woocommerce .woocommerce-error::before {
  position: absolute;
  top: 14px;
  left: 16px;
}

body:not(.home).woocommerce-checkout .woocommerce .woocommerce-error li {
  display: block;
  margin: 0;
  padding: 0;
  line-height: 1.45;
}

body:not(.home).woocommerce-checkout .woocommerce .woocommerce-error li + li {
  margin-top: 7px;
}

body:not(.home).woocommerce-checkout .woocommerce .woocommerce-info,
body:not(.home).woocommerce-checkout .woocommerce .woocommerce-message {
  border-radius: 16px;
}

body:not(.home).woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info {
  margin-bottom: 16px;
}

body:not(.home).woocommerce-checkout .woocommerce form.checkout_coupon {
  max-width: 1180px;
  margin: 0 auto 18px;
  border: 1px solid rgba(24, 74, 51, 0.12);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(18, 42, 31, 0.07);
  padding: 16px;
}

body:not(.home).woocommerce-checkout .woocommerce form.checkout_coupon p {
  margin-bottom: 10px;
}

body:not(.home).woocommerce-checkout .woocommerce form.checkout_coupon .form-row {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  body:not(.home).woocommerce-checkout form.checkout.woocommerce-checkout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "details"
      "review-title"
      "review";
  }

  body:not(.home).woocommerce-checkout #order_review {
    position: static;
  }

  body:not(.home).woocommerce-checkout .gsb-checkout-session-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  body:not(.home).woocommerce-checkout .gsb-checkout-session-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  body.logged-in.woocommerce-account .gsb-account-country-lock,
  body:not(.home) .woocommerce .gsb-phone-combo,
  body:not(.home) .woocommerce .gsb-phone-combo:has(.gsb-phone-custom-code:not([hidden])) {
    grid-template-columns: 1fr;
  }

  body.logged-in.woocommerce-account .gsb-account-country-lock {
    gap: 4px;
  }

  body:not(.home).woocommerce-checkout .woocommerce-notices-wrapper:not(:empty),
  body:not(.home).woocommerce-checkout .woocommerce-form-coupon-toggle,
  body:not(.home).woocommerce-checkout .gsb-checkout-session-card {
    max-width: calc(100vw - 28px);
  }

  body:not(.home).woocommerce-checkout .gsb-checkout-session-card {
    align-items: start;
    border-radius: 16px;
    padding: 14px;
  }

  body:not(.home).woocommerce-checkout .gsb-checkout-session-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  body:not(.home).woocommerce-checkout .gsb-checkout-session-actions a {
    width: 100%;
  }

  body:not(.home).woocommerce-checkout #customer_details,
  body:not(.home).woocommerce-checkout #order_review {
    border-radius: 18px;
    padding: 16px;
  }

  body:not(.home).woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper,
  body:not(.home).woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper {
    grid-template-columns: 1fr;
  }

  body:not(.home).woocommerce-checkout .woocommerce .woocommerce-message,
  body:not(.home).woocommerce-checkout .woocommerce .woocommerce-info {
    grid-template-columns: 26px minmax(0, 1fr);
    align-items: start;
  }

  body:not(.home).woocommerce-checkout .woocommerce .woocommerce-message .button,
  body:not(.home).woocommerce-checkout .woocommerce .woocommerce-info .button,
  body:not(.home).woocommerce-checkout .woocommerce .woocommerce-message > a,
  body:not(.home).woocommerce-checkout .woocommerce .woocommerce-info > a {
    grid-column: 1 / -1;
    justify-self: stretch;
    width: 100%;
    margin-top: 6px;
    text-align: center;
  }

  body:not(.home).woocommerce-checkout .woocommerce .woocommerce-error {
    padding: 14px 14px 14px 52px;
  }

  body:not(.home).woocommerce-checkout .woocommerce .woocommerce-error::before {
    top: 13px;
    left: 14px;
  }

  body:not(.home).woocommerce-checkout .woocommerce form.checkout_coupon {
    padding: 14px;
    border-radius: 16px;
  }

  body:not(.home).woocommerce-checkout .woocommerce form.checkout_coupon .form-row-first,
  body:not(.home).woocommerce-checkout .woocommerce form.checkout_coupon .form-row-last,
  body:not(.home).woocommerce-checkout .woocommerce form.checkout_coupon .form-row {
    float: none;
    width: 100%;
    margin-right: 0;
  }

  body:not(.home).woocommerce-checkout .woocommerce form.checkout_coupon p.form-row-last {
    margin-top: 10px;
  }

  body:not(.home).woocommerce-checkout .woocommerce form.checkout_coupon .input-text,
  body:not(.home).woocommerce-checkout .woocommerce form.checkout_coupon button.button {
    width: 100%;
    min-width: 0;
  }

  body:not(.home).woocommerce-checkout #order_review .shop_table thead {
    display: none;
  }

  body:not(.home).woocommerce-checkout #order_review .shop_table,
  body:not(.home).woocommerce-checkout #order_review .shop_table tbody,
  body:not(.home).woocommerce-checkout #order_review .shop_table tfoot,
  body:not(.home).woocommerce-checkout #order_review .shop_table tr,
  body:not(.home).woocommerce-checkout #order_review .shop_table th,
  body:not(.home).woocommerce-checkout #order_review .shop_table td {
    display: block;
    width: 100% !important;
  }

  body:not(.home).woocommerce-checkout #order_review .shop_table tr {
    border-top: 1px solid rgba(24, 74, 51, 0.1);
    padding: 12px 0;
    gap: 4px;
  }

  body:not(.home).woocommerce-checkout #order_review .shop_table tr:first-child {
    border-top: 0;
  }

  body:not(.home).woocommerce-checkout #order_review .shop_table th,
  body:not(.home).woocommerce-checkout #order_review .shop_table td {
    border: 0;
    padding: 4px 6px;
  }

  body:not(.home).woocommerce-checkout #order_review .shop_table .product-name,
  body:not(.home).woocommerce-checkout #order_review .shop_table .product-total,
  body:not(.home).woocommerce-checkout #order_review .shop_table tfoot th,
  body:not(.home).woocommerce-checkout #order_review .shop_table tfoot td {
    text-align: left;
  }

  body:not(.home).woocommerce-checkout #order_review .shop_table .product-name {
    font-size: 1rem;
    line-height: 1.45;
    padding-bottom: 2px;
    padding-left: 6px;
    padding-right: 6px;
  }

  body:not(.home).woocommerce-checkout #order_review .shop_table .product-total,
  body:not(.home).woocommerce-checkout #order_review .shop_table tfoot td {
    font-size: 1rem;
    font-weight: 700;
  }

  body:not(.home).woocommerce-checkout #order_review .shop_table .product-total,
  body:not(.home).woocommerce-checkout #order_review .shop_table tfoot th,
  body:not(.home).woocommerce-checkout #order_review .shop_table tfoot td {
    padding-left: 6px;
    padding-right: 6px;
  }

  body:not(.home).woocommerce-checkout #order_review .shop_table tfoot tr.shipping th,
  body:not(.home).woocommerce-checkout #order_review .shop_table tfoot tr.shipping td {
    padding-top: 8px;
  }

  body:not(.home).woocommerce-checkout #order_review .shop_table tfoot tr.shipping ul,
  body:not(.home).woocommerce-checkout #order_review .shop_table tfoot tr.shipping li,
  body:not(.home).woocommerce-checkout #order_review .shop_table tfoot tr.shipping label {
    width: 100%;
  }

  body:not(.home).woocommerce-checkout #order_review .shop_table tfoot tr.shipping label {
    display: block;
    line-height: 1.45;
  }

  body:not(.home).woocommerce-checkout #order_review .shop_table tfoot th {
    color: var(--gsb-forest-900);
    font-weight: 900;
  }

  body:not(.home).woocommerce-checkout #payment ul.payment_methods > li {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: start;
    column-gap: 10px;
    row-gap: 10px;
    padding-inline: 0;
  }

  body:not(.home).woocommerce-checkout #payment ul.payment_methods > li > input[type="radio"] {
    grid-column: 1;
    grid-row: 1;
    margin: 3px 0 0;
    justify-self: start;
    align-self: start;
  }

  body:not(.home).woocommerce-checkout #payment ul.payment_methods > li > label {
    grid-column: 2;
    grid-row: 1;
    display: block;
    width: 100%;
    margin: 0;
    line-height: 1.35;
    word-break: normal;
    overflow-wrap: normal;
  }

  body:not(.home).woocommerce-checkout #payment ul.payment_methods > li > .payment_box {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  body:not(.home).woocommerce-checkout #payment div.payment_box {
    padding: 14px;
  }

  body:not(.home).woocommerce-checkout #payment div.payment_box fieldset {
    margin: 0;
  }

  body:not(.home).woocommerce-checkout #payment div.payment_box .form-row,
  body:not(.home).woocommerce-checkout #payment div.payment_box .form-row-first,
  body:not(.home).woocommerce-checkout #payment div.payment_box .form-row-last {
    float: none;
    width: 100%;
    clear: both;
    margin-right: 0;
  }

  body:not(.home).woocommerce-checkout #payment div.payment_box .form-row-first,
  body:not(.home).woocommerce-checkout #payment div.payment_box .form-row-last {
    margin-bottom: 12px;
  }

  body:not(.home).woocommerce-checkout #payment div.payment_box label {
    display: block;
    width: 100%;
    line-height: 1.45;
  }

  body:not(.home).woocommerce-checkout #payment div.payment_box input.input-text,
  body:not(.home).woocommerce-checkout #payment div.payment_box select,
  body:not(.home).woocommerce-checkout #payment div.payment_box textarea {
    width: 100%;
    min-width: 0;
  }

  body:not(.home).woocommerce-checkout #payment div.payment_box .pagarme-credit-card-number-container img,
  body:not(.home).woocommerce-checkout #payment div.payment_box .pagarme-brand-image img {
    max-width: 36px;
    max-height: 20px;
  }

  body:not(.home).woocommerce-checkout #place_order {
    min-height: 58px;
    white-space: normal;
  }
}

@media (min-width: 521px) and (max-width: 700px) {
  body:not(.home).woocommerce-checkout .woocommerce form.checkout_coupon .form-row-last {
    margin-top: 0;
  }

  body:not(.home).woocommerce-checkout .woocommerce form.checkout_coupon {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: end;
  }

  body:not(.home).woocommerce-checkout .woocommerce form.checkout_coupon > p:not(.form-row) {
    grid-column: 1 / -1;
  }

  body:not(.home).woocommerce-checkout .woocommerce form.checkout_coupon .form-row-first {
    grid-column: 1;
  }

  body:not(.home).woocommerce-checkout .woocommerce form.checkout_coupon .form-row-last {
    grid-column: 2;
    width: auto;
  }

  body:not(.home).woocommerce-checkout .woocommerce form.checkout_coupon button.button {
    width: auto;
    min-width: 154px;
  }
}

/* Out-of-stock state: subtle red cue and disabled add-to-cart button. */
.woocommerce div.product.gsb-single-product .gsb-single-buybox--outofstock {
  border-color: rgba(181, 58, 50, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 248, 247, 0.98) 100%);
}

.woocommerce div.product.gsb-single-product .gsb-single-buybox--outofstock .gsb-single-status__badge--is-outofstock {
  background: rgba(255, 232, 230, 0.95);
  color: #a83a31;
}

.woocommerce div.product.gsb-single-product .gsb-single-cart--outofstock {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.woocommerce div.product.gsb-single-product .gsb-single-cart--outofstock .gsb-single-cart-note {
  margin: 0;
  padding: 11px 12px;
  border: 1px solid rgba(181, 58, 50, 0.12);
  border-radius: 14px;
  background: rgba(255, 242, 240, 0.92);
  color: #8f332d;
  font-size: 0.92rem;
  line-height: 1.45;
}

.woocommerce div.product.gsb-single-product .gsb-single-cart--outofstock .single_add_to_cart_button,
.woocommerce div.product.gsb-single-product .gsb-single-cart--outofstock .single_add_to_cart_button:disabled,
.woocommerce div.product.gsb-single-product .gsb-single-cart--outofstock .single_add_to_cart_button:hover,
.woocommerce div.product.gsb-single-product .gsb-single-cart--outofstock .single_add_to_cart_button:focus-visible {
  background: linear-gradient(135deg, #d7ddd9, #b9c3be) !important;
  color: #5a6862 !important;
  box-shadow: none !important;
  cursor: not-allowed !important;
  opacity: 1 !important;
  pointer-events: none !important;
  filter: none !important;
}

/* Marketplace polish: reduce stacked cards without changing catalog interactions. */
body:not(.home) .gsb-woo-catalog-shell .gsb-woo-catalog-content {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

body:not(.home) .gsb-woo-catalog-shell .gsb-woo-catalog-layout {
  grid-template-columns: minmax(190px, 240px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(20px, 3vw, 34px);
}

body:not(.home) .gsb-woo-catalog-shell .gsb-woo-catalog-sidebar {
  border: 0;
  border-right: 1px solid rgba(24, 74, 51, 0.12);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 2px clamp(14px, 2vw, 22px) 2px 0;
}

body:not(.home) .gsb-woo-catalog-shell .gsb-woo-catalog-sidebar h2 {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
}

body:not(.home) .gsb-woo-catalog-shell .gsb-woo-catalog-cats a {
  min-height: 38px;
  border-radius: 4px;
  padding-inline: 8px;
  transition:
    background-color 0.18s var(--gsb-ease),
    color 0.18s var(--gsb-ease);
}

body:not(.home) .gsb-woo-catalog-shell .gsb-woo-catalog-help {
  margin-top: 14px;
  border: 0;
  border-top: 1px solid rgba(24, 74, 51, 0.1);
  border-radius: 0;
  background: transparent;
  padding: 14px 0 0;
}

body:not(.home) .gsb-woo-catalog-shell .gsb-woo-catalog-help a {
  border-radius: 6px;
}

body:not(.home) .gsb-woo-catalog-shell .woocommerce-result-count {
  margin-top: 3px;
}

body:not(.home) .gsb-woo-catalog-shell .woocommerce-ordering select {
  border-radius: 6px;
  background: #fff;
}

body:not(.home) .gsb-woo-catalog-shell .woocommerce ul.products {
  gap: clamp(16px, 2vw, 24px);
}

body:not(.home) .gsb-woo-catalog-shell .woocommerce ul.products li.product {
  padding: 0 0 14px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  transition:
    border-color 0.2s var(--gsb-ease),
    background-color 0.2s var(--gsb-ease),
    transform 0.2s var(--gsb-ease),
    box-shadow 0.2s var(--gsb-ease);
}

body:not(.home) .gsb-woo-catalog-shell .woocommerce ul.products li.product:hover,
body:not(.home) .gsb-woo-catalog-shell .woocommerce ul.products li.product:focus-within {
  border-color: rgba(24, 74, 51, 0.16);
  background: #fff;
  box-shadow: 0 12px 26px rgba(18, 42, 31, 0.08);
  transform: translateY(-2px);
}

body:not(.home) .gsb-woo-catalog-shell .woocommerce ul.products li.product .woocommerce-LoopProduct-link {
  text-align: center;
}

body:not(.home) .gsb-woo-catalog-shell .woocommerce ul.products li.product .gsb-loop-media-frame {
  width: 100%;
  margin-inline: 0;
  height: clamp(168px, 15vw, 206px);
  border: 0;
  border-radius: 6px;
  background: linear-gradient(180deg, #fbfcfb 0%, #fff 100%);
}

body:not(.home) .gsb-woo-catalog-shell .woocommerce ul.products li.product .gsb-loop-media-img {
  height: 100%;
  padding: 10px 12px 4px;
}

body:not(.home) .gsb-woo-catalog-shell .woocommerce ul.products li.product .gsb-loop-card-category,
body:not(.home) .gsb-woo-catalog-shell .woocommerce ul.products li.product .woocommerce-loop-product__title,
body:not(.home) .gsb-woo-catalog-shell .woocommerce ul.products li.product .price {
  padding-inline: 8px;
}

body:not(.home) .gsb-woo-catalog-shell .woocommerce ul.products li.product .gsb-loop-card-category {
  color: rgba(24, 74, 51, 0.64);
  font-size: 0.64rem;
  font-weight: 800;
}

body:not(.home) .gsb-woo-catalog-shell .woocommerce ul.products li.product .woocommerce-loop-product__title {
  color: var(--gsb-forest-950);
  font-weight: 800;
}

body:not(.home) .gsb-woo-catalog-shell .woocommerce ul.products li.product .price {
  color: var(--gsb-forest-800);
  font-size: 1.26rem;
}

body:not(.home) .gsb-woo-catalog-shell .woocommerce ul.products li.product .price .gsb-price-from__label {
  font-size: 0.58rem;
}

body:not(.home) .gsb-woo-catalog-shell .woocommerce ul.products li.product .price .gsb-price-from__value {
  font-size: 1.18rem;
}

body:not(.home) .gsb-woo-catalog-shell .woocommerce ul.products li.product .button {
  width: calc(100% - 16px);
  border-radius: 6px;
  box-shadow: none;
}

body:not(.home) .gsb-woo-catalog-shell .woocommerce ul.products li.product .button.gsb-loop-buy-now {
  background: #d39a2b;
  box-shadow: none;
}

body:not(.home) .gsb-woo-catalog-shell .woocommerce ul.products li.product .button.gsb-loop-buy-now:hover,
body:not(.home) .gsb-woo-catalog-shell .woocommerce ul.products li.product .button.gsb-loop-buy-now:focus-visible {
  background: #bd8620;
}

body:not(.home) .gsb-woo-catalog-shell .woocommerce ul.products li.product .gsb-loop-view-product-link {
  width: calc(100% - 16px);
  align-self: center;
  border-radius: 6px;
  box-shadow: none;
}

body:not(.home) .gsb-woo-product-shell .gsb-single-buybox {
  border-radius: 6px;
  border-color: rgba(24, 74, 51, 0.12);
  background: #fff;
  box-shadow: none;
}

body:not(.home) .gsb-woo-product-shell .gsb-single-status span,
body:not(.home) .gsb-woo-product-shell .gsb-single-highlights span {
  border-radius: 5px;
}

body:not(.home) .gsb-woo-product-shell .woocommerce div.product.gsb-single-product form.cart .single_add_to_cart_button,
body:not(.home) .gsb-woo-product-shell .gsb-single-shipping-row .gsb-btn,
body:not(.home) .gsb-woo-product-shell .gsb-single-whatsapp {
  border-radius: 6px;
  box-shadow: none;
}

body:not(.home) .gsb-woo-product-shell .gsb-single-shipping-estimate {
  border: 0;
  border-top: 1px solid rgba(24, 74, 51, 0.1);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding-top: 16px;
}

body:not(.home) .gsb-woo-product-shell .gsb-single-shipping-feedback > *,
body:not(.home) .gsb-woo-product-shell .gsb-single-shipping-option {
  border-radius: 6px;
}

body:not(.home) .gsb-woo-product-shell .gsb-single-assurance {
  border-top: 1px solid rgba(24, 74, 51, 0.1);
  margin-top: 14px;
  padding-top: 14px;
}

@media (max-width: 920px) {
  body:not(.home) .gsb-woo-catalog-shell .gsb-woo-catalog-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  body:not(.home) .gsb-woo-catalog-shell .gsb-woo-catalog-sidebar {
    border-right: 0;
    border-bottom: 1px solid rgba(24, 74, 51, 0.1);
    padding: 0 0 14px;
  }
}

@media (max-width: 620px) {
  body:not(.home) .gsb-woo-catalog-shell .woocommerce-result-count,
  body:not(.home) .gsb-woo-catalog-shell .woocommerce-ordering {
    float: none;
    clear: both;
    display: block;
    width: 100%;
    margin: 0 0 12px;
  }

  body:not(.home) .gsb-woo-catalog-shell .woocommerce-ordering select {
    width: 100%;
    max-width: 100%;
  }

  body:not(.home) .gsb-woo-catalog-shell .woocommerce ul.products li.product {
    border-color: rgba(24, 74, 51, 0.1);
    background: #fff;
  }

  body:not(.home) .gsb-woo-catalog-shell .woocommerce ul.products li.product .gsb-loop-media-frame {
    height: 188px;
  }
}

/* Button radius pass: mature CTAs with less pill-shaped UI. */
:root {
  --gsb-action-radius: 9px;
  --gsb-action-radius-tight: 7px;
  --gsb-action-radius-soft: 11px;
}

.gsb-btn,
.gsb-home-promo-banner-cta,
.gsb-header-whatsapp,
.gsb-link-all,
.gsb-store-view-product-link,
.gsb-cart-drawer-actions .gsb-btn,
.gsb-cart-inline-form .button,
.gsb-cart-recommendation-button,
.gsb-cart-empty-card .button,
.gsb-cart-summary-card .checkout-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .gsb-loop-view-product-link,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-checkout #payment .place-order .button,
body:not(.home).woocommerce-checkout #place_order,
body:not(.home).woocommerce-checkout .gsb-checkout-session-actions a,
body.woocommerce-account .woocommerce-info .button,
body.woocommerce-account .woocommerce-message .button,
body.woocommerce-account .woocommerce-error .button,
body.woocommerce-account .gsb-account-order-actions .button,
body.woocommerce-account .gsb-account-empty-state .button,
body.woocommerce-account .gsb-account-form-actions .button,
body.logged-in.woocommerce-account .gsb-account-empty-state .button,
body.logged-in.woocommerce-account .gsb-account-form-actions .button,
body.logged-in.woocommerce-account .gsb-account-order-actions .button,
body.logged-in.woocommerce-account .gsb-account-order-total a,
body:not(.home) .woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
body.woocommerce-page.woocommerce-cart .woocommerce .cart_totals.gsb-cart-summary-card .checkout-button,
body:not(.home) .gsb-woo-product-shell .woocommerce div.product.gsb-single-product form.cart .single_add_to_cart_button,
body:not(.home) .gsb-woo-product-shell .gsb-single-shipping-row .gsb-btn,
body:not(.home) .gsb-woo-product-shell .gsb-single-whatsapp,
.woocommerce div.product.gsb-single-product .gsb-single-cart--outofstock .single_add_to_cart_button {
  border-radius: var(--gsb-action-radius) !important;
}

.gsb-header-search,
.gsb-mobile-search,
.woocommerce .quantity,
.gsb-cart-drawer-qty,
.gsb-cart-summary-card .gsb-cart-inline-form input.input-text,
.gsb-cart-summary-card .gsb-cart-inline-form .button,
.gsb-single-shipping-row input,
.gsb-single-shipping-row .gsb-btn,
body:not(.home).woocommerce-checkout .woocommerce form .form-row input.input-text,
body:not(.home).woocommerce-checkout .woocommerce form .form-row textarea,
body:not(.home).woocommerce-checkout .woocommerce form .form-row select,
body:not(.home).woocommerce-checkout .woocommerce .select2-container .select2-selection--single,
body.woocommerce-account .gsb-account-form input.input-text,
body.woocommerce-account .gsb-account-form select,
body.woocommerce-account .gsb-account-form textarea {
  border-radius: var(--gsb-action-radius-soft) !important;
}

.gsb-header-search button,
.gsb-mobile-search button {
  border-radius: 0 var(--gsb-action-radius-soft) var(--gsb-action-radius-soft) 0 !important;
}

.gsb-shelf-button,
.gsb-cart-carousel-button,
.gsb-cart-drawer-close,
.gsb-cart-drawer-remove,
.gsb-cart-remove,
body.woocommerce-cart .woocommerce a.gsb-cart-remove,
.gsb-menu-toggle,
.gsb-mobile-menu-close {
  border-radius: var(--gsb-action-radius-soft) !important;
}

body:not(.home) .gsb-woo-catalog-shell .gsb-woo-catalog-cats a,
body:not(.home) .gsb-woo-catalog-shell .gsb-woo-catalog-help a,
body:not(.home) .gsb-woo-catalog-shell .woocommerce-ordering select,
body:not(.home) .gsb-woo-catalog-shell .woocommerce ul.products li.product,
body:not(.home) .gsb-woo-catalog-shell .woocommerce ul.products li.product .gsb-loop-media-frame,
body:not(.home) .gsb-woo-catalog-shell .woocommerce ul.products li.product .button,
body:not(.home) .gsb-woo-catalog-shell .woocommerce ul.products li.product .gsb-loop-view-product-link,
body:not(.home) .gsb-woo-product-shell .gsb-single-status span,
body:not(.home) .gsb-woo-product-shell .gsb-single-highlights span,
body:not(.home) .gsb-woo-product-shell .gsb-single-shipping-feedback > *,
body:not(.home) .gsb-woo-product-shell .gsb-single-shipping-option {
  border-radius: var(--gsb-action-radius-tight) !important;
}

/* Loading indicators: keep them readable and animated even on reduced-motion setups. */
.gsb-btn.is-loading::before,
.gsb-btn[aria-busy="true"]::before,
.gsb-header-search button.is-loading::before,
.gsb-header-search button[aria-busy="true"]::before,
.gsb-mobile-search button.is-loading::before,
.gsb-mobile-search button[aria-busy="true"]::before,
.gsb-site-main button[type="submit"].is-loading::before,
.gsb-site-main button[type="submit"][aria-busy="true"]::before,
.woocommerce a.button.loading::before,
.woocommerce a.button.is-loading::before,
.woocommerce button.button.loading::before,
.woocommerce button.button.is-loading::before {
  width: 18px;
  height: 18px;
  border-width: 2px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.18);
  border-top-color: rgba(255, 255, 255, 0.98);
  border-right-color: rgba(255, 255, 255, 0.78);
  border-bottom-color: rgba(255, 255, 255, 0.34);
  border-left-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05);
  animation-duration: 0.82s !important;
  animation-timing-function: linear !important;
  animation-iteration-count: infinite !important;
}

body:not(.home) .woocommerce .blockUI.blockOverlay::after,
.gsb-store-card-media.is-loading::after,
.gsb-store-view-product-link.is-loading::after,
.gsb-store-card-content h3 a.is-loading::after,
.woocommerce ul.products li.product .woocommerce-LoopProduct-link.is-loading::after,
.woocommerce ul.products li.product .woocommerce-loop-product__link.is-loading::after,
.woocommerce ul.products li.product .woocommerce-loop-product__title a.is-loading::after,
.woocommerce ul.products li.product .gsb-loop-view-product-link.is-loading::after,
.gsb-store-card-media.is-nav-loading::after,
.gsb-store-view-product-link.is-nav-loading::after,
.gsb-store-card-content h3 a.is-nav-loading::after,
.woocommerce ul.products li.product .woocommerce-LoopProduct-link.is-nav-loading::after,
.woocommerce ul.products li.product .woocommerce-loop-product__link.is-nav-loading::after,
.woocommerce ul.products li.product .woocommerce-loop-product__title a.is-nav-loading::after,
.woocommerce ul.products li.product .gsb-loop-view-product-link.is-nav-loading::after {
  width: 18px;
  height: 18px;
  border-width: 2px;
  border-style: solid;
  border-color: rgba(24, 74, 51, 0.18);
  border-top-color: rgba(24, 74, 51, 0.92);
  border-right-color: rgba(24, 74, 51, 0.72);
  border-bottom-color: rgba(24, 74, 51, 0.34);
  border-left-color: rgba(24, 74, 51, 0.34);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05);
  animation-duration: 0.82s !important;
  animation-timing-function: linear !important;
  animation-iteration-count: infinite !important;
}

@media (prefers-reduced-motion: reduce) {
  .gsb-btn.is-loading::before,
  .gsb-btn[aria-busy="true"]::before,
  .gsb-header-search button.is-loading::before,
  .gsb-header-search button[aria-busy="true"]::before,
  .gsb-mobile-search button.is-loading::before,
  .gsb-mobile-search button[aria-busy="true"]::before,
  .gsb-site-main button[type="submit"].is-loading::before,
  .gsb-site-main button[type="submit"][aria-busy="true"]::before,
  .woocommerce a.button.loading::before,
  .woocommerce a.button.is-loading::before,
  .woocommerce button.button.loading::before,
  .woocommerce button.button.is-loading::before,
  body:not(.home) .woocommerce .blockUI.blockOverlay::after,
  .gsb-store-card-media.is-loading::after,
  .gsb-store-view-product-link.is-loading::after,
  .gsb-store-card-content h3 a.is-loading::after,
  .woocommerce ul.products li.product .woocommerce-LoopProduct-link.is-loading::after,
  .woocommerce ul.products li.product .woocommerce-loop-product__link.is-loading::after,
  .woocommerce ul.products li.product .woocommerce-loop-product__title a.is-loading::after,
  .woocommerce ul.products li.product .gsb-loop-view-product-link.is-loading::after,
  .gsb-store-card-media.is-nav-loading::after,
  .gsb-store-view-product-link.is-nav-loading::after,
  .gsb-store-card-content h3 a.is-nav-loading::after,
  .woocommerce ul.products li.product .woocommerce-LoopProduct-link.is-nav-loading::after,
  .woocommerce ul.products li.product .woocommerce-loop-product__link.is-nav-loading::after,
  .woocommerce ul.products li.product .woocommerce-loop-product__title a.is-nav-loading::after,
  .woocommerce ul.products li.product .gsb-loop-view-product-link.is-nav-loading::after {
    animation-duration: 0.82s !important;
    animation-timing-function: linear !important;
    animation-iteration-count: infinite !important;
  }
}

/* Product-page and carousel stabilization after variable-product rollout. */
.gsb-section-shelf .gsb-store-card-actions,
.woocommerce ul.products li.product .gsb-loop-actions {
  min-height: 0;
}

.gsb-section-shelf .gsb-store-card .gsb-store-view-product-link,
.woocommerce ul.products li.product .gsb-loop-view-product-link,
.gsb-loop-media-overlay {
  display: none !important;
}

.gsb-section-shelf .gsb-shelf-carousel .gsb-store-grid {
  width: max-content;
}

.gsb-section-shelf .gsb-shelf-carousel .gsb-store-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.woocommerce div.product.gsb-single-product .gsb-single-buybox {
  align-self: start;
}

.woocommerce div.product.gsb-single-product form.variations_form {
  margin-top: 14px;
}

.woocommerce div.product.gsb-single-product .gsb-variable-picker {
  margin-top: 0;
}

.woocommerce div.product.gsb-single-product .gsb-variable-summary {
  gap: 10px;
}

.woocommerce div.product.gsb-single-product .gsb-variable-actions {
  gap: 10px;
}

.woocommerce div.product.gsb-single-product form.variations_form .gsb-variable-actions .quantity,
.woocommerce div.product.gsb-single-product form.variations_form .woocommerce-variation-add-to-cart-disabled .quantity {
  display: none !important;
}

.woocommerce div.product.gsb-single-product form.variations_form .woocommerce-variation-add-to-cart-enabled .quantity {
  display: grid !important;
}

.woocommerce div.product.gsb-single-product .gsb-variable-actions .quantity {
  grid-template-columns: 46px minmax(58px, 1fr) 46px !important;
  grid-template-areas: "minus input plus";
  width: min(210px, 100%) !important;
  max-width: 210px !important;
  min-height: 50px;
  align-items: stretch;
  justify-items: stretch;
}

.woocommerce div.product.gsb-single-product .gsb-variable-actions .quantity .screen-reader-text {
  position: absolute !important;
  grid-area: auto;
}

.woocommerce div.product.gsb-single-product .gsb-variable-actions .quantity .gsb-qty-minus {
  grid-area: minus;
}

.woocommerce div.product.gsb-single-product .gsb-variable-actions .quantity .qty {
  grid-area: input;
}

.woocommerce div.product.gsb-single-product .gsb-variable-actions .quantity .gsb-qty-plus {
  grid-area: plus;
}

.woocommerce div.product.gsb-single-product .gsb-variable-actions .quantity .gsb-qty-btn,
.woocommerce div.product.gsb-single-product .gsb-variable-actions .quantity .qty {
  min-height: 50px !important;
  height: 50px !important;
}

@media (max-width: 760px) {
  .gsb-section-shelf .gsb-store-card-actions,
  .woocommerce ul.products li.product .gsb-loop-actions {
    min-height: 0;
  }

  .woocommerce div.product.gsb-single-product .gsb-variable-actions .quantity {
    width: min(190px, 100%) !important;
  }
}

/* Quantity fixed state: stock limited to one item should not look like a broken selector. */
.woocommerce .quantity.gsb-quantity-fixed,
.woocommerce div.product.gsb-single-product form.cart .quantity.gsb-quantity-fixed,
.woocommerce div.product.gsb-single-product .gsb-variable-actions .quantity.gsb-quantity-fixed,
.woocommerce div.product.gsb-single-product form.variations_form .woocommerce-variation-add-to-cart-enabled .quantity.gsb-quantity-fixed,
body:not(.home) .woocommerce-cart .quantity.gsb-quantity-fixed {
  display: inline-flex !important;
  width: auto !important;
  max-width: 100% !important;
  min-height: 46px !important;
  grid-template-columns: none !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 0 !important;
  padding: 0 14px !important;
  border: 1px solid rgba(24, 74, 51, 0.18) !important;
  border-radius: 12px !important;
  background: #fff !important;
  overflow: visible !important;
  box-shadow: none !important;
}

.woocommerce .quantity.gsb-quantity-fixed input[type="hidden"] {
  display: none !important;
}

.woocommerce .quantity.gsb-quantity-fixed .gsb-quantity-fixed__label {
  display: inline-flex !important;
  color: var(--gsb-forest-950) !important;
  font-size: 0.76rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.06em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
}

.woocommerce .quantity.gsb-quantity-fixed .gsb-quantity-fixed__value {
  display: inline-grid !important;
  place-items: center !important;
  min-width: 30px !important;
  height: 30px !important;
  border-radius: 8px !important;
  background: rgba(24, 74, 51, 0.08) !important;
  color: var(--gsb-forest-950) !important;
  font-size: 0.95rem !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

.gsb-cart-drawer-qty.gsb-cart-drawer-qty--fixed {
  display: inline-flex;
  grid-template-columns: none;
  align-items: center;
  gap: 0;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 10px;
  overflow: visible;
}

.gsb-cart-drawer-qty.gsb-cart-drawer-qty--fixed span {
  color: var(--gsb-forest-950);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Customer account refinement: fewer nested boxes, clearer marketplace-style flow. */
body.logged-in.woocommerce-account .gsb-woo-panel-shell {
  background: linear-gradient(180deg, #f7faf7 0%, #fff 360px) !important;
  padding-top: clamp(18px, 3vw, 34px);
}

body.logged-in.woocommerce-account .gsb-woo-panel-content > .woocommerce {
  grid-template-columns: minmax(178px, 220px) minmax(0, 1fr) !important;
  gap: clamp(20px, 3vw, 36px) !important;
  max-width: 1180px !important;
}

body.logged-in.woocommerce-account .gsb-account-page-hero {
  grid-column: 1 / -1;
  min-height: 0;
  padding: 0 0 clamp(18px, 3vw, 28px);
  border: 0 !important;
  border-bottom: 1px solid rgba(24, 74, 51, 0.14) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.logged-in.woocommerce-account .gsb-account-page-hero h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: 0;
}

body.logged-in.woocommerce-account .gsb-account-page-hero span {
  max-width: 68ch;
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation {
  position: sticky !important;
  top: calc(var(--gsb-sticky-header-offset, 110px) + 18px);
  padding: 0 18px 0 0 !important;
  border: 0 !important;
  border-right: 1px solid rgba(24, 74, 51, 0.12) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation ul {
  gap: 2px !important;
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation-link a {
  min-height: 44px;
  padding: 8px 10px !important;
  border: 0 !important;
  border-radius: 6px !important;
  background: transparent !important;
  box-shadow: none !important;
  font-size: 0.86rem;
  line-height: 1.2;
}

body.logged-in.woocommerce-account .gsb-account-nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: rgba(24, 74, 51, 0.08);
  color: var(--gsb-forest-800);
  flex: 0 0 26px;
}

body.logged-in.woocommerce-account .gsb-account-nav-icon svg {
  width: 14px;
  height: 14px;
  display: block;
}

body.woocommerce-account .gsb-account-nav-icon,
body.logged-in.woocommerce-account .gsb-account-nav-icon {
  display: none !important;
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation-link.is-active a,
body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation-link a:hover {
  background: rgba(24, 74, 51, 0.08) !important;
  color: var(--gsb-forest-900) !important;
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation-link.is-active .gsb-account-nav-icon,
body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation-link a:hover .gsb-account-nav-icon {
  background: var(--gsb-forest-800);
  color: #fff;
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation-link--customer-logout {
  margin-top: 12px !important;
  padding-top: 12px !important;
  border-top: 1px solid rgba(24, 74, 51, 0.12) !important;
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-content {
  min-height: 340px;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}

body.logged-in.woocommerce-account .gsb-account-dashboard,
body.logged-in.woocommerce-account .gsb-account-orders,
body.logged-in.woocommerce-account .gsb-account-addresses,
body.logged-in.woocommerce-account .gsb-account-form {
  gap: clamp(18px, 3vw, 28px);
}

body.logged-in.woocommerce-account .gsb-account-welcome {
  display: block;
  padding: 0 0 clamp(18px, 3vw, 24px);
  border: 0;
  border-bottom: 1px solid rgba(24, 74, 51, 0.12);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.logged-in.woocommerce-account .gsb-account-monogram {
  display: none;
}

body.logged-in.woocommerce-account .gsb-account-welcome h2 {
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  letter-spacing: 0;
}

body.logged-in.woocommerce-account .gsb-account-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  border-top: 1px solid rgba(24, 74, 51, 0.12);
  border-bottom: 1px solid rgba(24, 74, 51, 0.12);
}

body.logged-in.woocommerce-account .gsb-account-quick-card {
  min-height: 0;
  padding: 18px 20px !important;
  border: 0 !important;
  border-right: 1px solid rgba(24, 74, 51, 0.1) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.logged-in.woocommerce-account .gsb-account-quick-card:last-child {
  border-right: 0 !important;
}

body.logged-in.woocommerce-account .gsb-account-quick-card:hover {
  background: rgba(24, 74, 51, 0.04) !important;
}

body.logged-in.woocommerce-account .gsb-account-quick-card b,
body.logged-in.woocommerce-account .gsb-account-order-total a,
body.logged-in.woocommerce-account .gsb-account-order-actions .button,
body.logged-in.woocommerce-account .gsb-account-empty-state .button,
body.logged-in.woocommerce-account .gsb-account-form-actions .button {
  min-height: 36px;
  padding: 0 14px !important;
  border-radius: 6px !important;
}

body.logged-in.woocommerce-account .gsb-account-quick-card b {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: var(--gsb-forest-800) !important;
  text-decoration: underline !important;
  text-underline-offset: 4px;
}

body.logged-in.woocommerce-account .gsb-account-section-head {
  padding: 0 0 12px;
  border-bottom: 1px solid rgba(24, 74, 51, 0.12);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.logged-in.woocommerce-account .gsb-account-empty-state,
body.logged-in.woocommerce-account .gsb-account-address-card,
body.logged-in.woocommerce-account .gsb-account-order-card,
body.logged-in.woocommerce-account .gsb-account-form-section,
body.logged-in.woocommerce-account .gsb-suite-account-card {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.logged-in.woocommerce-account .gsb-account-empty-state,
body.logged-in.woocommerce-account .gsb-account-address-card,
body.logged-in.woocommerce-account .gsb-account-order-card {
  padding: 16px 0 !important;
  border-bottom: 1px solid rgba(24, 74, 51, 0.1) !important;
}

body.logged-in.woocommerce-account .gsb-account-order-list,
body.logged-in.woocommerce-account .gsb-account-address-grid {
  gap: 0 !important;
}

body.logged-in.woocommerce-account .gsb-account-order-card {
  grid-template-columns: minmax(0, 1fr) auto;
}

body.logged-in.woocommerce-account .gsb-account-status {
  min-height: 24px;
  margin-bottom: 8px;
  border-radius: 4px;
}

body.logged-in.woocommerce-account .gsb-account-form-section {
  margin: 0;
  padding: 0 0 24px !important;
  border-bottom: 1px solid rgba(24, 74, 51, 0.1) !important;
}

body.logged-in.woocommerce-account .gsb-account-form-section:last-of-type {
  border-bottom: 0 !important;
}

body.logged-in.woocommerce-account .gsb-account-form input.input-text,
body.logged-in.woocommerce-account .gsb-account-form select,
body.logged-in.woocommerce-account .gsb-account-form textarea {
  border-radius: 6px;
}

body.logged-in.woocommerce-account .gsb-account-form fieldset,
body.logged-in.woocommerce-account .gsb-account-country-lock {
  border-radius: 6px !important;
  background: rgba(24, 74, 51, 0.035) !important;
  box-shadow: none !important;
}

body.logged-in.woocommerce-account .woocommerce-order-details,
body.logged-in.woocommerce-account .woocommerce-customer-details {
  padding-top: 18px;
  border-top: 1px solid rgba(24, 74, 51, 0.12);
}

body.woocommerce-account #pagarme-payment-detail-title {
  margin: 24px 0 14px;
  color: var(--gsb-forest-900);
  font-size: clamp(1.22rem, 1.8vw, 1.5rem);
  line-height: 1.18;
}

body.woocommerce-account .gsb-account-order-detail section > .woocommerce-table[aria-describedby="pagarme-payment-detail-title"] {
  width: 100%;
  margin: 0 0 16px;
  border: 1px solid rgba(24, 74, 51, 0.12) !important;
  border-radius: 10px !important;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  background: #fff;
  box-shadow: none;
}

body.woocommerce-account .gsb-account-order-detail section > .woocommerce-table[aria-describedby="pagarme-payment-detail-title"] thead th {
  padding: 16px 18px 14px;
  border: 0;
  background: #f9fbf8;
  border-bottom: 1px solid rgba(24, 74, 51, 0.08);
  color: var(--gsb-forest-900);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
}

body.woocommerce-account .gsb-account-order-detail section > .woocommerce-table[aria-describedby="pagarme-payment-detail-title"] tbody {
  display: block;
  padding: 8px 18px 12px;
}

body.woocommerce-account .gsb-account-order-detail section > .woocommerce-table[aria-describedby="pagarme-payment-detail-title"] tbody tr {
  display: grid;
  grid-template-columns: minmax(132px, 180px) minmax(0, 1fr);
  gap: 8px 16px;
  align-items: start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(24, 74, 51, 0.08);
}

body.woocommerce-account .gsb-account-order-detail section > .woocommerce-table[aria-describedby="pagarme-payment-detail-title"] tbody tr:last-child {
  border-bottom: 0;
  padding-bottom: 4px;
}

body.woocommerce-account .gsb-account-order-detail section > .woocommerce-table[aria-describedby="pagarme-payment-detail-title"] tbody th,
body.woocommerce-account .gsb-account-order-detail section > .woocommerce-table[aria-describedby="pagarme-payment-detail-title"] tbody td {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  vertical-align: top;
}

body.woocommerce-account .gsb-account-order-detail section > .woocommerce-table[aria-describedby="pagarme-payment-detail-title"] tbody th {
  color: rgba(13, 47, 31, 0.72);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

body.woocommerce-account .gsb-account-order-detail section > .woocommerce-table[aria-describedby="pagarme-payment-detail-title"] tbody td {
  color: var(--gsb-forest-900);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.5;
  word-break: break-word;
}

body.woocommerce-account .gsb-account-order-detail section > .woocommerce-table[aria-describedby="pagarme-payment-detail-title"] tbody tr:last-child td {
  color: #1e6b46;
}

@media (max-width: 640px) {
  body.woocommerce-account .gsb-account-order-detail section > .woocommerce-table[aria-describedby="pagarme-payment-detail-title"] thead th {
    padding: 14px 16px 12px;
    font-size: 0.96rem;
  }

  body.woocommerce-account .gsb-account-order-detail section > .woocommerce-table[aria-describedby="pagarme-payment-detail-title"] tbody {
    padding: 8px 16px 12px;
  }

  body.woocommerce-account .gsb-account-order-detail section > .woocommerce-table[aria-describedby="pagarme-payment-detail-title"] tbody tr {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 10px 0;
  }

  body.woocommerce-account .gsb-account-order-detail section > .woocommerce-table[aria-describedby="pagarme-payment-detail-title"] tbody th {
    font-size: 0.82rem;
  }

  body.woocommerce-account .gsb-account-order-detail section > .woocommerce-table[aria-describedby="pagarme-payment-detail-title"] tbody td {
    font-size: 0.96rem;
  }
}

body.logged-in.woocommerce-account .woocommerce-table,
body.logged-in.woocommerce-account table.shop_table {
  border-radius: 6px !important;
}

body.woocommerce-order-received .gsb-woo-panel-header {
  display: none;
}

.gsb-thankyou {
  display: grid;
  gap: clamp(24px, 4vw, 38px);
  width: min(100%, 1180px);
  margin: 0 auto;
}

.gsb-thankyou-hero {
  display: grid;
  gap: 18px;
  max-width: 880px;
  padding: clamp(28px, 6vw, 68px) 0 clamp(18px, 4vw, 32px);
  border-bottom: 1px solid rgba(24, 74, 51, 0.12);
}

.gsb-thankyou-kicker {
  margin: 0;
  color: var(--gsb-gold-700);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gsb-thankyou-hero h2 {
  max-width: 760px;
  margin: 0;
  color: var(--gsb-forest-950);
  font-family: var(--gsb-font-display);
  font-size: clamp(2.2rem, 7vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.gsb-thankyou-hero p:not(.gsb-thankyou-kicker) {
  max-width: 650px;
  margin: 0;
  color: rgba(13, 47, 31, 0.76);
  font-size: clamp(1rem, 2vw, 1.14rem);
  line-height: 1.7;
}

.gsb-thankyou-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
  align-items: center;
}

.gsb-thankyou-actions .button {
  position: relative;
  display: inline-flex;
  align-items: stretch;
  justify-content: center;
  flex: 0 0 auto;
  height: 48px;
  min-height: 48px;
  min-width: 196px;
  padding: 0 !important;
  border: 1px solid var(--gsb-forest-900) !important;
  border-radius: 7px !important;
  background: var(--gsb-forest-900) !important;
  color: #fff !important;
  font-family: inherit !important;
  font-size: 0.76rem !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  box-sizing: border-box;
}

.gsb-thankyou-action-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  line-height: 1 !important;
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
}

.gsb-thankyou-actions .gsb-thankyou-secondary,
.gsb-thankyou-actions .button:not(.pay):last-child {
  background: transparent !important;
  color: var(--gsb-forest-900) !important;
}

.gsb-thankyou-hero--failed .gsb-thankyou-kicker {
  color: #9a3412;
}

.gsb-thankyou-summary {
  display: grid;
  gap: 14px;
}

.gsb-thankyou-summary h3 {
  margin: 0;
  color: var(--gsb-forest-950);
  font-size: clamp(1.28rem, 2vw, 1.65rem);
}

.gsb-thankyou-summary dl {
  display: grid;
  grid-template-columns: minmax(110px, 0.8fr) minmax(160px, 1fr) minmax(240px, 1.5fr) minmax(130px, 0.9fr) minmax(170px, 1.05fr);
  margin: 0;
  border-top: 1px solid rgba(24, 74, 51, 0.12);
  border-bottom: 1px solid rgba(24, 74, 51, 0.12);
}

.gsb-thankyou-summary dl > div {
  min-width: 0;
  padding: 16px 18px;
  border-right: 1px solid rgba(24, 74, 51, 0.12);
}

.gsb-thankyou-summary dl > div:last-child {
  border-right: 0;
}

.gsb-thankyou-summary dt {
  margin: 0 0 6px;
  color: rgba(13, 47, 31, 0.56);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gsb-thankyou-summary dd {
  margin: 0;
  color: var(--gsb-forest-950);
  font-weight: 850;
  word-break: normal;
  overflow-wrap: break-word;
  line-height: 1.45;
}

.gsb-thankyou-summary dd a,
.gsb-thankyou-summary dd span {
  word-break: normal;
  overflow-wrap: break-word;
}

body.woocommerce-order-received .woocommerce-order-details,
body.woocommerce-order-received .woocommerce-customer-details,
body.woocommerce-order-received .woocommerce-order > .woocommerce-notice,
body.woocommerce-order-received .woocommerce-order > .woocommerce-message,
body.woocommerce-order-received .woocommerce-order > .woocommerce-info {
  width: min(100%, 1180px);
  margin-left: auto;
  margin-right: auto;
}

body.woocommerce-order-received .woocommerce-order-details,
body.woocommerce-order-received .woocommerce-customer-details {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

body.woocommerce-order-received .woocommerce-order-details h2,
body.woocommerce-order-received .woocommerce-customer-details h2 {
  color: var(--gsb-forest-950);
}

@media (max-width: 900px) {
  .gsb-thankyou {
    width: 100%;
  }

  .gsb-thankyou-summary dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gsb-thankyou-summary dl > div {
    border-right: 1px solid rgba(24, 74, 51, 0.12);
    border-bottom: 1px solid rgba(24, 74, 51, 0.12);
  }

  .gsb-thankyou-summary dl > div:nth-child(2n) {
    border-right: 0;
  }

  .gsb-thankyou-summary dl > div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  .gsb-thankyou-actions {
    display: grid;
    justify-items: stretch;
  }

  .gsb-thankyou-actions .button {
    width: 100%;
    min-width: 0;
    white-space: normal;
  }

  .gsb-thankyou-summary dl {
    grid-template-columns: 1fr;
  }

  .gsb-thankyou-summary dl > div,
  .gsb-thankyou-summary dl > div:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 900px) {
  body.logged-in.woocommerce-account .gsb-woo-panel-content > .woocommerce {
    grid-template-columns: 1fr !important;
  }

  body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation {
    position: static !important;
    padding: 0 !important;
    border-right: 0 !important;
  }

  body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation ul {
    display: flex !important;
    gap: 6px !important;
    overflow-x: auto;
    padding-bottom: 8px !important;
  }

  body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation-link a {
    min-width: max-content;
    min-height: 42px;
    padding-inline: 10px !important;
    border: 1px solid rgba(24, 74, 51, 0.12) !important;
    background: #fff !important;
  }

  body.logged-in.woocommerce-account .gsb-account-quick-grid {
    grid-template-columns: 1fr;
  }

  body.logged-in.woocommerce-account .gsb-account-quick-card {
    border-right: 0 !important;
    border-bottom: 1px solid rgba(24, 74, 51, 0.1) !important;
  }

  body.logged-in.woocommerce-account .gsb-account-quick-card:last-child {
    border-bottom: 0 !important;
  }
}

@media (max-width: 560px) {
  body.logged-in.woocommerce-account .gsb-woo-panel-shell .gsb-container {
    width: min(100% - 24px, var(--gsb-container));
  }

  body.logged-in.woocommerce-account .gsb-account-page-hero h2 {
    font-size: clamp(1.9rem, 10vw, 2.45rem);
  }

  body.logged-in.woocommerce-account .gsb-account-empty-state {
    align-items: flex-start;
    flex-direction: column;
  }

  body.logged-in.woocommerce-account .gsb-account-order-card {
    grid-template-columns: 1fr;
  }

  body.logged-in.woocommerce-account .gsb-account-order-total {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 680px) {
  body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation ul {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    overflow: visible !important;
    padding: 0 !important;
  }

  body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation li {
    flex: initial !important;
    width: 100%;
  }

  body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation-link a {
    min-width: 0 !important;
    width: 100%;
  }

  body.logged-in.woocommerce-account .gsb-account-section-head {
    align-items: flex-start !important;
    justify-content: flex-start !important;
    flex-direction: column !important;
    gap: 8px !important;
    text-align: left !important;
  }

  body.logged-in.woocommerce-account .gsb-account-section-head > div,
  body.logged-in.woocommerce-account .gsb-account-section-head h2,
  body.logged-in.woocommerce-account .gsb-account-section-head h3,
  body.logged-in.woocommerce-account .gsb-account-section-head p,
  body.logged-in.woocommerce-account .gsb-account-section-head span {
    width: 100%;
    text-align: left !important;
  }

  body.logged-in.woocommerce-account .gsb-account-section-head a {
    align-self: flex-start !important;
    text-align: left !important;
  }
}

/* Lost password page: compact, responsive account recovery form. */
body.woocommerce-lost-password .gsb-woo-panel-content {
  max-width: 860px;
  margin: 0 auto;
}

body.woocommerce-lost-password .gsb-woo-panel-content > .woocommerce,
body.woocommerce-lost-password .gsb-auth-layout-single {
  display: block;
}

body.woocommerce-lost-password .gsb-auth-card {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid rgba(24, 74, 51, 0.14);
  border-radius: 18px;
  background: #fff;
  padding: clamp(24px, 4vw, 34px);
}

body.woocommerce-lost-password .gsb-auth-card-head {
  max-width: 620px;
  margin-bottom: 22px;
}

body.woocommerce-lost-password .gsb-auth-card-head h2 {
  margin: 0 0 8px;
  color: var(--gsb-forest-900);
  font-size: clamp(1.7rem, 4vw, 2.15rem);
  line-height: 1.08;
}

body.woocommerce-lost-password .gsb-auth-card-head p:last-child {
  margin: 0;
  color: rgba(23, 33, 27, 0.76);
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.55;
}

body.woocommerce-lost-password form.lost_reset_password {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 16px;
  border: 1px solid rgba(24, 74, 51, 0.12) !important;
  border-radius: 16px !important;
  background: #fbfdfb !important;
  padding: clamp(16px, 3vw, 22px) !important;
}

body.woocommerce-lost-password form.lost_reset_password .form-row {
  float: none;
  width: auto;
  margin: 0;
  padding: 0;
}

body.woocommerce-lost-password form.lost_reset_password label {
  display: block;
  margin: 0 0 8px;
  color: var(--gsb-forest-900);
  font-weight: 850;
}

body.woocommerce-lost-password form.lost_reset_password input.input-text {
  width: 100%;
  min-height: 54px;
  border-radius: 12px;
  background: #fff;
}

body.woocommerce-lost-password form.lost_reset_password .woocommerce-Button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-radius: 12px;
  padding: 0 24px;
}

@media (max-width: 720px) {
  body.woocommerce-lost-password .gsb-woo-panel-header h1 {
    font-size: clamp(2.4rem, 15vw, 4rem);
  }

  body.woocommerce-lost-password .gsb-auth-card {
    border-radius: 16px;
    padding: 22px 16px;
  }

  body.woocommerce-lost-password form.lost_reset_password {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  body.woocommerce-lost-password form.lost_reset_password .woocommerce-Button {
    width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
    padding: 0 18px;
  }
}

/* Password recovery refinements: request link and set new password. */
body.woocommerce-lost-password form.gsb-request-password-form,
body.woocommerce-lost-password form.gsb-reset-password-form {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 16px !important;
  width: 100%;
}

body.woocommerce-lost-password form.gsb-request-password-form .form-row,
body.woocommerce-lost-password form.gsb-reset-password-form .form-row {
  display: block !important;
  float: none !important;
  clear: both !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

body.woocommerce-lost-password form.gsb-request-password-form .woocommerce-form-row--first,
body.woocommerce-lost-password form.gsb-reset-password-form .woocommerce-form-row--first,
body.woocommerce-lost-password form.gsb-reset-password-form .woocommerce-form-row--last {
  width: 100% !important;
}

body.woocommerce-lost-password form.gsb-request-password-form input.input-text,
body.woocommerce-lost-password form.gsb-reset-password-form input.input-text,
body.woocommerce-lost-password form.gsb-reset-password-form .password-input {
  width: 100% !important;
  max-width: 100% !important;
}

body.woocommerce-lost-password form.gsb-reset-password-form .password-input {
  display: block !important;
  position: relative;
}

body.woocommerce-lost-password form.gsb-reset-password-form .password-input input.input-text {
  padding-right: 52px !important;
}

body.woocommerce-lost-password form.gsb-reset-password-form .show-password-input {
  position: absolute !important;
  top: 50% !important;
  right: 16px !important;
  left: auto !important;
  transform: translateY(-50%) !important;
  width: 28px !important;
  height: 28px !important;
  margin: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

body.woocommerce-lost-password .gsb-reset-password-intro {
  margin: 0;
  color: rgba(23, 33, 27, 0.78);
  font-size: 1rem;
  line-height: 1.55;
}

body.woocommerce-lost-password form.gsb-reset-password-form .woocommerce-password-strength,
body.woocommerce-lost-password form.gsb-reset-password-form .woocommerce-password-hint {
  width: 100%;
  margin: 8px 0 0;
  border-radius: 10px;
  line-height: 1.45;
  text-align: left;
}

body.woocommerce-lost-password form.gsb-reset-password-form .woocommerce-password-strength {
  padding: 10px 12px;
  font-weight: 800;
}

body.woocommerce-lost-password form.gsb-reset-password-form .woocommerce-password-hint {
  display: block;
  color: rgba(23, 33, 27, 0.76);
  font-size: 0.92rem;
}

body.woocommerce-lost-password form.gsb-request-password-form .woocommerce-Button,
body.woocommerce-lost-password form.gsb-reset-password-form .woocommerce-Button {
  align-self: flex-start;
  min-width: 168px;
}

@media (max-width: 720px) {
  body.woocommerce-lost-password form.gsb-request-password-form .woocommerce-Button,
  body.woocommerce-lost-password form.gsb-reset-password-form .woocommerce-Button {
    align-self: stretch;
    width: 100%;
  }
}

/* My account order detail: keep the native "Comprar novamente" button aligned. */
body.woocommerce-account .gsb-account-order-detail .order-again {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 20px 0 0;
  padding: 0;
}

body.woocommerce-account .gsb-account-order-detail .order-again .button {
  min-height: 44px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  max-width: 100%;
  padding: 0 18px !important;
  border-radius: 8px !important;
  line-height: 1 !important;
  white-space: nowrap;
  text-align: center;
  vertical-align: middle;
}

body.woocommerce-account .gsb-account-order-detail .order-again .button::after {
  display: none !important;
}

@media (max-width: 560px) {
  body.woocommerce-account .gsb-account-order-detail .order-again {
    align-items: stretch;
  }

  body.woocommerce-account .gsb-account-order-detail .order-again .button {
    width: 100% !important;
    white-space: normal;
    line-height: 1.2 !important;
  }
}
