

:root {
  /* Brand greens */
  --green-900: #1d3024; /* footer / deepest */
  --green-800: #24412e;
  --green-700: #2e5639;
  --green-ink: #26352a; /* headings */
  --matcha: #5aa86b; /* primary action */
  --matcha-600: #4c9a5d;
  --matcha-700: #3f8650;
  --matcha-soft: #e9f3ea; /* tinted chip bg */
  --leaf: #8cc079;

  /* Neutrals / surfaces */
  --cream: #f4f1e8; /* beige section */
  --cream-2: #efeadd;
  --mint: #d4ebe4; /* light teal section */
  --mint-2: #c4e4dc;
  --paper: #ffffff;
  --line: #e7e4da;

  /* Text */
  --ink: #25342a;
  --muted: #6f7670;
  --muted-2: #8a8f87;

  /* Type */
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;

  /* Radii / shadow */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;
  --shadow-card: 0 18px 44px -24px rgba(31, 56, 38, 0.34);
  --shadow-soft: 0 10px 30px -18px rgba(31, 56, 38, 0.25);

  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  color: var(--green-ink);
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-weight: 700;
}

p {
  color: var(--muted);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container-x {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
  width: 100%;
}

.section {
  padding: 88px 0;
}
.section-sm {
  padding: 60px 0;
}

/* Eyebrow label */
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 700;
  color: var(--matcha-700);
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--matcha);
  display: inline-block;
}

.display-1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
}
.display-2 {
  font-size: clamp(2rem, 4vw, 2.9rem);
}
.lead {
  font-size: 1.06rem;
  color: var(--muted);
  max-width: 46ch;
}

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: 999px;
  padding: 12px 15px;
  border: none;
  font-size: 14px;
  transition:
    transform 0.18s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  line-height: 1;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-matcha {
  background: var(--matcha);
  color: #fff;
  box-shadow: 0 10px 22px -12px rgba(63, 134, 80, 0.8);
}
.btn-matcha:hover {
  background: var(--matcha-700);
  color: #fff;
}
.btn-ghost {
  background: transparent;
  color: var(--green-ink);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover {
  border-color: var(--matcha);
  color: var(--matcha-700);
  background: #fff;
}
.btn-dark {
  background: var(--green-900);
  color: #fff;
}
.btn-dark:hover {
  background: var(--green-800);
  color: #fff;
}

/* ---------- Navbar ---------- */
.topbar {
  background: var(--green-900);
  color: #cfe0d4;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.topbar .container-x {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding-top: 9px;
  padding-bottom: 9px;
}
.topbar a {
  color: #fff;
  font-weight: 600;
}

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.32rem;
  color: var(--green-ink);
  letter-spacing: -0.03em;
}
.brand .mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--matcha);
  display: grid;
  place-items: center;
  color: #fff;
}
.nav-links {
  display: flex;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: 14px;
}
.nav-links a {
  font-weight: 500;
  color: var(--ink);
  font-size: 0.97rem;
  padding: 6px 2px;
  position: relative;
}
.nav-links a:hover {
  color: var(--matcha-700);
}
.nav-links a.active {
  color: var(--matcha-700);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}
.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--green-ink);
  background: #fff;
  border: 1px solid var(--line);
  position: relative;
  transition: 0.2s;
}
.icon-btn:hover {
  border-color: var(--matcha);
  color: var(--matcha-700);
}
.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--matcha);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  padding: 0 4px;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--green-ink);
  width: 44px;
  height: 44px;
}

/* ---------- Hero ---------- */
.hero {
  padding: 56px 0 70px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}
.hero-media {
  position: relative;
}
.hero-img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-card);
}
.hero-inset {
  position: absolute;
  bottom: -26px;
  right: -18px;
  width: 200px;
  height: 168px;
  object-fit: cover;
  border-radius: 20px;
  border: 6px solid #fff;
  box-shadow: var(--shadow-card);
}
.hero-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 12px 16px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: var(--shadow-soft);
}
.hero-badge {
  max-width: 230px;
}
.hero-badge .dot {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--matcha-soft);
  display: grid;
  place-items: center;
  color: var(--matcha-700);
}
.hero-badge b {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--green-ink);
  display: block;
  line-height: 1.1;
}
.hero-badge span {
  font-size: 12px;
  color: var(--muted);
}

.hero h1 {
  font-size: clamp(2.6rem, 5.2vw, 4rem);
  margin: 14px 0 18px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 30px;
}
.trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.trust .stars {
  color: #e0a93b;
  letter-spacing: 2px;
}
.trust small {
  color: var(--muted);
}
.trust .logos {
  display: flex;
  gap: 18px;
  align-items: center;
  color: var(--muted-2);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
}

/* ---------- Section header row ---------- */
.head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 38px;
  flex-wrap: wrap;
}
.head-row h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  margin: 0;
}
.carousel-nav {
  display: flex;
  gap: 10px;
}

/* ---------- Product cards ---------- */
.product-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(290px, 1fr);
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.product-track::-webkit-scrollbar {
  display: none;
}
.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  scroll-snap-align: start;
  transition: 0.25s;
}
.product-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}
.product-thumb {
  position: relative;
  /* height: 240px; */
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--line);
}
.product-rating {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #fff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--green-ink);
  padding: 5px 11px;
  box-shadow: var(--shadow-soft);
  display: flex;
  gap: 5px;
  align-items: center;
}
.product-fav {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-soft);
  color: var(--muted);
}
.product-body {
  padding: 20px 22px 24px;
}
.product-body h3 {
  font-size: 1.18rem;
  margin: 0 0 6px;
}
.product-body p {
  font-size: 0.92rem;
  margin: 0 0 16px;
}
.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--green-ink);
}
.price s {
  color: var(--muted-2);
  font-size: 0.85rem;
  font-weight: 500;
  margin-right: 6px;
}

/* Pouch graphic */
.pouch {
  width: 132px;
  height: 188px;
  border-radius: 14px 14px 16px 16px;
  position: relative;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 26px;
  color: #fff;
}
.pouch::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 16px;
  background: inherit;
  border-radius: 4px;
  filter: brightness(0.82);
}
.pouch .p-brand {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}
.pouch .p-leaf {
  font-size: 30px;
  margin: 10px 0;
}
.pouch .p-flavor {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  line-height: 1.1;
  padding: 0 14px;
}
.pouch .p-net {
  margin-top: auto;
  margin-bottom: 16px;
  font-size: 10px;
  background: rgba(255, 255, 255, 0.22);
  padding: 3px 9px;
  border-radius: 999px;
}

.center-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 42px;
  flex-wrap: wrap;
}

/* ---------- Experience (cream) ---------- */
.bg-cream {
  background: var(--cream);
}
.bg-mint {
  background: var(--mint);
}
.exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}
.exp-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 18px;
}
.exp-imgs .big {
  grid-column: 1 / -1;
  object-fit: cover;
      border-radius: var(--r-xl);
}
.exp-imgs .sm {
  height: 180px;
  object-fit: cover;
  border-radius: var(--r-md);
}

/* ---------- What makes us different (accordion) ---------- */
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.diff-img {
  height: 460px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-card);
}
.acc {
  border-top: 1px solid var(--line);
}
.acc-item {
  border-bottom: 1px solid var(--line);
}
.acc-head {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--green-ink);
}
.acc-head .num {
  color: var(--matcha);
  font-size: 0.95rem;
  min-width: 28px;
}
.acc-head .chev {
  margin-left: auto;
  transition: transform 0.25s;
  color: var(--matcha-700);
}
.acc-item.open .acc-head .chev {
  transform: rotate(180deg);
}
.acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}
.acc-item.open .acc-panel {
  max-height: 220px;
}
.acc-panel p {
  padding: 0 0 22px 44px;
  margin: 0;
}

/* ---------- Daily boost ingredients ---------- */
.boost-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 54px;
  align-items: center;
}
.boost-img {
  height: 480px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-card);
}
.ing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.ing-card {
  padding: 4px 6px;
}
.ing-ic {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--matcha-soft);
  display: grid;
  place-items: center;
  color: var(--matcha-700);
  margin-bottom: 16px;
}
.ing-card h4 {
  font-size: 1.12rem;
  margin: 0 0 8px;
}
.ing-card p {
  font-size: 0.92rem;
  margin: 0;
}

/* ---------- Elevate routine (mint) ---------- */
.routine {
  text-align: center;
}
.routine .lead {
  margin-inline: auto;
}
.routine-cta {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin: 26px 0 40px;
  flex-wrap: wrap;
}
.socials {
  display: flex;
  gap: 10px;
}
.social-ic {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  color: var(--green-ink);
  transition: 0.2s;
}
.social-ic:hover {
  background: var(--matcha);
  color: #fff;
}
.routine-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-card);
}

/* ---------- Testimonials ---------- */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.quote-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-soft);
}
.quote-card .qm {
  font-family: var(--font-display);
  color: var(--matcha);
  font-size: 2.4rem;
  line-height: 0.6;
}
.quote-card blockquote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--green-ink);
  margin: 14px 0 22px;
  line-height: 1.3;
}
.q-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-family: var(--font-display);
}
.q-author b {
  display: block;
  color: var(--green-ink);
  font-size: 0.98rem;
}
.q-author span {
  color: var(--muted);
  font-size: 0.85rem;
}

/* ---------- FAQ ---------- */
.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.faq-aside .btn {
  margin-top: 22px;
}
.faq-help {
  margin-top: 30px;
  background: var(--matcha-soft);
  border-radius: var(--r-lg);
  padding: 24px;
}
.faq-help b {
  font-family: var(--font-display);
  color: var(--green-ink);
  display: block;
  margin-bottom: 6px;
}
.faq-list .acc-head {
  font-size: 1.08rem;
}
.faq-list .acc-panel p {
  padding-left: 0;
}

/* ---------- News & articles ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: 0.25s;
}
.blog-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}
.blog-card img {
  height: 240px;
  width: 100%;
  object-fit: cover;
}
.blog-body {
  padding: 26px 28px 30px;
}
.blog-meta {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}
.tag {
  background: var(--matcha-soft);
  color: var(--matcha-700);
  font-weight: 700;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 999px;
}
.blog-meta time {
  color: var(--muted);
  font-size: 13px;
}
.blog-card h3 {
  font-size: 1.3rem;
  margin: 0;
}

/* ---------- Instagram grid ---------- */
.insta-head {
  text-align: left;
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.insta-grid a {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 1;
}
.insta-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
.insta-grid a:hover img {
  transform: scale(1.07);
}
.insta-grid a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(29, 48, 36, 0.18);
  opacity: 0;
  transition: 0.25s;
}
.insta-grid a:hover::after {
  opacity: 1;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--green-900);
  color: #c6d6cb;
  padding: 76px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer h5 {
  color: #fff;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 18px;
  font-family: var(--font-body);
  font-weight: 700;
}
.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer ul li {
  margin-bottom: 11px;
}
.footer ul a {
  color: #b6c8bc;
  font-size: 0.95rem;
}
.footer ul a:hover {
  color: #fff;
}
.footer .brand {
  color: #fff;
  margin-bottom: 16px;
}
.footer .f-about {
  color: #9fb3a6;
  font-size: 0.95rem;
  max-width: 30ch;
}
.contact-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
  color: #c6d6cb;
  font-size: 0.95rem;
}
.contact-line svg {
  color: var(--leaf);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-line span {
  word-break: normal;
}
.footer-imgs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.footer-imgs img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
}

.newsletter {
  background: var(--green-800);
  border-radius: var(--r-xl);
  padding: 44px 48px;
  margin-bottom: 46px;
  /* display: grid; */
  /* grid-template-columns: 1fr 1fr; */
  /* gap: 30px; */
  align-items: center;
}
.newsletter h3 {
  color: #fff;
  font-size: 1.9rem;
  margin: 0 0 8px;
}
.newsletter p {
  color: #a9bdb0;
  margin: 0;
  font-size: 16px;
}
.nl-form {
  display: flex;
  gap: 12px;
}
.nl-form input {
  flex: 1;
  border: none;
  border-radius: 999px;
  padding: 15px 22px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
}
.nl-form input:focus {
  outline: 2px solid var(--matcha);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 24px 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-bottom .brand {
  font-size: 1.1rem;
  margin: 0;
}
.footer-bottom small {
  color: #9fb3a6;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: #fff;
  transition: 0.2s;
}
.footer-social a:hover {
  background: var(--matcha);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 991px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: grid;
    place-items: center;
  }
  .hero-grid,
  .exp-grid,
  .diff-grid,
  .boost-grid,
  .faq-grid,
  .newsletter {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    gap: 60px;
  }
  .quote-grid {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .diff-img,
  .boost-img,
  .routine-img {
    height: 360px;
  }
  .hero-img {
    height: 440px;
  }
  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* mobile menu panel */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 14px 24px 22px;
    margin: 0;
    box-shadow: var(--shadow-card);
  }
  .nav-links.open a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }
  .section {
    padding: 60px 0;
  }
  .hero-img {
    height: 360px;
  }
  .hero-inset {
    width: 130px;
    height: 110px;
    bottom: -16px;
    right: -8px;
  }
  .exp-imgs {
    grid-template-columns: 1fr 1fr;
  }
  .ing-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .newsletter {
    padding: 32px 26px;
  }
  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
  .topbar {
    display: none;
  }
}

.brand img{
    width: 200px;
}
.product-thumb img{
    padding-bottom: 10px;
}
.product-track-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 22px;
}
.quantity{
    display: flex;
    justify-content: center;
    width: 160px;
    align-items: center;
    background: #dddddd1c;
    border: 1px solid #69af78;
    border-radius: 36px;
}
.quantity button{

}
.quantity input{
    width: auto;
    background: transparent;
    color: #000;
    text-align: center;
    border: none;
}