:root {
  --secondary-main: #e0640f;
  --brand: #e0640f;
  --brand-d: #c4540a;
  --leaf: #4e9e23;
  --leaf-d: #3c7d18;
  --leaf-soft: #8bc34a;
  --leaf-bg: #e7f3da;
  --deep: #1f3a17;
  --cream: #fbf6ec;
  --cream2: #f3ead6;
  --ink: #26331e;
  --muted: #6d7763;
  --line: #e9e1cf;
  --wa: #25a155;
  --save: #2f8f43;
}

* {
  box-sizing: border-box;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
.m-cat:focus-visible {
  outline: 3px solid var(--leaf);
  outline-offset: 2px;
  border-radius: 6px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }

  .m-cat__img img,
  .m-pcard__img img {
    transform: none !important;
  }
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, Roboto, sans-serif;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
}

.ic {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* announcement */
.m-notice {
  background: var(--deep);
  color: var(--leaf-bg);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  padding: 10px 16px;
}

/* header */
.m-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.m-header__in {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 11px 18px;
  max-width: 1200px;
  margin: 0 auto;
}

.m-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
}

.m-logo img {
  height: 50px;
  width: auto;
  display: block;
}

.m-search {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 18px;
  color: var(--muted);
  font-size: 14px;
  max-width: 460px;
}

.m-search .ic {
  width: 18px;
  height: 18px;
  color: var(--leaf-d);
  flex: 0 0 auto;
}

.m-search input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  color: var(--ink);
  font-size: 14px;
  font-family: inherit;
  min-width: 0;
}

.m-search input::placeholder {
  color: var(--muted);
}

.m-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-link {
  display: none;
  gap: 20px;
  margin-left: auto;
  text-decoration: none !important;
  color: #3a4733 !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  white-space: nowrap !important;
  position: relative !important;
  padding: 4px 0 !important;
}

.nav-link::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  right: 100% !important;
  bottom: -2px !important;
  height: 2px !important;
  background: var(--brand) !important;
  transition: right .25s ease !important;
  border-radius: 2px !important;
}

.nav-link:hover {
  color: var(--brand-d) !important;
}

.nav-link:hover::after {
  right: 0 !important;
}

.m-ico {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-left: auto;
}

.m-ico__btn {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--deep);
  text-decoration: none;
  border: 1px solid transparent;
  transition: background .15s, border-color .15s;
}

.m-ico__btn:hover {
  background: var(--cream);
  border-color: var(--line);
}

.m-ico__dot {
  position: absolute;
  top: 6px;
  right: 6px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  display: grid;
  place-items: center;
}

/* hero (LIGHT) */
.m-hero {
  position: relative;
  background: var(--cream);
  overflow: hidden;
}

.m-hero__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.m-hero__track::-webkit-scrollbar {
  display: none;
}

.m-hero__slide {
  position: relative;
  flex: 0 0 100%;
  scroll-snap-align: start;
  overflow: hidden;
}

.m-hero__slide img {
  width: 100%;
  height: clamp(470px, 74vh, 560px);
  object-fit: cover;
  object-position: center top;
  display: block;
}

.m-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(251, 246, 236, 0) 24%, rgba(251, 246, 236, .82) 44%, #fbf6ec 54%, #fbf6ec 100%);
}

@media(min-width:761px) {
  .m-hero__slide img {
    object-position: right center;
  }

  .m-hero__scrim {
    background: linear-gradient(95deg, rgba(251, 246, 236, .97) 0%, rgba(251, 246, 236, .92) 34%, rgba(251, 246, 236, .35) 56%, rgba(251, 246, 236, 0) 72%);
  }
}

.m-hero__in {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
}

@media(min-width:761px) {
  .m-hero__in {
    align-items: center;
  }
}

.m-hero__c {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 22px 56px;
  width: 100%;
}

@media(min-width:761px) {
  .m-hero__c {
    padding: 0 22px;
  }
}

.m-hero__box {
  max-width: min(540px, calc(100vw - 44px));
  width: 100%;
}

.m-hero__eye {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--leaf-d);
  margin-bottom: 14px;
}

.m-hero__eye::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.m-hero h1 {
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: clamp(31px, 5.4vw, 55px);
  line-height: 1.05;
  margin: 0 0 16px;
  letter-spacing: -.02em;
  color: var(--deep);
  overflow-wrap: break-word;
}

.m-hero h1 em {
  color: var(--brand);
  font-style: italic;
}

.m-hero p {
  font-size: clamp(14px, 1.6vw, 17px);
  line-height: 1.65;
  color: #4a5640;
  margin: 0 0 22px;
  max-width: min(430px, calc(100vw - 44px));
}

.m-hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.m-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.m-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: #4a5640;
}

.m-hero__chip .ic {
  width: 16px;
  height: 16px;
  color: var(--leaf-d);
}

.m-hero__chip b {
  color: var(--deep);
}

.m-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .16s, box-shadow .16s, filter .16s;
}

.m-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 14px 30px rgba(31, 58, 23, .18);
}

.m-btn .ic {
  width: 18px;
  height: 18px;
}

.m-btn--brand {
  background: linear-gradient(135deg, #f2802f, #e0640f);
  color: #fff;
}

.m-btn--out {
  background: #fff;
  color: var(--deep);
  border: 1.5px solid var(--line);
}

.m-hero__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  display: flex;
  gap: 7px;
  justify-content: center;
  z-index: 3;
}

.m-hero__dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(31, 58, 23, .25);
}

.m-hero__dots span.is-on {
  background: var(--brand);
  width: 26px;
  border-radius: 999px;
}

/* section shells */
.m-sec {
  padding: clamp(32px, 3.8vw, 52px) 0;
}

.m-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 28px;
}

.m-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--leaf-d);
  margin: 0 0 10px;
}

.m-eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.m-h2 {
  font-family: Georgia, serif;
  font-size: clamp(25px, 3.4vw, 38px);
  font-weight: 700;
  color: var(--deep);
  margin: 0;
  letter-spacing: -.015em;
}

.m-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  color: var(--deep);
  text-decoration: none;
  border: 1.5px solid var(--line);
  padding: 11px 20px;
  border-radius: 999px;
  background: #fff;
  white-space: nowrap;
  transition: border-color .15s, background .15s, color .15s;
}

.m-link:hover {
  border-color: var(--leaf-soft);
  background: var(--leaf-bg);
  color: var(--leaf-d);
}

.m-link .ic {
  width: 16px;
  height: 16px;
}

/* category tiles */
.m-cats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.m-cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  text-decoration: none;
  color: var(--ink);
}

.m-cat__img {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 26px rgba(31, 58, 23, .07);
  margin-bottom: 8px;
}

.m-cat__img::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(31, 58, 23, .07);
  transition: box-shadow .2s;
}

.m-cat__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

.m-cat:hover .m-cat__img img {
  transform: scale(1.06);
}

.m-cat:hover .m-cat__img::after {
  box-shadow: inset 0 0 0 2px var(--leaf-soft);
}

.m-cat__n {
  font-weight: 700;
  font-size: 14px;
  color: var(--deep);
  line-height: 1.2;
}

.m-cat__c {
  font-size: 11.5px;
  color: var(--muted);
}

.m-cat--all .m-cat__img {
  background: linear-gradient(150deg, #eef6e2, #dff0cf);
  display: grid;
  place-items: center;
}

.m-cat--all .m-cat__more {
  text-align: center;
  padding: 14px;
}

.m-cat--all .m-cat__more b {
  display: block;
  font-family: Georgia, serif;
  font-size: 34px;
  color: var(--leaf-d);
  line-height: 1;
}

.m-cat--all .m-cat__more span {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--deep);
  margin-top: 6px;
}

/* product rails */
.m-rail {
  position: relative;
}

.m-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 78%;
  gap: 16px;
  overflow-x: auto;
  padding: 6px 2px 12px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.m-row::-webkit-scrollbar {
  display: none;
}

.m-pcard {
  scroll-snap-align: start;
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .18s, box-shadow .18s, border-color .18s;
}

.m-pcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px rgba(31, 58, 23, .13);
  border-color: #dcd2ba;
}

.m-pcard__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: linear-gradient(135deg, #f2802f, #e0640f);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 8px;
  letter-spacing: .02em;
  box-shadow: 0 4px 10px rgba(224, 100, 15, .32);
}

.m-pcard__fav {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--deep);
  cursor: pointer;
  transition: background .15s, color .15s, transform .15s;
}

.m-pcard__fav .ic {
  width: 17px;
  height: 17px;
}

.m-pcard__fav:hover {
  background: var(--leaf-d);
  color: #fff;
  transform: scale(1.06);
}

.m-pcard__img {
  position: relative;
  flex: 0 0 auto;
  aspect-ratio: 1/1;
  background: var(--cream);
  overflow: hidden;
  display: block;
}

.m-pcard__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.m-pcard:hover .m-pcard__img img {
  transform: scale(1.05);
}

.m-pcard__b {
  padding: 15px;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

.m-pcard__cat {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--leaf-d);
}

.m-pcard__b h4 {
  margin: 4px 0 0;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.34;
  font-weight: 600;
}

.m-pcard__rate {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 8px;
}

.m-pcard__rate svg {
  width: 14px;
  height: 14px;
  fill: #f0a52a;
  stroke: none;
}

.m-pcard__rate small {
  color: var(--muted);
  font-weight: 500;
}

.m-pcard__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 12px;
}

.m-pcard__price b {
  font-size: 18px;
  color: var(--deep);
}

.m-pcard__mrp {
  font-size: 13px;
  color: var(--muted);
  text-decoration: line-through;
}

.m-pcard__save {
  font-size: 11px;
  font-weight: 800;
  color: var(--save);
  background: #e7f6ee;
  padding: 2px 7px;
  border-radius: 6px;
}

.m-pcard__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--brand);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 14px;
  border-radius: 11px;
  margin-top: auto;
  text-decoration: none;
  transition: filter .15s, transform .15s;
}

.m-pcard__cta .ic {
  width: 17px;
  height: 17px;
}

.m-pcard__cta:hover {
  filter: brightness(1.07);
}

/* promo banner (BannerCollection) */
.m-promo {
  display: block;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--sx-shadow, 0 18px 44px rgba(31, 58, 23, .1));
  border: 1px solid var(--line);
}

.m-promo img {
  width: 100%;
  display: block;
}

/* footer */
.m-foot {
  background: var(--deep);
  color: #b8c6ac;
}

.m-news {
  background: linear-gradient(100deg, #16290f, #24441a);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.m-news__in {
  max-width: 1200px;
  margin: 0 auto;
  padding: 34px 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.m-news__t {
  color: #fff;
  font-family: Georgia, serif;
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 700;
  margin: 0 0 4px;
}

.m-news__t em {
  color: var(--leaf-soft);
  font-style: italic;
}

.m-news__p {
  margin: 0;
  color: #a7b89a;
  font-size: 13px;
}

.m-news__form {
  display: flex;
  gap: 10px;
  flex: 1 1 320px;
  max-width: 440px;
}

.m-news__form input {
  flex: 1;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .06);
  border-radius: 999px;
  padding: 13px 18px;
  color: #fff;
  font-size: 14px;
}

.m-news__form input::placeholder {
  color: #a7b89a;
}

.m-foot__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 44px 18px;
}

.m-foot__cols h4 {
  color: #fff;
  font-size: 14px;
  margin: 0 0 14px;
}

.m-foot__cols a,
.m-foot__cols p {
  display: block;
  color: #a7b39b;
  text-decoration: none;
  font-size: 13px;
  line-height: 2;
  margin: 0;
}

.m-foot__cols a:hover {
  color: var(--leaf-soft);
}

.m-foot__brand {
  grid-column: 1 / -1;
}

.m-foot__wm {
  display: inline-block;
  background: #fff;
  border-radius: 12px;
  padding: 10px 14px;
  margin-bottom: 14px;
}

.m-foot__wm img {
  height: 48px;
  width: auto;
  display: block;
}

.m-foot__brand p {
  font-size: 13px;
  line-height: 1.7;
  max-width: 340px;
  margin-bottom: 16px;
}

.m-soc {
  display: flex;
  gap: 10px;
}

.m-soc a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  color: #cfdcc3;
}

.m-soc a:hover {
  background: var(--leaf);
  color: #fff;
  border-color: var(--leaf);
}

.m-soc .ic {
  width: 18px;
  height: 18px;
}

.m-foot__bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.m-foot__bottom p {
  margin: 0;
  font-size: 12px;
  color: #7d8a71;
}

.m-pay {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.m-pay span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  color: #cfdcc3;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 6px;
  padding: 5px 9px;
}

.m-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: grid;
  place-items: center;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(37, 161, 85, .5);
  transition: transform .15s;
}

.m-wa:hover {
  transform: scale(1.07);
}

.m-wa .ic {
  width: 30px;
  height: 30px;
  fill: currentColor;
  stroke: none;
}

@media(min-width:520px) {
  .m-cats {
    grid-template-columns: repeat(3, 1fr);
  }

  .m-row {
    grid-auto-columns: 300px;
  }
}

@media(min-width:600px) {
  .m-foot__cols {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .m-foot__brand {
    grid-column: auto;
  }
}

@media(min-width:768px) {
  .m-cats {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media(min-width:960px) {
  .m-cats {
    grid-template-columns: repeat(7, 1fr);
  }

  .m-row {
    grid-auto-columns: 1fr;
    overflow: visible;
  }
}

@media(min-width:980px) {
  .nav-link {
    display: flex;
  }
}


/* Existing theme.css */
/* BtoCmart — generated CSS (uploaded to site_settings.sx_css_location).
   Authored per-segment, concatenated into one file. Do NOT @import or minify
   (the BEGIN/END markers are comments and must survive). Every selector is
   namespaced under .sx so nothing leaks into the theme header/footer/cards.
   Brand color comes from the theme var --secondary-main (BtoCmart orange);
   the leaf-green / cream accents are namespaced --sx-* tokens. */

/* BEGIN shoopy-gen:base */
.sx {
  --sx-brand: var(--secondary-main, #e0640f);
  --sx-brand-d: #c4540a;
  --sx-leaf: #4e9e23;
  --sx-leaf-ink: #3c7d18;
  --sx-leaf-soft: #8bc34a;
  --sx-leaf-bg: #e7f3da;
  --sx-deep: #1f3a17;
  --sx-cream: #fbf6ec;
  --sx-cream-2: #f3ead6;
  --sx-ink: #26331e;
  --sx-muted: #6d7763;
  --sx-line: #e9e1cf;
  --sx-save: #2f8f43;
  --sx-radius: 20px;
  --sx-shadow: 0 18px 44px rgba(31, 58, 23, .10);
  --sx-max: 1200px;
  font-family: inherit;
  color: var(--sx-ink);
}

.sx,
.sx * {
  box-sizing: border-box;
}

.sx-wrap {
  max-width: var(--sx-max);
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
}

.sx-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sx-leaf-ink);
  margin: 0 0 12px;
}

.sx-eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.sx a:focus-visible,
.sx button:focus-visible,
.sx input:focus-visible {
  outline: 3px solid var(--sx-leaf);
  outline-offset: 2px;
  border-radius: 6px;
}

@media (prefers-reduced-motion: reduce) {

  .sx,
  .sx * {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

.sx-h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 3.4vw, 38px);
  line-height: 1.12;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--sx-deep);
  letter-spacing: -.015em;
}

.sx-h2 em {
  color: var(--sx-brand);
  font-style: italic;
}

.sx-sub {
  color: var(--sx-muted);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
  max-width: 640px;
}

.sx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--sx-brand);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
}

.sx-btn:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(224, 100, 15, .28);
}

.sx-btn--brand {
  background: linear-gradient(135deg, #f2802f, #e0640f);
  color: #fff;
}

.sx-btn--ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .5);
}

.sx-btn svg {
  width: 18px;
  height: 18px;
}

.sx-section {
  padding: clamp(32px, 3.8vw, 52px) 0;
}

/* END shoopy-gen:base */

/* BEGIN shoopy-gen:usp-1 */
.sx-usp.sx-section {
  padding: 0;
}

.sx-usp__band {
  background: #fff;
  border-top: 1px solid var(--sx-line);
  border-bottom: 1px solid var(--sx-line);
}

.sx-usp__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.sx-usp__cell {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 18px 16px;
  justify-content: center;
}

.sx-usp__cell+.sx-usp__cell {
  box-shadow: inset 1px 0 0 var(--sx-line);
}

.sx-usp__ic {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--sx-leaf-bg);
  color: var(--sx-leaf-ink);
}

.sx-usp__ic svg {
  width: 22px;
  height: 22px;
}

.sx-usp__t {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--sx-deep);
  line-height: 1.25;
}

.sx-usp__d {
  display: block;
  font-size: 12px;
  color: var(--sx-muted);
  margin-top: 2px;
}

@media (min-width: 760px) {
  .sx-usp__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .sx-usp__cell {
    justify-content: flex-start;
    padding: 22px 22px;
  }
}

/* END shoopy-gen:usp-1 */

/* BEGIN shoopy-gen:promise-1 */
.sx-promise {
  background: linear-gradient(115deg, #1c3514 0%, var(--sx-deep) 45%, #2c5320 100%);
  position: relative;
  overflow: hidden;
}

.sx-promise::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(139, 195, 74, .16);
}

.sx-promise::after {
  content: "";
  position: absolute;
  left: -90px;
  bottom: -120px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(224, 100, 15, .12);
}

.sx-promise__in {
  position: relative;
}

.sx-promise__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 36px;
}

.sx-promise__head .sx-eyebrow {
  color: var(--sx-leaf-soft);
  justify-content: center;
}

.sx-promise__head h2 {
  font-family: Georgia, serif;
  font-size: clamp(26px, 3.6vw, 40px);
  line-height: 1.12;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: -.015em;
}

.sx-promise__head h2 em {
  color: var(--sx-leaf-soft);
  font-style: italic;
}

.sx-promise__head p {
  color: #cfe0c2;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.sx-promise__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.sx-promise__card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  padding: 26px 24px;
}

.sx-promise__ic {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--sx-leaf-bg);
  color: var(--sx-leaf-ink);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.sx-promise__ic svg {
  width: 26px;
  height: 26px;
}

.sx-promise__card h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
}

.sx-promise__card p {
  margin: 0;
  color: #c7d8ba;
  font-size: 13.5px;
  line-height: 1.65;
}

@media (min-width: 760px) {
  .sx-promise__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* END shoopy-gen:promise-1 */

/* BEGIN shoopy-gen:promo-1 */
.sx-promo__card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--sx-shadow);
  border: 1px solid var(--sx-line);
  background: var(--sx-deep);
}

.sx-promo__media {
  min-height: 240px;
}

.sx-promo__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sx-promo__body {
  position: relative;
  padding: clamp(28px, 4vw, 52px);
  color: #fff;
  background: linear-gradient(135deg, #1c3514 0%, var(--sx-deep) 55%, #2c5320 100%);
}

.sx-promo__body::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(139, 195, 74, .16);
  pointer-events: none;
}

.sx-promo__body .sx-eyebrow {
  color: var(--sx-leaf-soft);
  position: relative;
}

.sx-promo__body h2 {
  font-family: Georgia, serif;
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.08;
  margin: 0 0 14px;
  color: #fff;
  letter-spacing: -.015em;
  position: relative;
}

.sx-promo__body h2 em {
  color: var(--sx-leaf-soft);
  font-style: italic;
}

.sx-promo__body p {
  font-size: 15px;
  line-height: 1.7;
  color: #d4e3c7;
  margin: 0 0 20px;
  max-width: 440px;
  position: relative;
}

.sx-promo__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 26px;
  position: relative;
}

.sx-promo__chips span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 700;
  color: #eaf4de;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  padding: 8px 14px;
}

.sx-promo__chips span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sx-leaf-soft);
}

.sx-promo__actions {
  position: relative;
}

@media (min-width: 820px) {
  .sx-promo__card {
    grid-template-columns: 1fr 1.05fr;
  }

  .sx-promo__media {
    min-height: 100%;
  }
}

/* END shoopy-gen:promo-1 */

/* BEGIN shoopy-gen:reviews-1 */
.sx-reviews {
  background: radial-gradient(120% 90% at 50% -10%, #ffffff 0%, var(--sx-cream) 60%);
}

.sx-reviews__head {
  text-align: center;
  margin-bottom: 34px;
}

.sx-reviews__head .sx-eyebrow {
  justify-content: center;
}

.sx-reviews__head .sx-sub {
  margin: 0 auto;
}

.sx-reviews__grid {
  display: grid;
  gap: 18px;
}

.sx-review {
  position: relative;
  background: #fff;
  border: 1px solid var(--sx-line);
  border-radius: 18px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 30px rgba(31, 58, 23, .06);
}

.sx-review__q {
  position: absolute;
  top: 12px;
  right: 22px;
  font-family: Georgia, serif;
  font-size: 64px;
  line-height: 1;
  color: var(--sx-cream-2);
}

.sx-review__stars {
  display: inline-flex;
  gap: 2px;
  color: #f0a52a;
  margin-bottom: 12px;
}

.sx-review__stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.sx-review__text {
  font-size: 14px;
  line-height: 1.7;
  color: #3b4633;
  margin: 0 0 18px;
  position: relative;
  z-index: 1;
}

.sx-review__who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.sx-review__av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sx-leaf), #2f6d12);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 15px;
  flex: 0 0 auto;
}

.sx-review__who b {
  display: block;
  font-size: 14px;
  color: var(--sx-deep);
}

.sx-review__who small {
  color: var(--sx-muted);
  font-size: 12px;
}

@media (min-width: 820px) {
  .sx-reviews__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* END shoopy-gen:reviews-1 */
.notice {
  padding-top: 5px !important;
  padding-left: 0px !important;
  padding-right: 0px !important;
  padding-bottom: 5px !important;
  background-color: #1F3A17 !important;
}

.search-box {
  background-color: #FBF6EC;
  border-radius: 50px !important;
}

.category-header {
  font-family: Georgia, serif;
  font-size: clamp(25px, 3.4vw, 38px);
  font-weight: 700;
  color: var(--deep);
  margin: 0;
  letter-spacing: -.015em;
}

.page-container {
  text-allign: left;
}

.heading-title {
  font-family: Georgia, serif;
  font-size: clamp(25px, 3.4vw, 38px);
  font-weight: 700;
  color: var(--deep);
  margin: 0;
  letter-spacing: -.015em;
}


/* =========================================================
   BTOCMART — FOOTER ORIGINAL ICONS + MOBILE REVIEWS SCROLL
   Added by ChatGPT
   1) Shows proper original social icons in footer circles
   2) Keeps icon size controlled on mobile/desktop
   3) Makes mobile reviews/testimonials horizontally scrollable
   ========================================================= */

/* Footer social icon base */
.m-soc {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
}

.m-soc a {
  position: relative !important;
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  min-height: 38px !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(255, 255, 255, .06) !important;
  border: 1px solid rgba(255, 255, 255, .12) !important;
  color: #cfdcc3 !important;
  overflow: hidden !important;
  font-size: 0 !important;
  line-height: 1 !important;
}

.m-soc a:hover {
  background: var(--leaf, #4e9e23) !important;
  border-color: var(--leaf, #4e9e23) !important;
  color: #ffffff !important;
}

/* Hide broken/oversized injected svg/img icons and draw clean icons via CSS */
.m-soc a > svg,
.m-soc a > img,
.m-soc a .ic {
  width: 18px !important;
  height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  object-fit: contain !important;
}

/* Default icon */
.m-soc a::before {
  content: "" !important;
  width: 18px !important;
  height: 18px !important;
  display: block !important;
  background: currentColor !important;
  -webkit-mask: var(--m-soc-icon, url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3.9 12c0-1.9.8-3.7 2.1-5 2.8-2.8 7.3-2.8 10.1 0 2.8 2.8 2.8 7.3 0 10.1-2.2 2.2-5.5 2.7-8.2 1.3L4 19.5l1.1-3.8C4.3 14.6 3.9 13.3 3.9 12Z'/%3E%3C/svg%3E")) center / contain no-repeat !important;
          mask: var(--m-soc-icon, url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3.9 12c0-1.9.8-3.7 2.1-5 2.8-2.8 7.3-2.8 10.1 0 2.8 2.8 2.8 7.3 0 10.1-2.2 2.2-5.5 2.7-8.2 1.3L4 19.5l1.1-3.8C4.3 14.6 3.9 13.3 3.9 12Z'/%3E%3C/svg%3E")) center / contain no-repeat !important;
}

/* WhatsApp */
.m-soc a[href*="wa.me"]::before,
.m-soc a[href*="whatsapp"]::before,
.m-soc a:nth-child(1)::before {
  --m-soc-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12.04 2C6.54 2 2.07 6.45 2.07 11.91c0 1.75.46 3.45 1.34 4.95L2 22l5.27-1.38a10.02 10.02 0 0 0 4.77 1.21h.01c5.5 0 9.97-4.45 9.97-9.92S17.55 2 12.04 2Zm5.82 14.16c-.25.7-1.45 1.34-2.03 1.43-.54.08-1.22.12-1.97-.12-.45-.14-1.04-.33-1.79-.65-3.15-1.36-5.2-4.5-5.36-4.71-.16-.2-1.28-1.7-1.28-3.25s.81-2.3 1.1-2.62c.28-.31.62-.39.83-.39h.6c.19 0 .45-.07.7.54.25.6.85 2.08.92 2.23.08.16.13.34.03.54-.1.2-.15.32-.3.49-.15.17-.32.38-.45.51-.15.15-.31.31-.13.61.18.3.79 1.31 1.7 2.12 1.17 1.04 2.16 1.36 2.46 1.51.31.15.49.13.67-.08.18-.2.77-.9.98-1.21.2-.31.41-.26.7-.16.28.1 1.8.85 2.11 1 .31.15.51.23.59.36.08.13.08.75-.17 1.45Z'/%3E%3C/svg%3E");
}

/* Instagram */
.m-soc a[href*="instagram"]::before,
.m-soc a:nth-child(2)::before {
  --m-soc-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7.8 2h8.4A5.8 5.8 0 0 1 22 7.8v8.4a5.8 5.8 0 0 1-5.8 5.8H7.8A5.8 5.8 0 0 1 2 16.2V7.8A5.8 5.8 0 0 1 7.8 2Zm0 2A3.8 3.8 0 0 0 4 7.8v8.4A3.8 3.8 0 0 0 7.8 20h8.4a3.8 3.8 0 0 0 3.8-3.8V7.8A3.8 3.8 0 0 0 16.2 4H7.8Zm8.7 2.4a1.1 1.1 0 1 1 0 2.2 1.1 1.1 0 0 1 0-2.2ZM12 7.2A4.8 4.8 0 1 1 12 16.8 4.8 4.8 0 0 1 12 7.2Zm0 2A2.8 2.8 0 1 0 12 14.8 2.8 2.8 0 0 0 12 9.2Z'/%3E%3C/svg%3E");
}

/* Facebook */
.m-soc a[href*="facebook"]::before,
.m-soc a[href*="fb.com"]::before,
.m-soc a:nth-child(3)::before {
  --m-soc-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14 8.5V6.9c0-.75.18-1.15 1.2-1.15h1.9V2.2A24.6 24.6 0 0 0 14.3 2C11.5 2 9.6 3.7 9.6 6.8v1.7H6.5v3.9h3.1V22H14v-9.6h3l.5-3.9H14Z'/%3E%3C/svg%3E");
}

/* YouTube fallback */
.m-soc a[href*="youtube"]::before,
.m-soc a:nth-child(4)::before {
  --m-soc-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21.6 7.2s-.2-1.5-.8-2.2c-.8-.8-1.7-.8-2.1-.9C15.8 3.9 12 3.9 12 3.9s-3.8 0-6.7.2c-.4.1-1.3.1-2.1.9-.6.7-.8 2.2-.8 2.2S2.2 9 2.2 10.8v1.7c0 1.8.2 3.6.2 3.6s.2 1.5.8 2.2c.8.8 1.9.8 2.4.9 1.7.2 6.4.2 6.4.2s3.8 0 6.7-.2c.4-.1 1.3-.1 2.1-.9.6-.7.8-2.2.8-2.2s.2-1.8.2-3.6v-1.7c0-1.8-.2-3.6-.2-3.6ZM10.1 14.5V8.7l5.4 2.9-5.4 2.9Z'/%3E%3C/svg%3E");
}

/* Keep any footer/contact SVG icons original size, never oversized */
.m-foot svg,
.m-foot img {
  max-width: 100% !important;
}

.m-foot .ic,
.m-foot__cols svg,
.m-foot__cols img {
  width: 18px !important;
  height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  object-fit: contain !important;
}

/* Mobile footer icon polish */
@media (max-width: 767px) {
  .m-foot__cols {
    grid-template-columns: 1fr 1fr !important;
    gap: 24px 16px !important;
    padding: 34px 18px !important;
  }

  .m-foot__brand {
    grid-column: 1 / -1 !important;
  }

  .m-soc {
    gap: 9px !important;
  }

  .m-soc a {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    min-height: 36px !important;
  }

  .m-soc a::before {
    width: 17px !important;
    height: 17px !important;
  }

  .m-foot__bottom {
    align-items: flex-start !important;
    justify-content: flex-start !important;
  }
}

/* Mobile reviews section should be horizontal scroll */
@media (max-width: 767px) {
  .sx-reviews__grid {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 14px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding: 4px 18px 16px !important;
    margin-left: -18px !important;
    margin-right: -18px !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }

  .sx-reviews__grid::-webkit-scrollbar {
    display: none !important;
  }

  .sx-review {
    flex: 0 0 84% !important;
    min-width: 84% !important;
    max-width: 84% !important;
    scroll-snap-align: start !important;
    border-radius: 18px !important;
  }

  /* Extra support if any testimonial block uses sx-tm classes */
  .sx-tm__grid {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 14px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding: 4px 18px 16px !important;
    margin-left: -18px !important;
    margin-right: -18px !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }

  .sx-tm__grid::-webkit-scrollbar {
    display: none !important;
  }

  .sx-tm__card {
    flex: 0 0 84% !important;
    min-width: 84% !important;
    max-width: 84% !important;
    scroll-snap-align: start !important;
  }
}

@media (max-width: 420px) {
  .sx-review,
  .sx-tm__card {
    flex-basis: 88% !important;
    min-width: 88% !important;
    max-width: 88% !important;
  }
}

