:root {
  --secondary-main: #1aa64b; /* Thanvi fresh green — brand + primary CTA */
  --secondary-dark: #0e7a37;
  --secondary-soft: #eaf7ec;
  --offer-amber: #ffb400; /* offers / savings */
  --qc-violet: #6c4ce0; /* % off badges */
  --ink: #1c1c1c;
  --ink-2: #3a3a3a;
  --muted: #7a7a7a;
  --muted-2: #9b9b9b;
  --line: #efefef;
  --line-2: #e3e3e3;
  --bg: #ffffff;
  --bg-2: #f7f8f7;
  --bg-3: #f0f4f1;
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.05);
  --shadow-md: 0 6px 18px rgba(16, 24, 40, 0.08);
  --shadow-lg: 0 14px 40px rgba(16, 24, 40, 0.14);
  --r-xs: 6px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-pill: 999px;
  --container: 1240px;
  --font-head: "Nunito Sans", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg-2);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
ul {
  list-style: none;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  line-height: 1.15;
}
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
}
.icon {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* 1. NOTICE BAR */
.announce {
  background: #101410;
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.2px;
}
.announce .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  height: 34px;
  overflow: hidden;
  white-space: nowrap;
}
.announce .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--offer-amber);
}
.announce b {
  color: var(--offer-amber);
}
.announce .a-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.announce svg {
  width: 14px;
  height: 14px;
  stroke: var(--offer-amber);
}
@media (max-width: 640px) {
  .announce .a-item:nth-child(n + 3) {
    display: none;
  }
}
.announce {
  overflow: hidden;
  background: #101410;
  color: #fff;
  height: 34px;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: marquee 18s linear infinite;
  white-space: nowrap;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.brand .mark {
  width: 80px;
  height: 60px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(26, 166, 75, 0.32);
}
.brand .name {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -0.5px;
  color: var(--ink);
}
.brand .name span {
  color: var(--secondary-main);
}
.location {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 6px 12px 6px 8px;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.15s;
  max-width: 240px;
}
.location:hover {
  background: var(--bg-3);
}
.location .pin {
  color: var(--secondary-main);
  margin-top: 2px;
}
.location .pin svg {
  width: 20px;
  height: 20px;
}
.location .l-text {
  min-width: 0;
}
.location .l-top {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.badge-min {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: var(--secondary-soft);
  color: var(--secondary-dark);
  font-size: 10px;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: var(--r-pill);
  text-transform: none;
  letter-spacing: 0;
}
.badge-min .b {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--secondary-main);
}
.location .l-bottom {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.location .l-bottom svg {
  width: 16px;
  height: 16px;
  color: var(--muted);
  flex: none;
}
.search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  padding: 0 14px;
  height: 44px;
  transition: 0.15s;
}
.search:focus-within {
  border-color: var(--secondary-main);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26, 166, 75, 0.1);
}
.search svg {
  width: 19px;
  height: 19px;
  color: var(--muted);
  flex: none;
}
.search input {
  flex: 1;
  border: none;
  outline: none;
  background: none;
  font-size: 14.5px;
  color: var(--ink);
  font-family: inherit;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}
.iconbtn {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 6px 10px;
  border-radius: var(--r-sm);
  color: var(--ink-2);
  transition: 0.15s;
  font-size: 11px;
  font-weight: 600;
}
.iconbtn:hover {
  background: var(--bg-3);
  color: var(--secondary-main);
}
.iconbtn .cart-badge {
  position: absolute;
  top: 0;
  right: 4px;
  background: var(--secondary-main);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  min-width: 17px;
  height: 17px;
  border-radius: var(--r-pill);
  display: grid;
  place-items: center;
  padding: 0 4px;
  border: 2px solid #fff;
}

/* 3. HERO */
.hero {
  padding: 18px 0 6px;
}
.hero-track {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.slides {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.slide {
  min-width: 100%;
  position: relative;
}
.slide-inner {
  position: relative;
  min-height: 320px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  overflow: hidden;
}
.slide.s1 .slide-inner {
  background: linear-gradient(120deg, #0e7a37 0%, #1aa64b 60%, #34c95f 100%);
}
.slide.s2 .slide-inner {
  background: linear-gradient(120deg, #4b1fd6 0%, #6c4ce0 60%, #9d6bff 100%);
}
.slide.s3 .slide-inner {
  background: linear-gradient(120deg, #e08a00 0%, #ffae00 60%, #ffc400 100%);
}
.slide-copy {
  padding: 38px 42px;
  color: #fff;
  z-index: 2;
}
.slide.s3 .slide-copy {
  color: #3a2400;
}
.slide-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.22);
  padding: 5px 12px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 16px;
}
.slide.s3 .slide-eyebrow {
  background: rgba(58, 36, 0, 0.14);
}
.slide-eyebrow svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}
.slide h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 10px;
}
.slide h1 .big {
  display: block;
}
.slide p {
  font-size: 15.5px;
  font-weight: 500;
  opacity: 0.95;
  max-width: 380px;
  margin-bottom: 22px;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  color: var(--secondary-dark);
  font-weight: 800;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-md);
  transition: 0.15s;
}
.slide.s2 .hero-cta {
  color: #4b1fd6;
}
.slide.s3 .hero-cta {
  background: #3a2400;
  color: var(--offer-amber);
}
.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.hero-cta svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}
.slide-media {
  position: relative;
  height: 100%;
  min-height: 320px;
}
.slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}
.price-pop {
  position: absolute;
  bottom: 22px;
  left: -28px;
  background: #fff;
  color: var(--ink);
  border-radius: var(--r-md);
  padding: 10px 16px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-pop .pp-ico {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--secondary-soft);
  display: grid;
  place-items: center;
  color: var(--secondary-main);
}
.price-pop .pp-ico svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}
.price-pop .pp-t {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
}
.price-pop .pp-b {
  font-size: 15px;
  font-weight: 900;
}
.dots {
  position: absolute;
  bottom: 14px;
  left: 42px;
  display: flex;
  gap: 8px;
  z-index: 4;
}
.dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transition: 0.2s;
}
.dots button.active {
  background: #fff;
  width: 26px;
  border-radius: var(--r-pill);
}

/* SECTION HEADER */
.section {
  padding: 16px 0 6px;
}
.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 14px;
}
.sec-head h2 {
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 900;
  letter-spacing: -0.4px;
}
.sec-head h2 .sub {
  display: block;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
  margin-top: 3px;
}
.see-all {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--secondary-main);
  font-weight: 800;
  font-size: 13.5px;
  white-space: nowrap;
}
.see-all svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* 4. CATEGORY GRID */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.cat-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 12px 8px 10px;
  text-align: center;
  transition: 0.15s;
}
.cat-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.cat-thumb {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: var(--r-sm);
  overflow: hidden;
  margin-bottom: 8px;
}
.cat-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cat-tile .c-name {
  font-size: 12.5px;
  font-weight: 800;
  color: var(--ink-2);
  line-height: 1.25;
}
.cat-tile .c-count {
  font-size: 10.5px;
  color: var(--muted-2);
  font-weight: 600;
  margin-top: 2px;
}

/* PRODUCT CARD */
.pcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 10px;
  position: relative;
  transition: 0.15s;
  display: flex;
  flex-direction: column;
}
.pcard:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--line-2);
}
.pcard-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: var(--r-sm);
  overflow: hidden;
  margin-bottom: 9px;
}
.pcard-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tag-min {
  position: absolute;
  top: 7px;
  left: 7px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font-size: 9.5px;
  font-weight: 800;
  padding: 3px 6px;
  border-radius: var(--r-xs);
  box-shadow: var(--shadow-sm);
  text-transform: uppercase;
  letter-spacing: 0.2px;
}
.tag-min svg {
  width: 10px;
  height: 10px;
  color: var(--secondary-main);
  stroke-width: 2.4;
  fill: none;
  stroke: currentColor;
}
.tag-off {
  position: absolute;
  top: 7px;
  right: 7px;
  background: var(--qc-violet);
  color: #fff;
  font-size: 9.5px;
  font-weight: 800;
  padding: 3px 6px;
  border-radius: var(--r-xs);
}
.pcard .p-qty {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 3px;
}
.pcard .p-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 34px;
}
.pcard-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
}
.p-price {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.p-price .now {
  font-size: 14.5px;
  font-weight: 900;
  color: var(--ink);
}
.p-price .was {
  font-size: 11.5px;
  color: var(--muted-2);
  text-decoration: line-through;
}
.btn-add {
  border: 1.5px solid var(--secondary-main);
  color: var(--secondary-main);
  background: var(--secondary-soft);
  font-weight: 800;
  font-size: 13px;
  padding: 7px 16px;
  border-radius: var(--r-sm);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  transition: 0.12s;
  min-width: 64px;
}
.btn-add:hover {
  background: var(--secondary-main);
  color: #fff;
}
.stepper {
  display: inline-flex;
  align-items: center;
  background: var(--secondary-main);
  border-radius: var(--r-sm);
  color: #fff;
  font-weight: 800;
  min-width: 64px;
  justify-content: space-between;
}
.stepper button {
  color: #fff;
  width: 26px;
  height: 33px;
  font-size: 17px;
  display: grid;
  place-items: center;
}
.stepper .q {
  font-size: 13px;
  min-width: 16px;
  text-align: center;
}

/* SWIPER ROW */
.swiper {
  position: relative;
}
.swiper-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.swiper-track::-webkit-scrollbar {
  display: none;
}
.swiper-track .pcard {
  min-width: 168px;
  max-width: 168px;
  scroll-snap-align: start;
}
.swipe-btn {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  z-index: 5;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-md);
  display: grid;
  place-items: center;
  color: var(--ink);
  border: 1px solid var(--line);
}
.swipe-btn:hover {
  color: var(--secondary-main);
}
.swipe-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}
.swipe-prev {
  left: -8px;
}
.swipe-next {
  right: -8px;
}
@media (max-width: 760px) {
  .swipe-btn {
    display: none;
  }
}

/* PROMO BANNERS */
.banner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.promo {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 168px;
  display: flex;
  align-items: center;
  padding: 24px;
  color: #fff;
}
.promo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.promo .p-content {
  position: relative;
  z-index: 2;
}
.promo .p-kicker {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  opacity: 0.92;
  margin-bottom: 6px;
}
.promo h3 {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.4px;
  margin-bottom: 4px;
}
.promo p {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.92;
  margin-bottom: 14px;
}
.promo .p-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  font-size: 12.5px;
  padding: 8px 16px;
  border-radius: var(--r-pill);
}
.promo.p3 .p-btn {
  color: #7a3a00;
}
.promo .p-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* MULTI-ROW GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

/* FOOTER */
.footer {
  background: #101410;
  color: #cdd2cd;
  margin-top: 36px;
  padding: 44px 0 0;
}
.foot-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.foot-brand .brand .name {
  color: #fff;
}
.foot-brand p {
  font-size: 13px;
  color: #9aa39a;
  margin: 14px 0 18px;
  max-width: 320px;
  line-height: 1.6;
}
.news {
  display: flex;
  gap: 8px;
  max-width: 340px;
}
.news input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r-sm);
  padding: 11px 14px;
  color: #fff;
  font-size: 13.5px;
  outline: none;
  font-family: inherit;
}
.news input::placeholder {
  color: #7e887e;
}
.news button {
  background: var(--secondary-main);
  color: #fff;
  font-weight: 800;
  font-size: 13.5px;
  padding: 0 18px;
  border-radius: var(--r-sm);
  white-space: nowrap;
}
.news button:hover {
  background: var(--secondary-dark);
}
.foot-col h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.foot-col a {
  display: block;
  font-size: 13.5px;
  color: #9aa39a;
  padding: 5px 0;
  transition: 0.12s;
}
.foot-col a:hover {
  color: var(--offer-amber);
  padding-left: 3px;
}
.socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.socials a {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.07);
  display: grid;
  place-items: center;
  color: #cdd2cd;
  transition: 0.15s;
}
.socials a:hover {
  background: var(--secondary-main);
  color: #fff;
}
.socials svg {
  width: 18px;
  height: 18px;
}
.foot-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0 26px;
  flex-wrap: wrap;
}
.foot-bottom .copy {
  font-size: 12.5px;
  color: #828c82;
}
.pays {
  display: flex;
  align-items: center;
  gap: 8px;
}
.brand img {
  width: 80px;
  height: 60px;
}
.pays .pay {
  height: 26px;
  min-width: 40px;
  padding: 0 6px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.92);
  display: grid;
  place-items: center;
  font-size: 9px;
  font-weight: 900;
  color: #222;
  letter-spacing: 0.3px;
}
/* ===========================
   Tablet
=========================== */

@media (max-width: 991px) {
  .foot-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }

  .foot-brand {
    grid-column: 1/-1;
  }

  .foot-brand p {
    max-width: 100%;
  }

  .news {
    max-width: 100%;
  }

  .foot-bottom {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }

  .pays {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ===========================
   Mobile
=========================== */

@media (max-width: 767px) {
  .footer {
    margin-top: 24px;
    padding: 32px 0 0;
  }

  .foot-top {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 24px;
  }

  .foot-brand {
    text-align: left;
  }

  .foot-brand .brand {
    gap: 20px;
    display: flex;
    align-items: center;
  }

  .foot-brand p {
    max-width: 100%;
    margin: 16px auto 20px;
    font-size: 14px;
    line-height: 1.7;
  }

  .news {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    gap: 12px;
  }

  .news input,
  .news button {
    width: 100%;
    height: 48px;
  }

  .socials {
    justify-content: left;
    margin-top: 20px;
  }

  .foot-col {
    text-align: left;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .foot-col h4 {
    margin-bottom: 12px;
    font-size: 14px;
  }

  .foot-col a {
    font-size: 14px;
    padding: 8px 0;
  }

  .foot-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 20px 0 24px;
  }

  .copy {
    line-height: 1.7;
    font-size: 13px;
  }

  .pays {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .pay {
    min-width: 56px;
    height: 30px;
    font-size: 10px;
  }
}

/* ===========================
   Small Mobile
=========================== */

@media (max-width: 480px) {
  .footer {
    padding-top: 28px;
  }

  .foot-top {
    gap: 24px;
  }

  .foot-brand p {
    font-size: 13px;
  }

  .news input {
    font-size: 14px;
  }

  .news button {
    font-size: 14px;
    font-weight: 700;
  }

  .socials a {
    width: 40px;
    height: 40px;
  }

  .socials svg {
    width: 18px;
    height: 18px;
  }

  .foot-col h4 {
    font-size: 13px;
  }

  .foot-col a {
    font-size: 13px;
  }
}

/* MOBILE BOTTOM NAV */
.bottomnav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 70;
  background: #fff;
  border-top: 1px solid var(--line);
  display: none;
  grid-template-columns: repeat(5, 1fr);
  box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.06);
  padding-bottom: env(safe-area-inset-bottom);
}
.bn-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 0 9px;
  color: var(--muted);
  font-size: 10.5px;
  font-weight: 700;
  position: relative;
}
.bn-item.active {
  color: var(--secondary-main);
}
.bn-item svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}
.bn-item .bn-badge {
  position: absolute;
  top: 3px;
  right: calc(50% - 18px);
  background: var(--secondary-main);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  min-width: 15px;
  height: 15px;
  border-radius: var(--r-pill);
  display: grid;
  place-items: center;
  border: 2px solid #fff;
}

/* FLOATING CART */
.float-cart {
  position: fixed;
  z-index: 65;
  right: 20px;
  bottom: 24px;
  background: var(--secondary-main);
  color: #fff;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  box-shadow: 0 10px 28px rgba(26, 166, 75, 0.4);
  transition: 0.2s;
}
.float-cart:hover {
  transform: translateY(-3px);
  background: var(--secondary-dark);
}
.float-cart .fc-ico {
  position: relative;
  display: grid;
  place-items: center;
}
.float-cart .fc-ico svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}
.float-cart .fc-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--offer-amber);
  color: #3a2400;
  font-size: 10px;
  font-weight: 900;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid var(--secondary-main);
}
.float-cart .fc-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.float-cart .fc-items {
  font-size: 11px;
  opacity: 0.9;
  font-weight: 600;
}
.float-cart .fc-total {
  font-size: 15px;
  font-weight: 900;
}
.float-cart .fc-arrow svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .cat-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 960px) {
  .header-main {
    grid-template-columns: auto 1fr auto;
    row-gap: 10px;
    height: auto;
  }
  .location {
    grid-row: 2;
    grid-column: 1 / 2;
  }
  .search {
    grid-row: 2;
    grid-column: 2 / 4;
  }
  .banner-grid {
    grid-template-columns: 1fr;
  }
  .slide-inner {
    grid-template-columns: 1fr;
  }
  .slide-media {
    display: none;
  }
  .foot-top {
    grid-template-columns: 1fr 1fr;
  }
  .cat-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 720px) {
  body {
    padding-bottom: 62px;
  }
  .bottomnav {
    display: grid;
  }
  .header .iconbtn.acc,
  .header .iconbtn.cart {
    display: none;
  }
  .float-cart {
    bottom: 74px;
    right: 14px;
    left: 14px;
    justify-content: center;
  }
  .cat-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .slide-copy {
    padding: 28px 22px;
  }
  .price-pop {
    left: auto;
    right: 16px;
  }
}
@media (max-width: 420px) {
  .cat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .brand .name {
    font-size: 21px;
  }
} /* Thanvi â€” generated CSS, uploaded to site_settings.sx_css_location (dedicated slot).
   Styles ONLY the Tier-B custom HTML sections (deal-of-the-hour + USP strip).
   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 colour comes from the theme var --secondary-main. */

/* BEGIN shoopy-gen:base */
.sx {
  --sx-gap: 16px;
  --sx-radius: 16px;
  --sx-ink: #1c1c1c;
  --sx-muted: #7a7a7a;
  --sx-line: #efefef;
}
.sx,
.sx * {
  box-sizing: border-box;
}
.sx-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 999px;
  background: var(--secondary-main, #1aa64b);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(26, 166, 75, 0.28);
  transition: 0.15s;
}
.sx-btn:hover {
  filter: brightness(0.94);
  transform: translateY(-2px);
}
/* END shoopy-gen:base */

/* BEGIN shoopy-gen:deal-1 */
.sx-deal {
  max-width: 1240px;
  margin: 0 auto;
  background: linear-gradient(
    110deg,
    #fff 0%,
    #fff 55%,
    color-mix(in srgb, var(--secondary-main, #1aa64b) 10%, #fff) 100%
  );
  border: 1px solid var(--sx-line);
  border-radius: var(--sx-radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  font-family: "Nunito Sans", "Inter", system-ui, sans-serif;
}
.sx-deal__media {
  position: relative;
  min-height: 260px;
  background: color-mix(in srgb, var(--secondary-main, #1aa64b) 8%, #fff);
}
.sx-deal__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 260px;
  display: block;
}
.sx-deal__flag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #ffb400;
  color: #3a2400;
  font-weight: 900;
  font-size: 12px;
  padding: 6px 13px;
  border-radius: 999px;
  letter-spacing: 0.3px;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.08);
}
.sx-deal__body {
  padding: 30px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sx-deal__tag {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--secondary-main, #1aa64b);
  background: color-mix(in srgb, var(--secondary-main, #1aa64b) 12%, #fff);
  padding: 4px 11px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.sx-deal__body h3 {
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin: 0 0 6px;
  color: var(--sx-ink);
}
.sx-deal__desc {
  font-size: 14px;
  color: var(--sx-muted);
  margin: 0 0 16px;
  max-width: 400px;
  line-height: 1.5;
}
.sx-deal__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
}
.sx-deal__price .now {
  font-size: 30px;
  font-weight: 900;
  color: var(--sx-ink);
}
.sx-deal__price .was {
  font-size: 17px;
  color: #9b9b9b;
  text-decoration: line-through;
}
.sx-deal__price .off {
  font-size: 13px;
  font-weight: 800;
  color: var(--secondary-main, #1aa64b);
  background: color-mix(in srgb, var(--secondary-main, #1aa64b) 12%, #fff);
  padding: 3px 9px;
  border-radius: 6px;
}
.sx-deal__timer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #3a3a3a;
  font-weight: 600;
  margin: 8px 0 20px;
}
.sx-deal__timer .t-box {
  background: #101410;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  padding: 4px 9px;
  border-radius: 6px;
  font-variant-numeric: tabular-nums;
}
.sx-deal__cta {
  align-self: flex-start;
}
@media (max-width: 760px) {
  .sx-deal {
    grid-template-columns: 1fr;
  }
  .sx-deal__media {
    min-height: 190px;
  }
  .sx-deal__media img {
    min-height: 190px;
  }
  .sx-deal__body {
    padding: 24px 22px;
  }
}
/* END shoopy-gen:deal-1 */

/* BEGIN shoopy-gen:usp-1 */
.sx-usp {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sx-gap);
  max-width: 1240px;
  margin: 30px auto 0;
  padding: 24px 16px;
  background: #fff;
  border-top: 1px solid var(--sx-line);
  border-bottom: 1px solid var(--sx-line);
  font-family: "Inter", system-ui, sans-serif;
}
.sx-usp__item {
  display: flex;
  gap: 13px;
  align-items: center;
}
.sx-usp__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  flex: 0 0 auto;
  background: color-mix(in srgb, var(--secondary-main, #1aa64b) 12%, #fff);
  color: var(--secondary-main, #1aa64b);
  display: grid;
  place-items: center;
}
.sx-usp__icon svg {
  width: 24px;
  height: 24px;
}
.sx-usp__title {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 800;
  font-size: 14px;
  margin: 0;
  color: var(--sx-ink);
}
.sx-usp__sub {
  margin: 2px 0 0;
  color: var(--sx-muted);
  font-size: 12px;
}
@media (min-width: 768px) {
  .sx-usp {
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: -24px !important;
  }
}
/* END shoopy-gen:usp-1 */

/* custome */
#notice {
  padding: 0px !important;
}
.desktop-header-search,
.desktop-header-center {
  max-width: none !important;
}
.sh-header-search-box {
  border-radius: 12px !important;
  background: #f7f8f7 !important;
}
.sh-header-search-box:focus-within {
  border-color: var(--secondary-main);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26, 166, 75, 0.1);
}
.desktop-header-main {
  box-shadow: var(--shadow-sm) !important;
}
.page-container,
.hero,
.HtmlRenderer-component {
  max-width: 1240px !important;
  margin: auto !important;
}
.section:has(section.sx.sx-usp),
.section:has(section.banner-grid) {
  display: inline;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.HtmlRenderer-component:has(section.sx.sx-usp) {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.section:has(.banner-grid) {
  display: inline;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.HtmlRenderer-component:has(.banner-grid) {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
@media (max-width: 768px) {
  .HtmlRenderer-component:has(.banner-grid) {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .HtmlRenderer-component:has(section.sx.sx-usp) {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.recommended-theme-card-grid {
  background: #fff !important;
  border: 1px solid var(--line);
  border-radius: var(--r-md) !important;
  padding: 10px !important;
  position: relative !important;
  transition: 0.15s !important;
  display: flex !important;
  flex-direction: column !important;
}
.recommended-theme-card-swiper {
  background: #fff !important;
  border: 1px solid var(--line);
  border-radius: var(--r-md) !important;
  padding: 10px !important;
  position: relative !important;
  transition: 0.15s !important;
  display: flex !important;
  flex-direction: column !important;
  height: -webkit-fill-available !important;
}
.recommended-theme-mode-grid,
.swiper-wrapper {
  gap: 10px !important;
}
.product-card-image-container {
  border: none !important;
}
.section {
  background-color: #f7f8f7 !important;
}
.hero {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

@media (max-width: 768px) {
  .hero {
    padding: 0rem 1rem;
    padding-top: 1rem !important;
  }
}
.shop-all-link {
  font-weight: 600 !important;
}
.section-3 .collection-header .heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.heading-title {
  font-size: clamp(18px, 2.4vw, 24px) !important;
  font-weight: 900 !important;
  letter-spacing: -0.4px !important;
}
@media (max-width: 480px) {
  .recommended-theme-mode-grid {
    --recommended-card-min-width: 150px !important;
  }
}
