@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500&family=Poppins:wght@400;500;600;700&display=swap");

:root {
  --green-950: #002818;
  --green-900: #004d2c;
  --green-800: #0a6b3c;
  --green-700: #15804b;
  --green-100: #e7f5ee;
  --green-50: #f3faf6;
  --orange-500: #f58220;
  --orange-600: #e06e0e;
  --orange-100: #fff1e3;
  --cream-200: #f3ebdd;
  --cream-100: #fbf7f0;
  --ink-900: #14241c;
  --ink-700: #3d4f45;
  --ink-500: #66756d;
  --white: #ffffff;

  --color-primary: var(--green-900);
  --color-on-primary: var(--white);
  --color-secondary: var(--green-800);
  --color-accent: var(--orange-500);
  --color-background: #eef7f2;
  --color-foreground: var(--ink-900);
  --color-muted: var(--green-50);
  --color-border: rgba(0, 77, 44, 0.12);
  --color-destructive: #dc2626;
  --color-ring: var(--green-900);

  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Poppins", system-ui, sans-serif;

  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(0, 36, 20, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 77, 44, 0.08);
  --shadow-lg: 0 18px 40px rgba(0, 77, 44, 0.12);
  --shadow-xl: 0 28px 60px rgba(0, 77, 44, 0.16);

  --glass-bg: linear-gradient(155deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.42));
  --glass-border: 1px solid rgba(255, 255, 255, 0.7);
  --glass-blur: blur(22px) saturate(180%);
  --morph-duration: 16s;
  --blur-amount: 22px;

  --header-h: 84px;
  --topbar-h: 40px;
  --wrap: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--color-foreground);
  background: var(--color-background);
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a,
button,
.header-cart,
.cat-card,
.search-hit {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font-family: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

:focus-visible {
  outline: 3px solid var(--orange-500);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 100;
  background: var(--green-900);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
}

.skip-link:focus {
  top: 8px;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 20px;
  box-sizing: border-box;
  min-width: 0;
}

/* ---------- Liquid stage ---------- */
.liquid-stage {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.blob {
  position: absolute;
  filter: blur(64px);
  opacity: 0.72;
  animation: morph var(--morph-duration) ease-in-out infinite;
  will-change: transform, border-radius;
}

.blob-1 {
  width: 520px;
  height: 520px;
  left: -120px;
  top: 80px;
  background: radial-gradient(circle at 30% 30%, rgba(245, 130, 32, 0.55), rgba(0, 77, 44, 0.18) 70%);
  border-radius: 42% 58% 63% 37% / 41% 46% 54% 59%;
}

.blob-2 {
  width: 640px;
  height: 640px;
  right: -180px;
  top: 40px;
  background: radial-gradient(circle at 60% 40%, rgba(21, 128, 75, 0.5), rgba(245, 130, 32, 0.18) 72%);
  border-radius: 63% 37% 42% 58% / 54% 41% 59% 46%;
  animation-delay: -6s;
}

.blob-3 {
  width: 480px;
  height: 480px;
  left: 32%;
  bottom: -160px;
  background: radial-gradient(circle at 50% 50%, rgba(0, 77, 44, 0.28), rgba(243, 235, 221, 0.4) 70%);
  border-radius: 38% 62% 48% 52% / 60% 40% 60% 40%;
  animation-delay: -11s;
}

@keyframes morph {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    border-radius: 42% 58% 63% 37% / 41% 46% 54% 59%;
  }
  33% {
    transform: translate3d(28px, -18px, 0) rotate(12deg) scale(1.06);
    border-radius: 58% 42% 37% 63% / 46% 54% 41% 59%;
  }
  66% {
    transform: translate3d(-22px, 24px, 0) rotate(-8deg) scale(0.96);
    border-radius: 37% 63% 58% 42% / 59% 41% 54% 46%;
  }
}

.page {
  position: relative;
  z-index: 1;
  width: 100%;
}

.glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.glass-strong {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.58));
  backdrop-filter: blur(28px) saturate(190%);
  -webkit-backdrop-filter: blur(28px) saturate(190%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

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

/* ---------- Top bar / scrolling announcement ---------- */
.topbar {
  background: var(--green-900);
  color: #fff;
  height: 42px;
  font-size: 13px;
  font-weight: 500;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
  will-change: transform;
}

.marquee:hover .marquee-track,
.marquee:focus-within .marquee-track {
  animation-play-state: paused;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-inline: 14px;
  white-space: nowrap;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}

.marquee-item a {
  color: #fff;
}

.marquee-item a:hover {
  color: #ffe0c2;
}

.marquee-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange-500);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(245, 130, 32, 0.25);
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  isolation: isolate;
  width: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.58));
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 10px 30px rgba(0, 77, 44, 0.06);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: var(--header-h);
  min-width: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
  flex-shrink: 0;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 28px rgba(0, 77, 44, 0.12);
}

.site-header.is-scrolled .brand img {
  width: 48px;
  height: 48px;
  transition: width 220ms var(--ease), height 220ms var(--ease);
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0, 77, 44, 0.18);
  background: #fff;
  transition: width 220ms var(--ease), height 220ms var(--ease);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--orange-500);
  font-weight: 700;
}

.brand-text span {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--green-900);
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink-700);
}

.nav a {
  position: relative;
  padding: 6px 0;
}

.nav a:hover,
.nav a.is-active {
  color: var(--green-900);
}

.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--green-900);
  border-radius: 2px;
}

.search {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  max-width: 420px;
  min-width: 0;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 77, 44, 0.12);
  border-radius: var(--radius-pill);
  padding: 4px 6px 4px 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.search input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 10px 8px;
  font-size: 14px;
  color: var(--ink-900);
  outline: none;
  min-width: 0;
}

.search input::placeholder {
  color: #8a978f;
}

.search-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--green-900);
}

.search-btn:hover {
  background: var(--green-100);
}

.header-cart {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--green-900);
  position: relative;
  padding: 8px;
  border-radius: 12px;
}

.header-cart:hover {
  background: rgba(0, 77, 44, 0.06);
}

.cart-badge {
  position: absolute;
  top: 0;
  left: 22px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--green-900);
  color: #fff;
  font-size: 11px;
  display: grid;
  place-items: center;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  place-items: center;
  color: var(--green-900);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), background 200ms ease, color 200ms ease;
}

.btn svg {
  display: block;
  flex-shrink: 0;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--green-900);
  color: #fff;
  box-shadow: 0 10px 22px rgba(0, 77, 44, 0.22);
}

.btn-primary:hover {
  background: var(--green-800);
}

.btn-light {
  background: #fff;
  color: var(--green-900);
}

.btn-light:hover {
  background: var(--cream-100);
}

.btn-cart {
  width: 100%;
  border-radius: 14px;
  background: var(--green-900);
  color: #fff;
  min-height: 44px;
  font-size: 14px;
}

.btn-cart:hover {
  background: var(--green-800);
}

/* ---------- Hero ---------- */
.hero {
  padding: 36px 0 20px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
  position: relative;
  min-width: 0;
}

.hero-copy {
  min-width: 0;
}

.hero-copy h1 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 8vw, 58px);
  line-height: 1.12;
  margin: 0 0 14px;
  color: var(--green-900);
  font-weight: 600;
  overflow-wrap: anywhere;
}

.hero-copy h1 em {
  font-style: italic;
  color: var(--orange-600);
  display: block;
  background: linear-gradient(90deg, #e06e0e, #f58220, #ffc56a, #f58220, #e06e0e);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 6s linear infinite;
}

@keyframes shine {
  to { background-position: 200% center; }
}

.hero-copy p {
  margin: 0 0 22px;
  color: var(--ink-700);
  max-width: 520px;
  font-size: 16.5px;
}

.trust-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 18px;
  margin: 0 0 26px;
  max-width: 520px;
  min-width: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--green-900);
}

.trust-ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: var(--green-800);
  flex-shrink: 0;
}

.trust-ico svg {
  display: block;
}

.hero-visual {
  position: relative;
  min-height: 320px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  inset: 8% 4% 0 10%;
  background: radial-gradient(circle at 60% 40%, rgba(168, 216, 186, 0.7), rgba(232, 245, 238, 0.2));
  border-radius: 58% 42% 48% 52% / 46% 58% 42% 54%;
  filter: blur(2px);
  animation: morph 20s ease-in-out infinite;
}

.hero-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  margin-inline: auto;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 6px solid rgba(255, 255, 255, 0.55);
  box-sizing: border-box;
  animation: floaty 7s ease-in-out infinite;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-photo img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.rating-card {
  position: absolute;
  right: 12px;
  bottom: 28px;
  z-index: 2;
  width: min(168px, calc(100% - 24px));
  padding: 14px 16px;
  border-radius: 18px;
  text-align: center;
}

.rating-card strong {
  display: block;
  font-size: 20px;
  color: var(--green-900);
}

.rating-card span {
  display: block;
  font-size: 12px;
  color: var(--ink-700);
  margin-top: 4px;
}

.stars {
  color: #f5b301;
  letter-spacing: 1px;
  font-size: 13px;
}

/* ---------- Sections ---------- */
.section {
  padding: 48px 0;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
  position: relative;
}

.section-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 36px);
  margin: 0;
  color: var(--green-900);
}

.section-head .view-all {
  position: absolute;
  right: 0;
  font-weight: 600;
  color: var(--green-800);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}

.section-head .view-all:hover {
  color: var(--orange-600);
}

.leaf {
  color: var(--green-800);
  animation: sway 3.5s ease-in-out infinite;
}

@keyframes sway {
  0%, 100% { transform: rotate(-8deg); }
  50% { transform: rotate(8deg); }
}

/* ---------- Categories ---------- */
.cats-track-wrap {
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.cats-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 8px 44px 18px;
  max-width: 100%;
}

.cats-track::-webkit-scrollbar {
  display: none;
}

.cat-card {
  flex: 0 0 148px;
  scroll-snap-align: start;
  text-align: center;
  padding: 16px 12px 18px;
  border-radius: 22px;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.cat-card img {
  width: 108px;
  height: 108px;
  object-fit: cover;
  border-radius: 20px;
  margin: 0 auto 12px;
}

.cat-card span {
  font-weight: 600;
  font-size: 13.5px;
  color: var(--green-900);
}

.carousel-btn {
  position: absolute;
  top: 42%;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(0, 77, 44, 0.12);
  box-shadow: var(--shadow-md);
  display: grid;
  place-items: center;
  color: var(--green-900);
  z-index: 2;
}

.carousel-btn.prev {
  left: 4px;
}

.carousel-btn.next {
  right: 4px;
}

.carousel-btn:hover {
  background: #fff;
}

/* ---------- Products ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  min-width: 0;
}

.product-card {
  border-radius: 22px;
  padding: 14px 14px 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.badge-new {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--green-900);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 8px;
  border-radius: 8px;
  z-index: 1;
}

.product-card img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  margin-bottom: 10px;
}

.product-card h3 {
  margin: 0 0 6px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-900);
  min-height: 42px;
}

.price {
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 4px;
}

.rating-line {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--ink-500);
  margin-bottom: 12px;
}

/* ---------- Trust + testimonials ---------- */
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  min-width: 0;
}

.panel {
  border-radius: 28px;
  padding: 28px;
}

.panel h2 {
  font-family: var(--font-heading);
  margin: 0 0 20px;
  color: var(--green-900);
  font-size: 30px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.why-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
}

.why-item h3 {
  margin: 0 0 4px;
  font-size: 16px;
}

.why-item p {
  margin: 0;
  color: var(--ink-700);
  font-size: 14px;
}

.why-ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-800);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.why-ico svg {
  display: block;
}

.t-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.t-track::-webkit-scrollbar {
  display: none;
}

.t-card {
  flex: 0 0 min(280px, 86%);
  scroll-snap-align: start;
  border-radius: 20px;
  padding: 18px;
}

.t-top {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}

.t-top img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.t-top h3 {
  margin: 0;
  font-size: 15px;
}

.t-top p {
  margin: 0;
  font-size: 12px;
  color: var(--ink-500);
}

.t-card blockquote {
  margin: 0;
  font-size: 14px;
  color: var(--ink-700);
}

/* ---------- Promo ---------- */
.promo {
  background: linear-gradient(120deg, #004d2c 0%, #0a6b3c 55%, #156b38 100%);
  color: #fff;
  border-radius: 28px;
  padding: 28px 36px;
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.9fr;
  gap: 18px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-width: 0;
  width: 100%;
}

.promo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08) 0 2px, transparent 3px);
  background-size: 42px 42px;
  opacity: 0.45;
  pointer-events: none;
}

.promo h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  margin: 0 0 8px;
  position: relative;
}

.promo p,
.promo .code {
  position: relative;
}

.promo em {
  color: #ffd089;
  font-style: normal;
}

.code {
  display: inline-block;
  margin-top: 8px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px dashed rgba(255, 255, 255, 0.45);
  padding: 6px 12px;
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.promo img {
  width: 180px;
  height: 140px;
  object-fit: cover;
  border-radius: 18px;
  margin: 0 auto;
  position: relative;
  border: 3px solid rgba(255, 255, 255, 0.25);
}

.promo-right {
  text-align: right;
  position: relative;
}

.promo-right p {
  margin: 0 0 12px;
  font-weight: 600;
}

/* ---------- Contact bar ---------- */
.contact-bar {
  background: var(--cream-200);
  border-radius: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  width: 100%;
  min-width: 0;
}

.cinfo {
  display: flex;
  gap: 12px;
  padding: 22px 18px;
  align-items: flex-start;
}

.cinfo + .cinfo {
  border-left: 1px solid rgba(0, 77, 44, 0.12);
}

.cinfo h3 {
  margin: 0 0 4px;
  font-size: 13px;
  color: var(--ink-500);
  font-weight: 600;
}

.cinfo p,
.cinfo a {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--green-900);
}

.cinfo-ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.cinfo-ico.green {
  background: var(--green-100);
  color: var(--green-800);
}

.cinfo-ico.orange {
  background: var(--orange-100);
  color: var(--orange-600);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-900);
  color: #e7f5ee;
  margin-top: 36px;
  padding: 48px 0 0;
  width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 1fr 1.2fr;
  gap: 28px;
  min-width: 0;
}

.footer-grid > * {
  min-width: 0;
}

.site-footer h3 {
  color: #fff;
  font-size: 16px;
  margin: 0 0 14px;
}

.site-footer p {
  margin: 0 0 14px;
  font-size: 14px;
  color: #c5ddd0;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 8px;
}

.site-footer a {
  color: #c5ddd0;
  font-size: 14px;
}

.site-footer a:hover {
  color: #fff;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  color: #fff;
}

.socials a:hover {
  background: var(--orange-500);
}

.newsletter {
  display: flex;
  gap: 8px;
}

.newsletter input {
  flex: 1;
  min-width: 0;
  border: 0;
  border-radius: 10px;
  padding: 12px 12px;
  font-size: 14px;
}

.newsletter button {
  background: #8fbf4a;
  color: var(--green-950);
  border-radius: 10px;
  padding: 0 14px;
  font-weight: 700;
  min-height: 44px;
}

.newsletter button:hover {
  background: #a3d15c;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

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

.pay span {
  background: #fff;
  color: #1f2937;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 8px;
  border-radius: 6px;
}

.sitemap {
  background: #003824;
  padding: 28px 0 36px;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.sitemap h4 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sitemap a {
  display: block;
  font-size: 13px;
  color: #b7d0c3;
  margin-bottom: 6px;
}

.sitemap a:hover {
  color: #fff;
}

/* ---------- Cart drawer ---------- */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 28, 18, 0.45);
  backdrop-filter: blur(6px);
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(400px, 92vw);
  z-index: 60;
  transform: translateX(110%);
  transition: transform 280ms var(--ease);
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-left: 1px solid rgba(255, 255, 255, 0.7);
}

.drawer.is-open {
  transform: translateX(0);
}

.drawer-foot {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  border-top: 1px solid var(--color-border);
}

.drawer-head button {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 18px;
  color: var(--green-900);
}

.drawer-head {
  padding: 12px 16px 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-border);
}

.drawer-body {
  flex: 1;
  overflow: auto;
  padding: 16px 20px;
}

.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.cart-item img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
}

.qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.qty button {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--green-100);
  color: var(--green-900);
  font-weight: 700;
}

.empty {
  color: var(--ink-500);
  text-align: center;
  padding: 40px 10px;
}

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 20px);
  background: var(--green-900);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transition: 220ms var(--ease);
  font-weight: 600;
  font-size: 14px;
}

.toast.is-on {
  opacity: 1;
  transform: translate(-50%, 0);
}

.search-results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  border-radius: 16px;
  padding: 8px;
  display: none;
  z-index: 30;
  max-height: 320px;
  overflow: auto;
}

.search {
  position: relative;
}

.search-results.is-open {
  display: block;
}

.search-hit {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px;
  border-radius: 12px;
}

.search-hit:hover {
  background: var(--green-50);
}

.search-hit img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.page-hero {
  padding: 48px 0 20px;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 42px;
  color: var(--green-900);
  margin: 0 0 8px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: start;
}

.about-grid img {
  width: 100%;
  border-radius: 28px;
  height: 360px;
  object-fit: cover;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid,
  .sitemap-grid,
  .contact-bar,
  .promo {
    grid-template-columns: 1fr 1fr;
  }
  .site-header .wrap {
    gap: 12px;
  }
  .nav {
    display: none;
  }
  .menu-toggle {
    display: grid;
  }
  .nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(var(--header-h) + 8px);
    left: 20px;
    right: 20px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
    z-index: 20;
  }
}

@media (max-width: 860px) {
  .hero-grid,
  .split,
  .about-grid {
    grid-template-columns: 1fr;
  }
  .hero-photo img {
    height: 320px;
  }
  .rating-card {
    right: 12px;
    left: 12px;
    width: auto;
    bottom: 16px;
  }
  .search {
    display: none;
  }
  .header-cart span:last-child {
    display: none;
  }
  .promo,
  .contact-bar,
  .footer-grid,
  .sitemap-grid {
    grid-template-columns: 1fr;
  }
  .cinfo + .cinfo {
    border-left: 0;
    border-top: 1px solid rgba(0, 77, 44, 0.12);
  }
  .promo-right,
  .promo {
    text-align: left;
  }
  .section-head .view-all {
    position: static;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .trust-row {
    grid-template-columns: 1fr;
  }
  .brand img {
    width: 48px;
    height: 48px;
  }
  .brand-text strong,
  .brand-text span {
    font-size: 16px;
  }
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}

@media (min-width: 861px) {
  .rating-card {
    top: 46%;
    bottom: auto;
    right: 12px;
    left: auto;
    width: 168px;
  }
}

/* ---------- Scroll reveals ---------- */
.reveal {
  opacity: 0;
  transform: translate3d(0, 36px, 0);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
  transition-delay: var(--d, 0ms);
}

.reveal-left { transform: translate3d(-40px, 16px, 0); }
.reveal-right { transform: translate3d(40px, 16px, 0); }
.reveal-scale { transform: scale(0.92) translate3d(0, 20px, 0); }

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.product-card,
.cat-card,
.t-card,
.panel {
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), opacity 0.75s var(--ease);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .blob,
  .hero-shape,
  .hero-photo,
  .hero-copy h1 em,
  .leaf,
  .marquee-track,
  .btn,
  .product-card,
  .cat-card,
  .drawer,
  .overlay,
  .reveal {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
    -webkit-text-fill-color: unset;
  }
}
