/* ===== GLOBAL & TOKENS ===== */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

:root {
  --bg-soft: #e6f7e7; /* latar navbar + awal hero */
  --text: #0b3b22;
  --muted: #6b7280;

  --nav-cta: #00790d; /* CTA di NAVBAR */
  --nav-cta-dark: #055a0d;

  --cta: #00aa13; /* CTA utama (hero/buttons) */
  --cta-dark: #02890f;

  --radius: 14px;
  --shadow-cta: 0 8px 18px rgba(0, 170, 19, 0.22);
  --shadow-cta-hover: 0 12px 26px rgba(0, 170, 19, 0.28);
}

* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

/* ===== CONTAINER ===== */
.ok-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 16px 20px;
}

/* ===== GENERIC BUTTONS ===== */
.ok-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease,
    color 0.2s ease, border-color 0.2s ease;
}
.ok-btn:hover {
  transform: translateY(-1px);
}

.ok-btn--primary {
  background: var(--cta);
  color: #fff;
  box-shadow: var(--shadow-cta);
}
.ok-btn--primary:hover {
  background: var(--cta-dark);
  box-shadow: var(--shadow-cta-hover);
}

.ok-btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(0, 0, 0, 0.12);
}
.ok-btn--ghost:hover {
  border-color: rgba(0, 0, 0, 0.22);
}

/* ===== NAVBAR ===== */
.ok-header {
  background: var(--bg-soft);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

/* baris fleksibel: logo kiri, nav kanan, tetap satu baris */
.ok-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap; /* cegah turun baris */
}

/* LOGO */
.ok-logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}
.ok-logo img {
  height: 40px;
  width: auto;
  display: block;
}

/* NAV CLUSTER */
.ok-nav {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}
.ok-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 32px;
}
.ok-nav-list a {
  text-decoration: none;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s ease, transform 0.2s ease;
}
.ok-nav-list a:hover {
  color: var(--text);
  transform: translateY(-1px);
}
.ok-nav-list a.active {
  color: var(--nav-cta);
  font-weight: 700;
}

/* CTA NAVBAR */
.ok-btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--nav-cta);
  color: #fff;
  padding: 12px 22px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(0, 121, 13, 0.18);
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.ok-btn-cta:hover {
  background: var(--nav-cta-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 121, 13, 0.22);
}

/* TOGGLE (mobile) */
.ok-nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.ok-nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: #1f2937;
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ===== HERO ===== */
.ok-hero {
  background: linear-gradient(
    180deg,
    var(--bg-soft) 0%,
    rgba(230, 247, 231, 0.9) 45%,
    #ffffff 100%
  );
  padding: 56px 0 24px;
}
.ok-hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
}

/* Hero text */
.ok-eyebrow {
  margin: 0 0 10px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.4px;
  color: var(--nav-cta);
}
.ok-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.18;
  font-weight: 700;
  color: #0b3b22;
}
.ok-subtitle {
  margin: 0 0 22px;
  font-size: clamp(14px, 2vw, 18px);
  color: #2b3f33;
  opacity: 0.9;
}
.ok-hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero media – sesuai request: TANPA bingkai */
.ok-hero__media {
  position: relative;
}
.ok-hero__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0; /* no rounded */
  box-shadow: none; /* no shadow */
}

/* ===== FEATURE STRIP (ornament bawah hero) ===== */
.ok-feature-strip {
  background: #fff;
  padding: 12px 0 32px;
}
.ok-feature-strip__img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.9;
}

/* ===== FOOTER (ringkas placeholder) ===== */
.site-footer {
  position: relative;
  background: #0b3b22;
  color: #e6f7e7;
}
.footer-inner {
  position: relative;
  z-index: 1;
}
.footer-cols {
  display: grid;
  gap: 24px;
  grid-template-columns: 2fr 2fr 1.2fr;
}
.footer-brand p {
  margin: 0.4rem 0 0;
  opacity: 0.9;
}
.footer-contact h4,
.footer-links h4 {
  margin: 0 0 0.4rem;
}
.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links a {
  color: #e6f7e7;
  text-decoration: none;
  opacity: 0.9;
}
.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}
.footer-copy {
  margin-top: 18px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  opacity: 0.8;
}

/* ===== RESPONSIVE TUNING ===== */
/* sebelum masuk mode mobile, rapatkan jarak agar tidak wrap */
@media (max-width: 1120px) {
  .ok-nav {
    gap: 20px;
  }
  .ok-nav-list {
    gap: 22px;
  }
  .ok-btn-cta {
    padding: 10px 18px;
  }
}

/* mobile: nav menjadi panel, hero menjadi 1 kolom */
@media (max-width: 980px) {
  /* NAV: panel */
  .ok-nav {
    position: fixed;
    right: 20px;
    top: 72px;
    background: var(--bg-soft);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    min-width: 260px;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 120;
  }
  .ok-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .ok-nav-list {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .ok-btn-cta {
    width: 100%;
    text-align: center;
  }
  .ok-nav-toggle {
    display: inline-block;
  }
  .ok-container {
    padding: 14px 20px;
  }

  /* Toggle animation */
  .ok-nav-toggle.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }
  .ok-nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .ok-nav-toggle.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }

  /* HERO grid -> single column */
  .ok-hero__inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .ok-hero {
    padding: 40px 0 16px;
  }
  .ok-hero__content {
    text-align: center;
  }
  .ok-hero__cta {
    justify-content: center;
  }

  /* FOOTER grid */
  .footer-cols {
    grid-template-columns: 1fr;
  }
}

/* ===== UTILITIES ===== */
img {
  max-width: 100%;
  height: auto;
}

/* ===== ABOUT SECTION ===== */
.ok-about {
  position: relative;
  background: url("../img/imgbghome.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 80px 20px; /* lebih pendek */
  min-height: 360px; /* tidak memanjang */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ok-about__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 0;
}

.ok-about .ok-container {
  display: block !important;
}
.ok-about__content {
  position: relative;
  z-index: 1;
  display: block !important;
  max-width: 750px;
  margin: 0 auto;
}
.ok-about__content h2 {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 18px;
}
.ok-about__content p {
  font-size: clamp(14px, 2vw, 18px);
  line-height: 1.8;
  opacity: 0.9;
  margin: 0;
}

@media (max-width: 768px) {
  .ok-about {
    padding: 60px 20px;
    min-height: 320px;
  }
  .ok-about__content h2 {
    font-size: 24px;
    margin-bottom: 14px;
  }
  .ok-about__content p {
    font-size: 15px;
    line-height: 1.6;
  }
}

/* ===== PARTNER SECTION ===== */
.ok-partners {
  --gap: 56px;
  --speed: 24s;
  background: #fff;
  padding: 48px 0 32px;
}
.ok-partners .ok-container {
  display: block;
  text-align: center;
  padding-top: 12px;
}

.ok-eyebrow {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #00790d;
}
.ok-partners__title {
  margin: 8px 0 10px;
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 700;
  color: #0b3b22;
}
.ok-partners__desc {
  margin: 0 auto 18px;
  max-width: 720px;
  font-size: clamp(14px, 2vw, 17px);
  color: #2b3f33;
  opacity: 0.9;
}
.ok-partners__cta {
  display: inline-flex;
  margin: 8px auto 22px;
}

/* ===== MARQUEE ===== */
.ok-partners__rail {
  position: relative;
  overflow: hidden;
  padding: 12px 0;
  mask-image: linear-gradient(
    to right,
    transparent 0,
    black 6%,
    black 94%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    black 6%,
    black 94%,
    transparent 100%
  );
}

.ok-partners__track {
  display: flex;
  gap: 0;
  will-change: transform;
  animation: ok-marquee var(--speed, 24s) linear infinite;
  transform: translate3d(0, 0, 0);
}

.ok-partners__group {
  display: inline-flex;
  align-items: center;
  column-gap: var(--gap, 56px);
  flex: 0 0 auto;
  min-width: max-content;
  padding-right: var(--gap, 56px);
}

/* Logo */
.ok-partners__group img {
  height: 42px;
  width: auto;
  flex: 0 0 auto;
  object-fit: contain;
  filter: saturate(0.95) contrast(0.98);
  opacity: 0.95;
  user-select: none;
  pointer-events: none;
  image-rendering: -webkit-optimize-contrast;
}

.ok-partners__rail:hover .ok-partners__track {
  animation-play-state: paused;
}

@keyframes ok-marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .ok-partners {
    padding: 38px 0 24px;
  }
  .ok-partners__group {
    column-gap: 36px;
    padding-right: 36px;
  }
  .ok-partners__group img {
    height: 34px;
  }
}

/* Motion reduce */
@media (prefers-reduced-motion: reduce) {
  .ok-partners__track {
    animation: none;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .ok-partners {
    padding: 38px 0 24px;
  }
  .ok-partners__group {
    gap: 36px;
  }
  .ok-partners__group img {
    height: 34px;
  }
}

/* Aksesibilitas */
@media (prefers-reduced-motion: reduce) {
  .ok-partners__track {
    animation: none;
  }
}

/* ===== PRODUCTS ===== */
.ok-products {
  background: #fff;
  padding: 42px 0 36px;
  text-align: center;
}

.ok-products .ok-container {
  display: block;
  text-align: center;
}

.ok-products__title {
  margin: 0 0 22px;
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  color: #0b3b22;
}

.ok-products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 22px;
}

/* Card */
.ok-product {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 38 / 15;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #000;
  isolation: isolate;
  transition: transform 0.2s ease;
}

/* Overlay gelap */
.ok-product::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(0, 0, 0, 0.28);
  z-index: 0;
  transition: background 0.25s ease;
}
.ok-product:hover::before {
  background: rgba(0, 0, 0, 0.55);
}

/* Teks kategori */
.ok-product span {
  position: relative;
  z-index: 1;
  font-weight: 700;
  font-size: clamp(16px, 2.6vw, 28px);
  letter-spacing: 0.3px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease;
}
.ok-product:hover span {
  transform: scale(1.07);
}

/* Gambar per kategori */
.ok-product--sayur {
  background-image: url("../img/sayurorganik.png");
}
.ok-product--buah {
  background-image: url("../img/buahbuahan.png");
}
.ok-product--frozen {
  background-image: url("../img/frozenfood.png");
}
.ok-product--package {
  background-image: url("../img/packagefood.png");
}
.ok-product--juice {
  background-image: url("../img/okayjuice.png");
}
.ok-product--mealplan {
  background-image: url("../img/madesan.png");
}

/* Deskripsi & CTA */
.ok-products__desc {
  max-width: 860px;
  margin: 12px auto 16px;
  color: #2b3f33;
  opacity: 0.9;
  font-size: clamp(14px, 2vw, 16.5px);
  line-height: 1.7;
}
.ok-products__cta {
  display: inline-flex;
  margin-top: 8px;
}

/* Responsif */
@media (max-width: 980px) {
  .ok-products__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 600px) {
  .ok-products__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* ===== CLASS SECTION ===== */
.ok-class {
  background: #fff;
  padding: 42px 0 36px;
}

.ok-class__wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr; /* teks kiri, gambar kanan */
  align-items: center;
  gap: 28px;
}

/* ===== TEKS KIRI ===== */
.ok-class__text h2 {
  margin: 0 0 12px;
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 700;
  color: #0b3b22;
  line-height: 1.25;
}
.ok-class__text p {
  margin: 0 0 18px;
  font-size: clamp(14px, 2vw, 16.5px);
  color: #2b3f33;
  opacity: 0.9;
  line-height: 1.75;
}

/* ===== GAMBAR KANAN (tanpa shadow/frame putih) ===== */
.ok-class__media {
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.ok-class__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 16px;
  margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .ok-class__wrap {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .ok-class__text {
    text-align: left;
  }
}

/* ===== TESTIMONIALS SECTION (FINAL RATA KIRI + NAV KANAN) ===== */
.ok-testimonials {
  background: var(--bg-soft); /* #E6F7E7 */
  padding: 48px 0 42px;
}

/* pastikan container vertikal */
.ok-testimonials .ok-container {
  display: block;
}

/* ===== HEADER ===== */
.ok-t-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

/* Judul dan garis di kiri */
.ok-t-title {
  text-align: left;
}
.ok-t-title h2 {
  margin: 0 0 10px;
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 700;
  color: #0b3b22;
  line-height: 1.25;
}
.ok-t-underline {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
}
.ok-t-underline i {
  display: block;
  height: 4px;
  border-radius: 4px;
  background: #a7e3ba;
  width: 28px;
}
.ok-t-underline i:nth-child(2) {
  background: #00aa13;
  width: 36px;
}

/* Tombol nav kanan */
.ok-t-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ok-t-btn {
  border: 0;
  cursor: pointer;
  padding: 10px 14px;
  border-radius: 28px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease,
    color 0.2s ease;
}
.ok-t-btn--ghost {
  background: #fff;
  color: #0b3b22;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
.ok-t-btn--primary {
  background: #00aa13;
  color: #fff;
  box-shadow: 0 10px 22px rgba(0, 170, 19, 0.22);
}
.ok-t-btn:hover {
  transform: translateY(-1px);
}

/* ===== GRID CARD ===== */
.ok-t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 10px;
}
.ok-t-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 22px 22px 18px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  text-align: left;
}

/* Isi card */
.ok-t-quote {
  display: inline-flex;
  margin-bottom: 10px;
}
.ok-t-text {
  color: #2b3f33;
  opacity: 0.9;
  line-height: 1.7;
  margin: 0 0 18px;
  font-size: clamp(14px, 2vw, 16.5px);
}
.ok-t-user {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ok-t-avatar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #a7e3ba;
  display: inline-block;
  flex: 0 0 48px;
}
.ok-t-meta strong {
  display: block;
  color: #0b3b22;
}
.ok-t-meta small {
  color: #6b7280;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .ok-t-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .ok-t-nav {
    margin-top: 6px;
  }
  .ok-t-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .ok-t-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== COMMUNITY SECTION ===== */
.ok-community {
  background: #fff;
  padding: 60px 0 50px;
}

.ok-community__wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}

.ok-community__media {
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
}

.ok-community__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 16px;
  margin: 0;
}

/* ==== TEKS KANAN ==== */
.ok-community__text h2 {
  margin: 0 0 16px;
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 700;
  color: #0b3b22;
  line-height: 1.25;
}
.ok-community__text ul {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}
.ok-community__text li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: clamp(14px, 2vw, 16.5px);
  color: #2b3f33;
  line-height: 1.7;
}
.ok-community__text li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #00aa13;
  font-weight: 700;
}

/* ==== RESPONSIVE ==== */
@media (max-width: 980px) {
  .ok-community__wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .ok-community__media {
    order: 1;
  }
  .ok-community__text {
    order: 2;
    text-align: left;
  }
}

/* ===== FAQs STYLES ===== */
.ok-faqs .ok-container {
  display: block;
}

.ok-faq-item {
  border-radius: 14px;
  overflow: hidden;
}

.ok-faq-btn {
  border-radius: 14px;
  background: #fff;
  color: #0b3b22;
  font-weight: 600;
  padding: 16px 18px;
}

.ok-faq-btn:not(.collapsed) {
  background: #e6f7e7;
  color: #0b3b22;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.ok-faq-body {
  background: #e6f7e7;
  color: #2b3f33;
  padding: 16px 20px 18px;
}

.ok-faq-item.shadow-sm {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08) !important;
}

@media (max-width: 768px) {
  #faqs h2 {
    font-size: 24px;
  }
}

/* ===== FOOTER ===== */
.ok-footer {
  background: #005e0a;
  color: #eaf6ec;
  padding: 28px 0 20px;
}
.ok-footer .ok-container {
  display: block;
}

/* ===== TOP LOGO ===== */
.ok-foot-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 16px;
}
.ok-foot-top img {
  height: 34px;
  width: auto;
  display: block;
  filter: brightness(1.05) saturate(1.05);
}

/* ===== 3 COLUMNS ===== */
.ok-foot-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1.2fr;
  gap: 36px;
  align-items: start;
  margin-bottom: 14px;
}

/* Profil */
.ok-foot-desc {
  max-width: 640px;
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.92;
  margin: 0;
}

/* Kontak */
.ok-foot-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ok-foot-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  padding-bottom: 14px;
}

.ok-foot-ic {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.ok-foot-list a {
  color: #eaf6ec;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  display: inline-flex;
  align-items: center;
}

.ok-foot-list a::after {
  content: "";
  position: absolute;
  left: -28px;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: #0fae2a;
  opacity: 0.6;
  border-radius: 2px;
}

/* Alamat + Map */
.ok-foot-addr {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.ok-foot-addr p {
  margin: 0;
  line-height: 1.7;
  opacity: 0.92;
}
.ok-foot-map img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  border: none;
}

/* ===== BOTTOM BAR ===== */
.ok-foot-bottom {
  text-align: center;
  color: rgba(234, 246, 236, 0.9);
}
.ok-foot-divider {
  display: block;
  height: 2px;
  width: 520px;
  max-width: 75%;
  margin: 18px auto 12px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 2px;
}
.ok-foot-bottom p {
  margin: 4px 0 0;
  font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .ok-foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}
@media (max-width: 640px) {
  .ok-foot-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .ok-foot-map img {
    height: 160px;
  }
}

/* ===== ABOUT PAGE – OPENING SECTION ===== */
.page-about .ok-header {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-about .ok-header .ok-container {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
}

.page-about main .ok-container,
.page-about .ok-about-opening .ok-container {
  display: block !important;
}

/* Opening Section */
.ok-about-opening {
  background: #ffffff;
  padding: 90px 20px 70px;
  text-align: center;
}

.ok-about-opening .ok-container {
  max-width: 820px;
  margin: 0 auto;
}

.ok-about-opening .ok-eyebrow {
  color: #00aa13;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.4px;
  margin-bottom: 12px;
}

.ok-about-opening h2 {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  color: #0b3b22;
  line-height: 1.35;
  margin: 0 0 18px;
}

.ok-about-opening .ok-about-desc {
  font-size: clamp(15px, 2vw, 17px);
  color: #2b3f33;
  line-height: 1.8;
  opacity: 0.9;
  max-width: 720px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
  .ok-about-opening {
    padding: 70px 16px 60px;
  }
  .ok-about-opening h2 {
    font-size: 24px;
  }
  .ok-about-opening .ok-about-desc {
    font-size: 15px;
    line-height: 1.6;
  }
}

/* ===== FOUNDER BACKGROUND ===== */
.page-about .ok-founder .ok-container {
  display: grid !important;
}

.ok-founder {
  background: #ffffff;
  padding: 56px 20px 72px;
}

.ok-founder .ok-container {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.ok-founder__media img {
  display: block;
  width: 80%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: none;
  background: none;
  border: none;
}

.ok-founder__text h2 {
  margin: 0 0 12px;
  font-weight: 700;
  color: #0b3b22;
  font-size: clamp(24px, 4vw, 36px);
  line-height: 1.25;
}
.ok-founder__text p {
  margin: 0;
  color: #2b3f33;
  opacity: 0.9;
  line-height: 1.8;
  font-size: clamp(15px, 2vw, 17px);
}

/* Responsive */
@media (max-width: 980px) {
  .ok-founder .ok-container {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .ok-founder__text {
    text-align: left;
  }
}

/* ===== FARM SECTION ===== */
.page-about .ok-farm .ok-container {
  display: grid !important;
}

.ok-farm {
  background: #fff;
  padding: 56px 20px 72px;
}

.ok-farm .ok-container {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.ok-farm__text h2 {
  margin: 0 0 14px;
  font-weight: 700;
  color: #0b3b22;
  font-size: clamp(24px, 4vw, 36px);
  line-height: 1.25;
}
.ok-farm__text p {
  margin: 0;
  color: #2b3f33;
  opacity: 0.9;
  line-height: 1.8;
  font-size: clamp(15px, 2vw, 17px);
}

.ok-farm__media {
  margin: 0;
}
.ok-farm__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: none;
  background: none;
  border: none;
}

/* Responsive */
@media (max-width: 980px) {
  .ok-farm .ok-container {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .ok-farm__text {
    text-align: left;
  }
}

/* ===== BENEFIT SECTION ===== */
.page-about .ok-benefit .ok-container {
  display: grid !important;
}

.ok-benefit {
  background: #ffffff;
  padding: 56px 20px 72px;
}

.ok-benefit .ok-container {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.ok-benefit__media {
  margin: 0;
}
.ok-benefit__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: none;
}

.ok-benefit__content h2 {
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 700;
  color: #0b3b22;
  line-height: 1.3;
  margin: 0 0 28px;
}

.ok-benefit__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.ok-benefit__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.ok-benefit__list img {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.ok-benefit__list h3 {
  font-size: 17px;
  font-weight: 600;
  color: #0b3b22;
  margin: 0 0 4px;
}

.ok-benefit__list p {
  font-size: 15px;
  color: #2b3f33;
  opacity: 0.9;
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 980px) {
  .ok-benefit .ok-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .ok-benefit__content {
    text-align: left;
  }
}

/* ===== MILESTONES / STATS SECTION ===== */
.ok-stats {
  position: relative;
  width: 100%;
  padding: 60px 0;
  background: url("../img/leafaboutbg.jpg") center/cover fixed no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
}

.ok-stats__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

/* grid angka */
.ok-stats__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  max-width: 1100px;
  width: 100%;
  padding: 0 20px;
}

.ok-stat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 32px 20px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, background 0.2s ease;
}

.ok-stat:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.1);
}

.ok-stat h3 {
  margin: 0 0 6px;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: #00aa13;
}

.ok-stat p {
  margin: 0;
  font-size: 15px;
  opacity: 0.9;
  color: #f5f5f5;
}

/* Responsive */
@media (max-width: 900px) {
  .ok-stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .ok-stats__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ===== COMMUNITY & CTA (FIXED VERTICAL) ===== */
.ok-commit {
  background: #ffffff;
  padding: 72px 20px 64px;
  text-align: center;
}

.page-about .ok-commit .ok-container {
  display: block !important;
  max-width: 900px;
  margin: 0 auto;
}

.ok-commit .ok-eyebrow {
  color: #00aa13;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
  letter-spacing: 0.4px;
}

.ok-commit h2 {
  margin: 6px 0 14px;
  font-size: clamp(26px, 4.5vw, 40px);
  font-weight: 700;
  color: #0b3b22;
  line-height: 1.25;
}

.ok-commit__desc {
  margin: 0 auto 34px;
  max-width: 760px;
  font-size: 16px;
  line-height: 1.8;
  color: #2b3f33;
  opacity: 0.9;
}

.ok-commit__sub {
  margin: 30px 0 18px;
  font-size: clamp(22px, 3.8vw, 32px);
  font-weight: 700;
  color: #0b3b22;
}

/* Cards */
.ok-cta-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 18px;
  max-width: 880px;
  margin: 0 auto;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.ok-cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 12px;
  border-radius: 12px;
  text-decoration: none;
  background: #f8faf9;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.18s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.ok-cta-card:hover {
  transform: translateY(-3px);
  background: #eef7f0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.ok-cta-card img {
  width: 48px;
  height: 48px;
}

.ok-cta-card span {
  font-weight: 600;
  color: #0b3b22;
  font-size: 15px;
}

/* Responsive */
@media (max-width: 850px) {
  .ok-cta-cards {
    grid-template-columns: 1fr;
  }
}

/* ===== KEGIATAN ===== */
.page-kegiatan .ok-header {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-kegiatan .ok-activity-hero {
  background: #fff;
  padding: 56px 20px 72px;
}

.page-kegiatan .ok-activity-hero .ok-container {
  display: block !important;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.ok-activity-hero__media {
  margin: 0;
}

.ok-activity-hero__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: none;
  background: none;
  border: none;
}

@media (max-width: 768px) {
  .page-kegiatan .ok-activity-hero {
    padding: 44px 16px 60px;
  }

  .page-kegiatan .ok-activity-hero h1 {
    font-size: 26px;
  }
}

.page-kegiatan .ok-events .ok-container {
  display: block !important;
  max-width: 1160px;
  margin: 0 auto;
}

.ok-events {
  background: #fff;
  padding: 40px 20px 64px;
}

.ok-events__title {
  margin: 0 0 18px;
  font-size: clamp(22px, 3.8vw, 32px);
  font-weight: 700;
  color: #0b3b22;
}

.ok-events__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ok-event {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
  transition: transform 0.18s ease, box-shadow 0.2s ease;
}
.ok-event:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.09);
}

.ok-event__media {
  margin: 0;
}
.ok-event__media img {
  display: block;
  width: 100%;
  height: auto;
  border: none;
  border-radius: 14px 14px 0 0;
  box-shadow: none;
  object-fit: cover;
}

.ok-event__body {
  padding: 16px 16px 18px;
}

.ok-event__meta {
  margin: 0 0 8px;
  font-size: 13px;
  color: #6b7280;
}

.ok-event__title {
  display: inline-block;
  margin: 0 0 8px;
  font-weight: 700;
  color: #00aa13;
  text-decoration: none;
  font-size: 18px;
  line-height: 1.35;
}
.ok-event__title:hover {
  text-decoration: underline;
}

.ok-event__desc {
  margin: 0 0 12px;
  color: #2b3f33;
  opacity: 0.9;
  font-size: 15px;
  line-height: 1.7;
}

.ok-event__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
  color: #00aa13;
  text-decoration: none;
}
.ok-event__link::after {
  content: "→";
  font-weight: 700;
  transform: translateY(1px);
}

.ok-events__caption {
  margin: 18px auto 0;
  font-size: 15px;
  line-height: 1.8;
  color: #2b3f33;
  opacity: 0.9;
  text-align: center;
  max-width: 900px;
}

/* Responsive */
@media (max-width: 1024px) {
  .ok-events__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 680px) {
  .ok-events__grid {
    grid-template-columns: 1fr;
  }
}

/* ===== EVENT CTA SECTION ===== */
.ok-event-cta {
  background: #ffffff;
  padding: 64px 20px 80px;
  text-align: center;
}

.ok-event-cta .ok-container {
  display: block !important;
  max-width: 800px;
  margin: 0 auto;
}

.ok-event-cta h2 {
  font-size: clamp(20px, 3.6vw, 30px);
  font-weight: 700;
  color: #0b3b22;
  line-height: 1.4;
  margin: 0 0 26px;
}

.ok-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: #00aa13;
  color: #ffffff;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.ok-btn-whatsapp::after {
  content: "→";
  font-weight: 700;
  transform: translateY(1px);
}

.ok-btn-whatsapp:hover {
  background: #00960f;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .ok-event-cta h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

/* ===== CONTACT FORM SECTION ===== */
.page-kegiatan .ok-form .ok-container {
  display: block !important;
  max-width: 1100px;
  margin: 0 auto;
}

.ok-form {
  background: #fff;
  padding: 24px 20px 80px;
}

.ok-form__grid {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 22px;
}

/* left info card */
.ok-form__info {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 22px 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  height: fit-content;
}
.ok-form__info ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}
.ok-form__info li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 6px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.ok-form__info li:last-child {
  border-bottom: 0;
}
.ok-form__info img {
  width: 24px;
  height: 24px;
  display: block;
  filter: none;
  opacity: 1;
}

.ok-form__info a,
.ok-form__info span {
  color: #0b3b22;
  font-size: 15px;
  text-decoration: none;
}

/* right form card */
.ok-form__card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 22px 22px 26px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}
.ok-form__card h3 {
  margin: 0 0 6px;
  font-weight: 700;
  color: #0b3b22;
  font-size: 22px;
}
.ok-form__desc {
  margin: 0 0 16px;
  color: #2b3f33;
  opacity: 0.9;
  font-size: 14px;
}

.ok-form__fields {
  display: grid;
  gap: 12px;
}
.ok-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ok-form__fields input,
.ok-form__fields textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  color: #0b3b22;
  outline: none;
  background: #ffffff;
}

.ok-form__fields input::placeholder,
.ok-form__fields textarea::placeholder {
  color: #7b8a80;
  opacity: 0.9;
}

.ok-form__fields input:focus,
.ok-form__fields textarea:focus {
  border-color: #00aa13;
  box-shadow: 0 0 0 3px rgba(0, 170, 19, 0.12);
}

.ok-btn-send {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: #00aa13;
  color: #fff;
  font-weight: 600;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.ok-btn-send:hover {
  background: #00960f;
  transform: translateY(-2px);
}

/* responsive */
@media (max-width: 900px) {
  .ok-form__grid {
    grid-template-columns: 1fr;
  }
  .ok-form__info {
    order: 2;
  }
  .ok-form__card {
    order: 1;
  }
  .ok-form__row {
    grid-template-columns: 1fr;
  }
}

/* ===== INPUT SHAKE EFFECT ===== */
@keyframes ok-shake {
  10%,
  90% {
    transform: translateX(-2px);
  }
  20%,
  80% {
    transform: translateX(4px);
  }
  30%,
  50%,
  70% {
    transform: translateX(-6px);
  }
  40%,
  60% {
    transform: translateX(6px);
  }
}

.is-invalid {
  border-color: #e53935 !important;
  box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.12) !important;
  animation: ok-shake 0.45s ease;
}

/* ===== PRODUCT SEARCH BAR ===== */
.page-produk .ok-product-search .ok-container {
  display: flex !important;
  align-items: center;
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}

.ok-product-search {
  background: #fff;
  padding: 20px 20px 28px;
}

/* form */
.ok-search {
  position: relative;
  display: flex;
  align-items: stretch;
  flex: 1;
  height: 44px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
}

.ok-search input {
  flex: 1;
  border: 0;
  outline: none;
  padding: 0 14px 0 40px; /* ruang icon kiri */
  font-size: 14px;
  color: #0b3b22;
  background: transparent;
}

.ok-search__btn {
  border: 0;
  padding: 0 22px;
  background: #00aa13;
  color: #fff;
  font-weight: 600;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.ok-search__btn:hover {
  background: #00960f;
  transform: translateY(-1px);
}

.ok-search__icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  opacity: 0.7;
  background: no-repeat center/18px 18px
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23888888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='8'/><line x1='21' y1='21' x2='16.65' y2='16.65'/></svg>");
}

/* cart summary */
.ok-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 4px 10px 4px 8px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
}

.ok-cart__icon img {
  width: 24px;
  height: 24px;
  display: block;
}

.ok-cart__text {
  display: grid;
  line-height: 1.1;
}
.ok-cart__text small {
  color: #6b7280;
}
.ok-cart__text strong {
  color: #0b3b22;
}

/* responsive */
@media (max-width: 820px) {
  .page-produk .ok-product-search .ok-container {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .ok-cart {
    align-self: flex-end;
  }
}

/* ===== PRODUCT BANNER ===== */
.ok-product-banner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 20px 40px;
}

.ok-product-banner__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

@media (max-width: 820px) {
  .ok-product-banner {
    padding: 12px 16px 24px;
  }
}

/* ===== PRODUCT LIST – SAYURAN ===== */
.page-produk .ok-products .ok-container {
  display: block !important;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.ok-prod-title {
  margin: 10px 0 14px;
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  color: #0b3b22;
}

.ok-prod-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

/* Card */
.ok-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  overflow: hidden;
  padding: 0 0 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Media */
.ok-card__media {
  margin: 0;
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
}
.ok-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: none;
}

/* Text */
.ok-card__name {
  margin: 10px 0 4px;
  font-size: 15px;
  font-weight: 700;
  color: #0b3b22;
  line-height: 1.3;
}
.ok-card__name span {
  display: block;
  font-weight: 500;
  opacity: 0.75;
}
.ok-card__price {
  margin: 0 0 8px;
  font-size: 14px;
  color: #0b3b22;
  opacity: 0.9;
}

/* Quantity */
.ok-card__qty {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 10px;
}
.ok-card__qty button {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
}
.ok-card__qty input {
  width: 44px;
  height: 32px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 8px;
}

/* CTA */
.ok-card__btn {
  width: 85%;
  height: 38px;
  margin: 0 auto;
  border: 0;
  border-radius: 8px;
  background: #00aa13;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.ok-card__btn:hover {
  background: #00960f;
  transform: translateY(-1px);
}

/* Row-2 fade & gradient (collapsed) */
.ok-products:not(.is-expanded) .ok-prod-grid > .ok-card:nth-child(n + 6) {
  opacity: 0.55;
  filter: grayscale(0.08);
  pointer-events: none;
}
.ok-prod-gradient {
  position: relative;
  height: 0;
}
.ok-products:not(.is-expanded) .ok-prod-gradient::after {
  content: "";
  position: absolute;
  inset: auto 0 100% 0;
  height: 110px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 65%);
  pointer-events: none;
}

/* Toggle */
.ok-prod-toggle {
  display: block;
  margin: 16px auto 0;
  padding: 10px 18px;
  border: 0;
  border-radius: 999px;
  background: #00aa13;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}
.ok-products.is-expanded .ok-prod-toggle {
  background: #e8f6ea;
  color: #0b3b22;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.ok-products.is-expanded .ok-prod-grid > .ok-card {
  opacity: 1;
  filter: none;
  pointer-events: auto;
}
.ok-products.is-expanded .ok-prod-gradient {
  display: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .ok-prod-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 680px) {
  .ok-prod-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ok-card__media {
    height: 140px;
  }
}
