:root {
  --font-sans: "Plus Jakarta Sans", Arial, sans-serif;
  --green-deep: #234d31;
  --green: #4f9d3a;
  --green-bright: #6cb13f;
  --green-soft: #e9f3e2;
  --yellow: #f4c11e;
  --yellow-soft: #fdf1c8;
  --brown: #6b4226;
  --brown-soft: #a07b58;
  --cream: #ffffff;
  --orange: #e85d1f;
  --orange-dark: #cb4710;
  --ink: #26312a;
  --muted: #6f7a70;
  --line: #e9e4d6;
  --white: #ffffff;
  --radius-s: 14px;
  --radius-m: 22px;
  --radius-l: 34px;
  --radius-xl: 48px;
  --shadow-s: 0 6px 18px -8px rgba(35, 77, 49, 0.2);
  --shadow-m: 0 18px 40px -18px rgba(35, 77, 49, 0.3);
  --shadow-l: 0 40px 80px -32px rgba(35, 77, 49, 0.4);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
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;
}

.wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}
h2.section-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--green-deep);
  margin: 0;
}

/* ---------- TOP BAR ---------- */
.topbar {
  background: var(--green-deep);
  color: #dbe7d6;
  font-size: 0.82rem;
  font-weight: 500;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 42px;
  gap: 1rem;
}
.topbar a {
  transition: color 0.25s var(--ease);
}
.topbar a:hover {
  color: var(--yellow);
}
.topbar .tb-left {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.topbar .tb-right {
  display: flex;
  gap: 1.4rem;
  align-items: center;
}
.tb-pill {
  background: rgba(244, 193, 30, 0.16);
  color: var(--yellow);
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  font-weight: 700;
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
}
@media (max-width: 780px) {
  .topbar .tb-left span:not(.tb-pill) {
    display: none;
  }
}

/* ---------- HEADER ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease);
}
.header.scrolled {
  box-shadow: var(--shadow-s);
}
.header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  height: 96px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}
.logo img {
  height: 62px;
  width: auto;
}

.search {
  flex: 1;
  max-width: 560px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 0.32rem 0.32rem 0.32rem 1.15rem;
  transition:
    border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}
.search:hover {
  border-color: #d8d2c2;
}
.search:focus-within {
  border-color: var(--green-bright);
  box-shadow: 0 0 0 4px var(--green-soft);
}
.search-icon {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  color: var(--muted);
}
.search input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.95rem;
  background: none;
  color: var(--ink);
  text-overflow: ellipsis;
}
.search input::placeholder {
  color: var(--muted);
}
.search button {
  flex-shrink: 0;
  background: var(--green);
  color: #fff;
  border-radius: 999px;
  height: 44px;
  padding: 0 1.35rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}
.search button svg {
  width: 19px;
  height: 19px;
}
.search button:hover {
  background: var(--green-deep);
  box-shadow: 0 6px 16px -6px rgba(35, 77, 49, 0.55);
}
@media (max-width: 1080px) {
  .search button .search-btn-label {
    display: none;
  }
  .search button {
    width: 44px;
    padding: 0;
    justify-content: center;
  }
}

.hdr-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}
.icon-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius-s);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--green-deep);
  transition: background 0.2s var(--ease);
  position: relative;
}
.icon-btn:hover {
  background: var(--green-soft);
}
.icon-btn svg {
  width: 24px;
  height: 24px;
}
.cart-count {
  position: absolute;
  top: 0.2rem;
  right: 0.45rem;
  background: var(--orange);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  padding: 0 4px;
  border: 2px solid var(--cream);
}
.burger {
  display: none;
}
@media (max-width: 920px) {
  .search {
    display: none;
  }
  .burger {
    display: flex;
  }
}

/* ---------- NAV ---------- */
.nav {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.nav .wrap {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  height: 56px;
  position: relative;
}
.nav .wrap::-webkit-scrollbar {
  display: none;
}
@media (max-width: 760px) {
  .nav .wrap {
    overflow-x: auto;
  }
}
.nav-all {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  margin-right: 0.6rem;
  transition: background 0.25s var(--ease);
}
.nav-all:hover {
  background: var(--green-deep);
}
.nav-link {
  flex-shrink: 0;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--green-deep);
  transition:
    background 0.2s var(--ease),
    color 0.2s var(--ease);
}
.nav-link:hover {
  background: var(--green-soft);
}
.nav-link.hot {
  color: var(--orange);
}
.nav-link.hot:hover {
  background: #fde6da;
}

/* ---------- MEGA MENU ---------- */
.nav-all-wrap {
  flex-shrink: 0;
  margin-right: 0.6rem;
}
.nav-all-wrap .nav-all {
  margin-right: 0;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.nav-all .chev {
  transition: transform 0.3s var(--ease);
}
.nav-all-wrap.open .chev {
  transform: rotate(180deg);
}
.mega {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-m);
  display: grid;
  grid-template-columns: 270px 1fr;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition:
    opacity 0.26s var(--ease),
    transform 0.26s var(--ease),
    visibility 0.26s var(--ease);
  z-index: 80;
}
.nav-all-wrap.open .mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 38px;
  width: 14px;
  height: 14px;
  background: var(--white);
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  transform: rotate(45deg);
}
.mega-list {
  background: #faf8f1;
  border-right: 1px solid var(--line);
  padding: 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.mega-cat {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.72rem 0.85rem;
  border-radius: var(--radius-s);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--green-deep);
  cursor: pointer;
  transition: background 0.18s var(--ease);
}
.mega-cat .mega-cat-ico {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}
.mega-cat .mega-cat-arrow {
  margin-left: auto;
  width: 16px;
  height: 16px;
  color: var(--muted);
  opacity: 0;
  transform: translateX(-4px);
  transition:
    opacity 0.18s var(--ease),
    transform 0.18s var(--ease);
}
.mega-cat:hover,
.mega-cat.active {
  background: var(--green-soft);
}
.mega-cat.active {
  color: var(--green);
}
.mega-cat.active .mega-cat-arrow {
  opacity: 1;
  transform: translateX(0);
}
.mega-panels {
  position: relative;
  padding: 1.5rem 1.6rem;
}
.mega-panel {
  display: none;
  gap: 2rem;
  align-items: stretch;
}
.mega-panel.active {
  display: flex;
  animation: megaFade 0.3s var(--ease);
  height: 100%;
}
.mega-panel > div {
  flex: 1;
  display: flex;
  flex-direction: column;
}
@keyframes megaFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
}
.mega-panel h4 {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.9rem;
}
.mega-subs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.1rem 0.8rem;
  align-content: start;
}
.mega-subs a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.42rem 0.5rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  transition:
    background 0.16s var(--ease),
    color 0.16s var(--ease);
}
.mega-subs a::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--green-bright);
  flex-shrink: 0;
  transition: transform 0.16s var(--ease);
}
.mega-subs a:hover {
  background: var(--green-soft);
  color: var(--green);
}
.mega-subs a:hover::before {
  transform: scale(1.7);
}
.mega-feature {
  position: relative;
  border-radius: var(--radius-s);
  overflow: hidden;
  display: block;
  width: 380px;
  flex-shrink: 0;
  min-height: 230px;
}
.mega-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.mega-feature:hover img {
  transform: scale(1.07);
}
.mega-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(35, 77, 49, 0.92) 0%,
    rgba(35, 77, 49, 0.1) 55%,
    transparent 100%
  );
}
.mega-feature-txt {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  z-index: 2;
  color: #fff;
}
.mega-feature-txt span {
  display: inline-block;
  background: var(--yellow);
  color: var(--green-deep);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0.5rem;
}
.mega-feature-txt strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
}
.mega-foot {
  margin-top: auto;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.86rem;
}
.mega-foot span {
  color: var(--muted);
  font-weight: 500;
}
.mega-foot a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--green);
  font-weight: 700;
}
.mega-foot a:hover {
  color: var(--green-deep);
}
@media (max-width: 760px) {
  .mega {
    display: none;
  }
}

/* ---------- HERO ---------- */
.hero {
  padding: 38px 0 10px;
  position: relative;
}

.hero-slider {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--green-deep);
  box-shadow: var(--shadow-l);
}
.hero-track {
  display: flex;
  transition: transform 0.8s var(--ease);
}
.hero-slide {
  flex: 0 0 100%;
  display: block;
}
.hero-slide img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1920/600;
  object-fit: cover;
}
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  color: var(--green-deep);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-m);
  transition: background 0.25s var(--ease);
}
.hero-arrow svg {
  width: 24px;
  height: 24px;
}
.hero-arrow:hover {
  background: #fff;
}
.hero-arrow.prev {
  left: 18px;
}
.hero-arrow.next {
  right: 18px;
}
@media (max-width: 560px) {
  .hero-arrow {
    width: 40px;
    height: 40px;
  }
  .hero-arrow.prev {
    left: 10px;
  }
  .hero-arrow.next {
    right: 10px;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  transition: background 0.25s var(--ease);
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 12px 26px -10px rgba(232, 93, 31, 0.7);
}
.btn-primary:hover {
  background: var(--orange-dark);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
}

.hero-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}
.hero-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.hero-dots span.on {
  width: 32px;
  background: var(--yellow);
}

/* ---------- TRUST STRIP ---------- */
.trust {
  padding: 30px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.trust-card {
  background: var(--white);
  border-radius: var(--radius-m);
  padding: 1.3rem;
  display: flex;
  gap: 0.9rem;
  align-items: center;
}
.trust-ic {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--green-soft);
  color: var(--green);
  display: grid;
  place-items: center;
}
.trust-ic svg {
  width: 26px;
  height: 26px;
}
.trust-card b {
  display: block;
  font-size: 0.95rem;
  color: var(--green-deep);
}
.trust-card span {
  font-size: 0.82rem;
  color: var(--muted);
}
@media (max-width: 860px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- CATEGORIES ---------- */
.section {
  padding: 54px 0;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.section-head p {
  color: var(--muted);
  max-width: 46ch;
  margin-top: 0.5rem;
  font-size: 0.98rem;
}
.link-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  color: var(--green);
  font-size: 0.95rem;
  transition:
    gap 0.25s var(--ease),
    color 0.25s var(--ease);
}
.link-more:hover {
  gap: 0.8rem;
  color: var(--green-deep);
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.cat {
  position: relative;
  border-radius: var(--radius-m);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.cat-img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #fff;
}
.cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.cat:hover .cat-img img {
  transform: scale(1.07);
}
.cat-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(35, 77, 49, 0.12),
    transparent 42%
  );
}
.cat-body {
  padding: 1rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.cat-body b {
  font-size: 0.98rem;
  color: var(--green-deep);
  line-height: 1.2;
}
.cat-body span {
  font-size: 0.8rem;
  color: var(--muted);
}
.cat-body .go {
  margin-top: 0.55rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.25s var(--ease);
}
.cat-body .go svg {
  width: 14px;
  height: 14px;
}
.cat:hover .cat-body .go {
  gap: 0.6rem;
}
@media (max-width: 980px) {
  .cat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 560px) {
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- PROMO BANNER ---------- */
.promo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-l);
  height: 500px;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-m);
}
.promo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.promo:hover .promo-bg {
  transform: scale(1.04);
}
.promo-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    100deg,
    var(--green-deep) 0%,
    rgba(35, 77, 49, 0.97) 26%,
    rgba(35, 77, 49, 0.62) 44%,
    rgba(35, 77, 49, 0) 64%
  );
}
.promo-text {
  position: relative;
  z-index: 2;
  padding: clamp(2rem, 4vw, 3.6rem);
  max-width: 620px;
  color: #fff;
}
.promo-text .eyebrow {
  color: var(--yellow);
}
.promo-text .eyebrow::before {
  background: var(--yellow);
}
.promo-text h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0.5rem 0 0.6rem;
  line-height: 1.06;
}
.promo-text p {
  color: #d4e3cf;
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.55;
}
.promo-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 2;
  background: var(--orange);
  color: #fff;
  text-align: center;
  border-radius: var(--radius-s);
  padding: 0.6rem 1.1rem;
  box-shadow: var(--shadow-m);
  transform: rotate(-5deg);
}
.promo-badge small {
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.promo-badge b {
  font-family: var(--font-sans);
  font-size: 2.1rem;
  line-height: 1;
}
@media (max-width: 720px) {
  .promo {
    height: 460px;
  }
  .promo-overlay {
    background: linear-gradient(
      180deg,
      rgba(35, 77, 49, 0.55) 0%,
      rgba(35, 77, 49, 0.88) 55%,
      var(--green-deep) 100%
    );
  }
  .promo-text {
    max-width: none;
    align-self: flex-end;
    text-align: center;
  }
  .promo-text .eyebrow {
    justify-content: center;
  }
}

/* ---------- PRODUCTS ---------- */
.tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.tab {
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--green-deep);
  background: var(--white);
  border: 1.5px solid var(--line);
  transition: all 0.25s var(--ease);
}
.tab:hover {
  border-color: var(--green-bright);
}
.tab.on {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card-img {
  position: relative;
  aspect-ratio: 1;
  background: #fff;
  overflow: hidden;
  isolation: isolate;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  position: relative;
  z-index: 1;
  transition: transform 0.45s var(--ease);
}
.card:hover .card-img img {
  transform: scale(1.07);
}
.tag {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  z-index: 2;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  text-transform: uppercase;
}
.tag.sale {
  background: var(--orange);
  color: #fff;
}
.tag.new {
  background: var(--green);
  color: #fff;
}
.tag.top {
  background: var(--yellow);
  color: var(--green-deep);
}
.wish {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: grid;
  place-items: center;
  color: var(--muted);
  transition: all 0.25s var(--ease);
}
.wish:hover {
  color: var(--orange);
  transform: scale(1.12);
}
.wish svg {
  width: 18px;
  height: 18px;
}
.card-body {
  position: relative;
  z-index: 2;
  background: var(--white);
  padding: 1.1rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
}
.card-body h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--green-deep);
  margin: 0.35rem 0 0.55rem;
  line-height: 1.2;
}
.stars {
  display: flex;
  gap: 0.12rem;
  color: var(--yellow);
  margin-bottom: 0.7rem;
}
.stars svg {
  width: 15px;
  height: 15px;
}
.stars span {
  font-size: 0.78rem;
  color: var(--muted);
  margin-left: 0.35rem;
  align-self: center;
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: auto;
}
.price {
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-deep);
}
.price-old {
  font-size: 0.9rem;
  color: var(--muted);
  text-decoration: line-through;
}
.add {
  margin-top: 0.9rem;
  width: 100%;
  background: var(--green-soft);
  color: var(--green-deep);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.8rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition:
    background 0.25s var(--ease),
    color 0.25s var(--ease);
}
.add:hover {
  background: var(--green);
  color: #fff;
}
.add.added {
  background: var(--orange);
  color: #fff;
}
.add svg {
  width: 18px;
  height: 18px;
}
@media (max-width: 980px) {
  .prod-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .prod-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- BRANDS ---------- */
.brands {
  background: linear-gradient(180deg, #f7faf4 0%, #fff 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 54px 0;
}
.brands h3 {
  text-align: center;
  color: var(--green-deep);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  margin-bottom: 1.8rem;
}
.brand-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
}
.brand-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 86px;
  min-width: 0;
}
.brand-chip:focus-visible {
  outline: 3px solid rgba(108, 177, 63, 0.32);
  outline-offset: 8px;
}
.brand-chip img {
  width: auto;
  height: auto;
  max-width: min(100%, 210px);
  max-height: 86px;
  object-fit: contain;
  object-position: center;
  display: block;
}
@media (max-width: 1100px) {
  .brand-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem 2rem;
  }
  .brand-chip img {
    max-width: min(100%, 190px);
  }
}
@media (max-width: 560px) {
  .brands {
    padding: 38px 0;
  }
  .brand-row {
    gap: 1rem;
  }
  .brand-chip {
    min-height: 64px;
  }
  .brand-chip img {
    max-width: 100%;
    max-height: 64px;
  }
}

/* ---------- SERVICE CTA ---------- */
.service {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
.service-card {
  border-radius: var(--radius-l);
  padding: clamp(1.8rem, 3vw, 2.8rem);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.6rem;
  min-height: 240px;
}
.service-card.s1 {
  color: #fff;
}
.service-card.s1::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      160deg,
      rgba(35, 77, 49, 0.72) 0%,
      rgba(28, 63, 40, 0.94) 80%
    ),
    url("assets/service-bg.jpg") center/cover no-repeat;
  transition: transform 0.6s var(--ease);
}
.service-card.s1:hover::before {
  transform: scale(1.06);
}
.service-card.s1 > * {
  position: relative;
  z-index: 1;
}
.service-card.s2 {
  background: linear-gradient(135deg, #f0e7cf, #fbf8f1);
  color: var(--green-deep);
  border: 1px solid var(--line);
}
.service-card h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.service-card p {
  font-size: 0.96rem;
  line-height: 1.55;
  opacity: 0.9;
  margin-top: 0.5rem;
}
.service-card.s1 p {
  color: #e3eddf;
  opacity: 1;
}
.service-card .btn {
  align-self: flex-start;
}
@media (max-width: 720px) {
  .service {
    grid-template-columns: 1fr;
  }
}

/* ---------- BLOG / PORADY ---------- */
.post {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  transition:
    transform 0.35s var(--ease),
    border-color 0.35s var(--ease);
}
.post:hover {
  transform: translateY(-5px);
  border-color: var(--green-soft);
}
.post-img {
  position: relative;
  overflow: hidden;
  background: var(--green-soft);
}
.post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.post:hover .post-img img {
  transform: scale(1.06);
}
.post-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--white);
  color: var(--green-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  box-shadow: var(--shadow-s);
}
.post-body {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.5rem;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}
.post-meta svg {
  width: 15px;
  height: 15px;
  color: var(--green);
  flex-shrink: 0;
}
.post-meta .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--line);
}
.post h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: var(--green-deep);
  margin: 0;
}
.post p {
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}
.post-read {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.3rem;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--green);
  transition: gap 0.25s var(--ease);
}
.post-read svg {
  width: 16px;
  height: 16px;
}
.post:hover .post-read {
  gap: 0.75rem;
}
.blog-three {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}
.post-card {
  min-height: 100%;
}
.post-card .post-img {
  aspect-ratio: 16 / 10;
}
.post-card .post-body {
  flex: 1;
  padding: 1.35rem;
}
.post-card h3 {
  font-size: 1.16rem;
}
.post-card p {
  font-size: 0.9rem;
}
.post-card .post-read {
  margin-top: auto;
  padding-top: 0.1rem;
}
@media (max-width: 1060px) {
  .blog-three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 680px) {
  .blog-three {
    grid-template-columns: 1fr;
  }
}

/* ---------- NEWSLETTER ---------- */
.news {
  background: var(--white);
  border: 1.5px dashed var(--green-bright);
  border-radius: var(--radius-l);
  padding: clamp(2rem, 4vw, 3rem);
  text-align: center;
}
.news h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--green-deep);
}
.news p {
  color: var(--muted);
  margin: 0.6rem 0 1.6rem;
}
.news-form {
  display: flex;
  gap: 0.6rem;
  max-width: 480px;
  margin: 0 auto;
}
.news-form input {
  flex: 1;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 0.95rem 1.4rem;
  font-size: 0.95rem;
  outline: none;
  font-family: inherit;
  transition: border-color 0.25s var(--ease);
}
.news-form input:focus {
  border-color: var(--green-bright);
}
@media (max-width: 520px) {
  .news-form {
    flex-direction: column;
  }
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--green-deep);
  color: #bfd1ba;
  margin-top: 60px;
  padding: 56px 0 0;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
}
.foot-brand img {
  height: 64px;
  background: var(--cream);
  padding: 0.5rem 0.8rem;
  border-radius: 14px;
  margin-bottom: 1rem;
}
.foot-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 32ch;
}
.foot-col h5 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.foot-col a {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 0.65rem;
  transition: color 0.2s var(--ease);
}
.foot-col a:hover {
  color: var(--yellow);
}
.foot-contact {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
  font-size: 0.92rem;
  align-items: flex-start;
}
.foot-contact svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--yellow);
  margin-top: 2px;
}
.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 42px;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.foot-pay {
  display: flex;
  gap: 0.5rem;
}
.foot-pay span {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.25rem 0.65rem;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 600;
}
@media (max-width: 860px) {
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 520px) {
  .foot-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- REVEAL ANIM ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal[data-d="1"] {
  transition-delay: 0.08s;
}
.reveal[data-d="2"] {
  transition-delay: 0.16s;
}
.reveal[data-d="3"] {
  transition-delay: 0.24s;
}
.reveal[data-d="4"] {
  transition-delay: 0.32s;
}
.reveal[data-d="5"] {
  transition-delay: 0.4s;
}

/* ---------- MOBILE MENU ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--green-deep);
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}
.mobile-menu.open {
  transform: none;
}
.mm-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.mm-head img {
  height: 50px;
  background: #fff;
  padding: 0.3rem 0.6rem;
  border-radius: 10px;
}
.mm-head button {
  color: #fff;
}
.mobile-menu a {
  color: #fff;
  font-family: var(--font-sans);
  font-size: 1.5rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 140%);
  background: var(--green-deep);
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  box-shadow: var(--shadow-l);
  z-index: 200;
  transition: transform 0.4s var(--ease);
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
.toast.show {
  transform: translate(-50%, 0);
}
.toast svg {
  width: 20px;
  height: 20px;
  color: var(--yellow);
}
