:root {
  --z-green: #1b8057;
  --z-green-dark: #146644;
  --z-green-soft: #d8f2de;
  --z-yellow: #f8c519;
  --z-yellow-dark: #e0b000;
  --z-red: #e00000;
  --z-ink: #161925;
  --z-muted: #666975;
  --z-line: #e8e9ec;
  --z-bg: #f7f7f7;
  --z-cream: #fefdf3;
  --z-white: #fff;
  --z-radius: 10px;
  --font: "Inter", "Segoe UI", system-ui, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 100px; }

body {
  font-family: var(--font);
  color: var(--z-ink);
  background: var(--z-white);
  line-height: 1.5;
  font-size: 15px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select { font: inherit; }
.container { width: min(1320px, calc(100% - 2rem)); margin-inline: auto; }

/* Topbar */
.topbar {
  background: var(--z-green);
  color: rgba(255,255,255,.92);
  font-size: 13px;
  padding: .55rem 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.topbar-left, .topbar-right {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem 1.25rem;
  align-items: center;
}
.topbar svg { width: 14px; height: 14px; vertical-align: -2px; margin-right: 4px; }

/* Header main */
.header-main {
  background: var(--z-white);
  border-bottom: 1px solid var(--z-line);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-main-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-weight: 800;
  font-size: 1.55rem;
  letter-spacing: -.03em;
  color: var(--z-green);
}
.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--z-green), #22ad5c);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
}
.logo span.tag {
  display: block;
  font-size: .68rem;
  font-weight: 600;
  color: var(--z-muted);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-top: -2px;
}

.search-box {
  display: flex;
  border: 2px solid var(--z-green);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  height: 48px;
}
.search-box select {
  border: 0;
  border-right: 1px solid var(--z-line);
  padding: 0 .85rem;
  min-width: 140px;
  background: var(--z-bg);
  color: var(--z-ink);
  outline: none;
}
.search-box input {
  flex: 1;
  border: 0;
  padding: 0 1rem;
  outline: none;
  min-width: 0;
}
.search-box button {
  border: 0;
  background: var(--z-green);
  color: #fff;
  padding: 0 1.25rem;
  cursor: pointer;
  font-weight: 700;
  white-space: nowrap;
}
.search-box button:hover { background: var(--z-green-dark); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.action-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .15rem;
  font-size: 12px;
  color: var(--z-muted);
  font-weight: 500;
  background: none;
  border: 0;
  cursor: pointer;
}
.action-btn .icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--z-bg);
  display: grid;
  place-items: center;
  color: var(--z-ink);
  transition: .2s;
}
.action-btn:hover .icon-wrap { background: var(--z-green-soft); color: var(--z-green); }
.action-btn svg { width: 20px; height: 20px; }
.badge-count {
  position: absolute;
  top: -2px;
  right: 4px;
  background: var(--z-yellow);
  color: var(--z-ink);
  font-size: 10px;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
}
.cart-btn .icon-wrap { background: var(--z-green); color: #fff; }
.cart-btn:hover .icon-wrap { background: var(--z-green-dark); color: #fff; }

/* Nav */
.main-nav {
  background: var(--z-ink);
  color: #fff;
}
.main-nav-inner {
  display: flex;
  align-items: center;
  gap: .5rem;
  min-height: 52px;
}
.cat-trigger {
  background: var(--z-green);
  color: #fff;
  border: 0;
  height: 52px;
  padding: 0 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
.cat-trigger svg { width: 18px; height: 18px; }
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: .15rem;
  align-items: center;
}
.nav-links a {
  padding: .65rem .9rem;
  font-weight: 600;
  font-size: 14px;
  color: rgba(255,255,255,.9);
  border-radius: 6px;
}
.nav-links a:hover, .nav-links a.active { color: var(--z-yellow); }
.nav-links .hot {
  background: var(--z-red);
  color: #fff !important;
  font-size: 11px;
  padding: .2rem .45rem;
  border-radius: 4px;
  margin-left: .25rem;
  vertical-align: 1px;
}
.menu-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  padding: .45rem .7rem;
  border-radius: 6px;
  cursor: pointer;
}

/* Category strip */
.cat-strip {
  background: var(--z-white);
  border-bottom: 1px solid var(--z-line);
  padding: 1.5rem 0;
  margin-top: .5rem;
}
.cat-strip-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: .75rem;
}
.cat-item {
  text-align: center;
  padding: 1rem .5rem .85rem;
  border-radius: 12px;
  border: 1px solid var(--z-line);
  background: #fff;
  transition: .2s;
}
.cat-item:hover {
  border-color: var(--z-green);
  background: var(--z-cream);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(27,128,87,.1);
}
.cat-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto .55rem;
  border-radius: 50%;
  background: var(--z-green-soft);
  display: grid;
  place-items: center;
}
.cat-item img {
  width: 34px;
  height: 34px;
  margin: 0;
  object-fit: contain;
}
.cat-item h4 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: .15rem;
  color: var(--z-ink);
}
.cat-item span {
  font-size: 11px;
  color: var(--z-muted);
}

/* Hero */
.hero {
  padding: 1.5rem 0 0;
  background: #fff;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.55fr .85fr;
  gap: 1rem;
}
.hero-main {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 380px;
  background: #fff;
  border: 1px solid var(--z-line);
  color: var(--z-ink);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
}
.hero-main-visual {
  height: 100%;
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: #fff;
}
.hero-main-visual img {
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: contain;
  object-position: center;
}
.hero-main-content {
  position: relative;
  z-index: 1;
  padding: 2.5rem;
  max-width: 420px;
  background: transparent;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-eyebrow {
  display: inline-block;
  background: var(--z-yellow);
  color: var(--z-ink);
  font-weight: 800;
  font-size: 12px;
  padding: .35rem .7rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  width: fit-content;
}
.hero-main h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -.03em;
  margin-bottom: .75rem;
  color: var(--z-ink);
}
.hero-main h1 em {
  font-style: normal;
  color: var(--z-green);
}
.hero-main p {
  opacity: 1;
  color: var(--z-muted);
  margin-bottom: 1.4rem;
  max-width: 28ch;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .75rem 1.35rem;
  border-radius: 8px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  transition: .2s;
  width: fit-content;
  position: relative;
  z-index: 2;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--z-yellow); color: var(--z-ink); }
.btn-primary:hover { background: var(--z-yellow-dark); }
.btn-green { background: var(--z-green); color: #fff; }
.btn-green:hover { background: var(--z-green-dark); color: #fff; }
.btn-white {
  background: #fff;
  color: var(--z-ink);
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
}
.btn-white:hover { background: var(--z-green); color: #fff; }
.btn-outline {
  background: transparent;
  border: 1px solid var(--z-line);
  color: var(--z-ink);
}
.btn-outline:hover { border-color: var(--z-green); color: var(--z-green); }
.btn-sm { padding: .55rem 1.1rem; font-size: 13px; }
.btn-cta { min-width: 120px; }

.hero-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
}
.promo-card {
  border-radius: 14px;
  padding: 1.25rem 1.35rem;
  position: relative;
  overflow: hidden;
  min-height: 175px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--z-ink);
}
.promo-card.green { background: linear-gradient(135deg, #d8f2de, #b8e6c6); }
.promo-card.cream { background: linear-gradient(135deg, #fff4cc, #ffe89a); }
.promo-card.peach { background: linear-gradient(135deg, #ffe4d6, #ffc9ae); }
.promo-card img {
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 46%;
  max-height: 90%;
  object-fit: contain;
  pointer-events: none;
  z-index: 0;
}
.promo-body {
  position: relative;
  z-index: 1;
  max-width: 58%;
}
.promo-card .label {
  font-size: 12px;
  font-weight: 700;
  color: var(--z-green);
  margin-bottom: .35rem;
}
.promo-card h3 {
  font-size: 1.15rem;
  line-height: 1.25;
  margin-bottom: .4rem;
  max-width: 14ch;
}
.promo-card .price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--z-red);
  margin-bottom: .75rem;
}
.promo-card .price small {
  font-size: .75rem;
  color: var(--z-muted);
  font-weight: 600;
  margin-right: .25rem;
}

/* Section commons */
.section { padding: 2.5rem 0; scroll-margin-top: 100px; }
#featured, #deals, #categories, #trending, #blog, #contact, #testimonials {
  scroll-margin-top: 100px;
}
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.35rem;
  flex-wrap: wrap;
}
.section-head h2 {
  font-size: 1.45rem;
  letter-spacing: -.02em;
  position: relative;
  padding-left: .75rem;
}
.section-head h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: .2rem;
  bottom: .2rem;
  width: 4px;
  border-radius: 4px;
  background: var(--z-green);
}
.tabs {
  display: flex;
  gap: .35rem;
  flex-wrap: wrap;
}
.tab {
  border: 1px solid var(--z-line);
  background: #fff;
  padding: .4rem .9rem;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--z-muted);
  cursor: pointer;
}
.tab.active, .tab:hover {
  background: var(--z-green);
  border-color: var(--z-green);
  color: #fff;
}

/* Products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.product-card {
  background: #fff;
  border: 1px solid var(--z-line);
  border-radius: 12px;
  padding: .85rem;
  position: relative;
  transition: .2s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: var(--z-green);
  box-shadow: 0 10px 28px rgba(27,128,87,.12);
}
.product-media {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin-bottom: .75rem;
  background: #fafafa;
  border-radius: 10px;
  overflow: hidden;
}
.product-media img {
  max-height: 150px;
  width: auto;
  object-fit: contain;
  transition: .3s;
}
.product-card:hover .product-media img { transform: scale(1.06); }
.discount-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--z-red);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: .2rem .45rem;
  border-radius: 4px;
  z-index: 2;
}
.stock-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--z-ink);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: .25rem .5rem;
  border-radius: 4px;
  z-index: 2;
}
.product-actions {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  opacity: 0;
  transform: translateX(6px);
  transition: .2s;
  z-index: 2;
}
.product-card:hover .product:hover .product-actions,
.product-card:hover .product-actions { opacity: 1; transform: none; }
.product-actions button {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--z-line);
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--z-ink);
}
.product-actions button:hover { background: var(--z-green); color: #fff; border-color: var(--z-green); }
.product-actions svg { width: 15px; height: 15px; }
.rating {
  display: flex;
  align-items: center;
  gap: .25rem;
  font-size: 12px;
  color: var(--z-muted);
  margin-bottom: .35rem;
}
.stars { color: var(--z-yellow); letter-spacing: 1px; }
.product-card h3 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: .55rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.7em;
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: .45rem;
  margin-bottom: .75rem;
  margin-top: auto;
}
.price-row .current {
  color: var(--z-green);
  font-weight: 800;
  font-size: 1.05rem;
}
.price-row .old {
  color: var(--z-muted);
  text-decoration: line-through;
  font-size: 13px;
}
.add-cart {
  width: 100%;
  background: var(--z-green-soft);
  color: var(--z-green);
  border: 0;
  border-radius: 8px;
  padding: .65rem;
  font-weight: 700;
  cursor: pointer;
  transition: .2s;
}
.add-cart:hover { background: var(--z-green); color: #fff; }
.add-cart:disabled {
  background: #eee;
  color: #999;
  cursor: not-allowed;
}

/* Sellers */
.seller-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.seller-card {
  border: 1px solid var(--z-line);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
  background: #fff;
  position: relative;
}
.seller-card img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto .75rem;
  border: 3px solid var(--z-green-soft);
}
.seller-card .featured {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--z-yellow);
  font-size: 10px;
  font-weight: 800;
  padding: .2rem .45rem;
  border-radius: 4px;
}
.seller-card h3 { font-size: 1rem; margin-bottom: .25rem; }
.seller-card p { font-size: 13px; color: var(--z-muted); }

/* Deal week */
.deal-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1rem;
  background: linear-gradient(135deg, #1b8057, #146644);
  border-radius: 16px;
  overflow: hidden;
  color: #fff;
}
.deal-aside {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.deal-aside img {
  position: absolute;
  right: -20px;
  bottom: 0;
  width: 160px;
  opacity: .9;
}
.deal-aside h2 { font-size: 1.6rem; margin-bottom: .5rem; position: relative; }
.deal-aside p { opacity: .85; margin-bottom: 1.25rem; position: relative; font-size: 14px; }
.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .4rem;
  position: relative;
  margin-bottom: 1.25rem;
}
.countdown div {
  background: rgba(255,255,255,.12);
  border-radius: 8px;
  padding: .55rem .25rem;
  text-align: center;
}
.countdown strong { display: block; font-size: 1.15rem; }
.countdown span { font-size: 10px; opacity: .8; text-transform: uppercase; }
.deal-products {
  background: #fff;
  color: var(--z-ink);
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .75rem;
  align-content: start;
}
.deal-products .product-card { box-shadow: none; }

/* Banner row */
.banner-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.banner-tile {
  border-radius: 14px;
  min-height: 170px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.banner-tile img {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 45%;
  object-fit: cover;
}
.banner-tile .copy { position: relative; z-index: 1; max-width: 55%; }
.banner-tile .label { font-size: 12px; font-weight: 700; margin-bottom: .35rem; }
.banner-tile h3 { font-size: 1.2rem; margin-bottom: .5rem; line-height: 1.25; }
.banner-tile .only {
  font-weight: 800;
  color: var(--z-red);
  margin-bottom: .75rem;
}
.b1 { background: #ffe8d6; }
.b2 { background: #d8f2de; }
.b3 { background: #e8e4ff; }

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.blog-card {
  border: 1px solid var(--z-line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: .2s;
}
.blog-card:hover { box-shadow: 0 12px 30px rgba(0,0,0,.08); transform: translateY(-3px); }
.blog-card img { width: 100%; height: 160px; object-fit: cover; }
.blog-card .body { padding: 1rem; }
.blog-card .date { font-size: 12px; color: var(--z-green); font-weight: 700; margin-bottom: .35rem; }
.blog-card h3 { font-size: 15px; margin-bottom: .4rem; line-height: 1.35; }
.blog-card p { font-size: 13px; color: var(--z-muted); }

/* Brands */
.brands {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border: 1px solid var(--z-line);
  border-radius: 12px;
  background: #fff;
}
.brands img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .7;
  transition: .2s;
}
.brands img:hover { filter: none; opacity: 1; }

/* Services */
.services {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  background: var(--z-bg);
  border-radius: 14px;
  padding: 1.5rem 1rem;
}
.service-item {
  text-align: center;
  padding: .5rem;
}
.service-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto .65rem;
  border-radius: 50%;
  background: var(--z-green-soft);
  color: var(--z-green);
  display: grid;
  place-items: center;
}
.service-icon svg { width: 24px; height: 24px; }
.service-item h4 { font-size: 14px; margin-bottom: .2rem; }
.service-item p { font-size: 12px; color: var(--z-muted); }

/* Footer */
.site-footer {
  background: var(--z-ink);
  color: rgba(255,255,255,.75);
  padding-top: 3rem;
  margin-top: 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo { color: #fff; margin-bottom: 1rem; }
.footer-brand p { font-size: 14px; margin-bottom: .65rem; }
.gst { color: var(--z-yellow); font-weight: 700; font-size: 13px; }
.site-footer h4 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.site-footer ul li { margin-bottom: .5rem; }
.site-footer ul a:hover { color: var(--z-yellow); }
.newsletter {
  display: flex;
  margin-top: .75rem;
  border-radius: 8px;
  overflow: hidden;
}
.newsletter input {
  flex: 1;
  border: 0;
  padding: .75rem 1rem;
  outline: none;
  min-width: 0;
}
.newsletter button {
  border: 0;
  background: var(--z-green);
  color: #fff;
  padding: 0 1rem;
  font-weight: 700;
  cursor: pointer;
}
.payment-row { margin-top: 1rem; }
.payment-row img { height: 28px; width: auto; }
.footer-bottom {
  padding: 1.15rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,.55);
}

.back-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--z-green);
  color: #fff;
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(27,128,87,.35);
  opacity: 0;
  pointer-events: none;
  transition: .2s;
  z-index: 90;
}
.back-top.show { opacity: 1; pointer-events: auto; }
.toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%) translateY(20px);
  background: var(--z-ink);
  color: #fff;
  padding: .75rem 1.25rem;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  opacity: 0;
  transition: .25s;
  z-index: 120;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Announcement (Fruto) */
.announce-bar {
  background: var(--z-ink);
  color: rgba(255,255,255,.9);
  font-size: 13px;
  padding: .55rem 0;
}
.announce-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.announce-inner strong { color: var(--z-yellow); }
.announce-inner a {
  color: var(--z-yellow);
  font-weight: 700;
  white-space: nowrap;
}

/* Lifestyle banners (Fruto) */
.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.lifestyle-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 280px;
  color: #fff;
  display: flex;
  align-items: flex-end;
}
.lifestyle-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.lifestyle-card:hover img { transform: scale(1.06); }
.lifestyle-card .copy {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
  width: 100%;
  background: linear-gradient(180deg, transparent, rgba(15,18,24,.82));
}
.lifestyle-card .copy .btn { z-index: 3; }
.lifestyle-card .eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--z-yellow);
  margin-bottom: .45rem;
}
.lifestyle-card h3 {
  font-size: 1.45rem;
  margin-bottom: .35rem;
  letter-spacing: -.02em;
}
.lifestyle-card p {
  font-weight: 700;
  margin-bottom: .9rem;
  color: rgba(255,255,255,.9);
}

/* Premium CTA (Fruto + splash art) */
.premium-cta { padding-top: 1rem; }
.premium-panel {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1.5rem;
  align-items: center;
  background: #fff;
  border: 1px solid var(--z-line);
  border-radius: 22px;
  overflow: hidden;
  color: var(--z-ink);
  min-height: 380px;
}
.premium-copy { padding: 2.5rem 2rem 2.5rem 2.5rem; }
.premium-copy h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -.03em;
  margin: .85rem 0 1rem;
  padding: 0;
  color: var(--z-ink);
}
.premium-copy h2::before { display: none; }
.premium-copy h2 em {
  font-style: normal;
  color: var(--z-green);
}
.premium-copy > p {
  color: var(--z-muted);
  max-width: 36ch;
  margin-bottom: 1.4rem;
}
.premium-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 1.4rem;
}
.btn-ghost-dark {
  background: transparent;
  border: 1px solid var(--z-line);
  color: var(--z-ink);
  border-radius: 8px;
  padding: .75rem 1.35rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
}
.btn-ghost-dark:hover { border-color: var(--z-green); color: var(--z-green); }
.premium-points {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem .9rem;
}
.premium-points li {
  font-size: 13px;
  color: var(--z-muted);
  padding-left: 1.1rem;
  position: relative;
}
.premium-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .4rem;
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: var(--z-green);
}
.premium-visual {
  position: relative;
  height: 100%;
  min-height: 360px;
  background: #fff;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.premium-visual img {
  width: 100%;
  height: 100%;
  max-height: 380px;
  object-fit: contain;
  object-position: center;
}

/* Dual sale banners (Fruto) */
.sale-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.sale-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 220px;
  color: #fff;
  display: flex;
  align-items: center;
}
.sale-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sale-card .copy {
  position: relative;
  z-index: 1;
  padding: 2rem;
  max-width: 60%;
  background: linear-gradient(90deg, rgba(15,18,24,.78), transparent);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sale-card .eyebrow {
  font-size: 12px;
  font-weight: 800;
  color: var(--z-yellow);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .45rem;
}
.sale-card h3 {
  font-size: 1.55rem;
  margin-bottom: .4rem;
  letter-spacing: -.02em;
}
.sale-card p {
  font-weight: 700;
  margin-bottom: 1rem;
}
.sale-card.tone-berry .copy { background: linear-gradient(90deg, rgba(110,20,50,.82), transparent); }
.sale-card.tone-veg .copy { background: linear-gradient(90deg, rgba(20,80,45,.82), transparent); }

/* Testimonials (Fruto) */
.testimonials-section { background: var(--z-bg); }
.testimonial-nav { display: flex; gap: .4rem; }
.testimonial-nav button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--z-line);
  background: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--z-ink);
}
.testimonial-nav button:hover {
  background: var(--z-green);
  border-color: var(--z-green);
  color: #fff;
}
.testimonial-viewport { overflow: hidden; }
.testimonial-track {
  display: flex;
  gap: 1rem;
  transition: transform .4s ease;
}
.testimonial-card {
  flex: 0 0 calc(33.333% - .67rem);
  background: #fff;
  border: 1px solid var(--z-line);
  border-radius: 16px;
  padding: 1.5rem;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}
.testimonial-card .quote {
  font-size: 2.5rem;
  line-height: 1;
  color: var(--z-green);
  font-weight: 800;
  margin-bottom: .35rem;
}
.testimonial-card > p {
  color: var(--z-muted);
  flex: 1;
  margin-bottom: 1.1rem;
}
.testimonial-card .person {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.testimonial-card .person img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--z-green-soft);
}
.testimonial-card .person strong { display: block; font-size: 14px; }
.testimonial-card .person span { font-size: 12px; color: var(--z-muted); }

/* Responsive */
@media (max-width: 1100px) {
  .product-grid, .seller-grid, .blog-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-strip-grid { grid-template-columns: repeat(4, 1fr); }
  .services { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
  .deal-layout { grid-template-columns: 1fr; }
  .deal-products { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .lifestyle-grid { grid-template-columns: 1fr; }
  .premium-panel { grid-template-columns: 1fr; }
  .premium-visual { min-height: 280px; }
  .testimonial-card { flex-basis: calc(50% - .5rem); }
}

@media (max-width: 900px) {
  .header-main-inner { grid-template-columns: 1fr auto; }
  .search-box { grid-column: 1 / -1; order: 3; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-main { grid-template-columns: 1fr; }
  .hero-main-visual { min-height: 240px; }
  .hero-side { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .banner-row { grid-template-columns: 1fr; }
  .sale-grid { grid-template-columns: 1fr; }
  .menu-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: .5rem 0 1rem;
  }
  .nav-links.open { display: flex; }
  .main-nav-inner { flex-wrap: wrap; }
}

@media (max-width: 640px) {
  .product-grid, .seller-grid, .blog-grid, .deal-products { grid-template-columns: repeat(2, 1fr); }
  .cat-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-side { grid-template-columns: 1fr; }
  .services { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .action-btn span.label { display: none; }
  .topbar { display: none; }
  .search-box select { display: none; }
  .testimonial-card { flex-basis: 100%; }
  .announce-inner { justify-content: center; text-align: center; }
  .premium-copy { padding: 1.75rem 1.25rem; }
}
