  @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

  :root {
    --home-green: #5ea426;
    --home-green-dark: #447a1b;
    --home-bg: linear-gradient(180deg, #eef6e8 0%, #f4f7fb 35%, #f7f8fc 100%);
    --home-text: #1f2630;
    --home-muted: #6c7380;
    --home-line: #e9edf3;
    --home-card: #ffffff;
    --home-yellow: #f5cf20;
    --home-shadow: 0 14px 30px rgba(21, 37, 56, 0.1);
    --home-radius: 18px;
  }

  .home-modern,
  .home-modern * {
    font-family: 'Plus Jakarta Sans', sans-serif;
  }

  .home-modern {
    background: var(--home-bg);
    color: var(--home-text);
    min-height: 100vh;
    padding-bottom: 88px;
  }

  .home-shell {
    width: min(1120px, calc(100% - 20px));
    margin: 0 auto;
  }

  .home-topbar {
    position: sticky;
    top: 0;
    z-index: 30;
    margin-bottom: 12px;
    background: rgba(94, 164, 38, 0.94);
    border-radius: 0 0 16px 16px;
    padding: 12px;
    box-shadow: 0 10px 24px rgba(68, 122, 27, 0.36);
    backdrop-filter: blur(8px);
  }

  .home-topbar-inner {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) 44px;
    gap: 10px;
    align-items: center;
  }

  .home-logo {
    width: 56px;
    height: 44px;
    object-fit: contain;
  }

  .home-search {
    background: #fff;
    border-radius: 999px;
    display: flex;
    align-items: center;
    min-width: 0;
    padding: 6px;
    box-shadow: inset 0 0 0 1px #d9e3d0;
  }

  .home-search input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    font-size: 14px;
    color: #3b4653;
    padding: 8px 12px;
    background: transparent;
  }

  .home-search button {
    border: none;
    border-radius: 999px;
    background: var(--home-green);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 8px 16px;
    cursor: pointer;
  }

  .home-cart {
    height: 44px;
    width: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.17);
    display: grid;
    place-items: center;
    margin-right: 0;
  }

  .home-cart img {
    width: 25px;
    filter: brightness(0) invert(1);
  }

  .home-slider {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background: #d8dee4;
    box-shadow: var(--home-shadow);
  }

  .home-slides {
    display: flex;
    transition: transform 0.45s ease;
  }

  .home-slide {
    min-width: 100%;
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 9;
  }

  .home-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    height: 42px;
    width: 42px;
    border-radius: 12px;
    background: rgba(12, 17, 24, 0.45);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
  }

  .home-slider-btn.prev {
    left: 12px;
  }

  .home-slider-btn.next {
    right: 12px;
  }

  .section-title {
    margin: 26px 4px 14px;
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -0.02em;
  }

  .home-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
    gap: 12px;
  }

  .home-category {
    background: var(--home-card);
    border: 1px solid var(--home-line);
    border-radius: 16px;
    text-align: center;
    padding: 12px 8px;
    box-shadow: 0 6px 14px rgba(20, 32, 48, 0.06);
    cursor: pointer;
    transition: transform 0.18s ease;
  }

  .home-category:active {
    transform: scale(0.98);
  }

  .home-category img {
    width: 50px;
    height: 50px;
    object-fit: contain;
  }

  .home-category p {
    margin: 8px 0 0;
    font-size: 12px;
    font-weight: 600;
    color: #4e5663;
  }

  .home-row-scroll {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 270px);
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: thin;
  }

  .home-product-card {
    background: var(--home-card);
    border-radius: var(--home-radius);
    overflow: hidden;
    border: 1px solid var(--home-line);
    box-shadow: 0 8px 18px rgba(20, 32, 48, 0.08);
    cursor: pointer;
  }

  .home-product-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
  }

  .home-product-body {
    padding: 11px;
  }

  .home-product-name {
    margin: 0;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: -0.01em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .home-farm {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #3b4350;
    font-size: 10px;
    font-weight: 500;
  }

  .home-farm img {
    width: 16px;
    height: 16px;
  }

  .home-metrics {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 8px;
  }

  .home-metrics-label {
    color: var(--home-muted);
    font-size: 12px;
    margin-bottom: 3px;
    display: block;
  }

  .home-metrics strong {
    font-size: 16px;
    line-height: 1;
    letter-spacing: -0.01em;
  }

  .home-metrics strong.price {
    color: var(--home-green-dark);
  }

  .home-sold {
    position: absolute;
    right: 10px;
    top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    box-shadow: 0 8px 14px rgba(185, 28, 28, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 2;
  }

  .home-sold::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fee2e2;
  }

  .home-card-stack {
    position: relative;
  }

  .home-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .home-grid-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--home-line);
    box-shadow: 0 8px 18px rgba(20, 32, 48, 0.06);
    overflow: hidden;
    cursor: pointer;
  }

  .home-grid-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
  }

  .home-grid-card .body {
    padding: 11px;
  }

  .home-grid-card h6 {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    color: #2d3542;
  }

  .home-grid-card .farm,
  .home-grid-card .meta {
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: #4b5360;
  }

  .home-more-wrap {
    margin-top: 14px;
    display: flex;
    justify-content: center;
  }

  .home-more-btn {
    border: none;
    border-radius: 999px;
    background: #1d2330;
    color: #fff;
    padding: 11px 20px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
  }

  .home-wa-box {
    margin-top: 24px;
    background: linear-gradient(140deg, #6aaa2f, #477f1c);
    color: #fff;
    border-radius: 18px;
    box-shadow: var(--home-shadow);
    padding: 18px;
  }

  .home-wa-box p {
    margin: 8px 0 0;
    font-size: 13px;
    line-height: 1.55;
    opacity: 0.94;
  }

  .home-wa-btn {
    margin-top: 12px;
    display: inline-block;
    background: #fff;
    color: #376214;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 800;
    font-size: 13px;
    padding: 10px 14px;
  }

  .home-news-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 280px);
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .home-news-card,
  .home-shipping-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--home-line);
    box-shadow: 0 8px 16px rgba(20, 32, 48, 0.06);
  }

  .home-news-card {
    cursor: pointer;
  }

  .home-news-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
  }

  .home-shipping-slider {
    position: relative;
  }

  .home-shipping-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 1fr);
    gap: 14px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 2px 4px;
    scrollbar-width: none;
  }

  .home-shipping-track::-webkit-scrollbar {
    display: none;
  }

  .home-shipping-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 11px;
    background: rgba(18, 26, 35, 0.55);
    color: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    z-index: 3;
    display: grid;
    place-items: center;
  }

  .home-shipping-nav.left {
    left: 8px;
  }

  .home-shipping-nav.right {
    right: 8px;
  }

  .home-shipping-card {
    position: relative;
    background: linear-gradient(130deg, #72b028 0%, #5f9623 100%);
    border-radius: 24px;
    border: none;
    min-height: 220px;
    box-shadow: 0 14px 24px rgba(42, 70, 18, 0.24);
    isolation: isolate;
  }

  .home-shipping-card::before,
  .home-shipping-card::after {
    content: '';
    position: absolute;
    top: -5%;
    bottom: -5%;
    width: 68px;
    background: rgba(203, 207, 213, 0.9);
    border-radius: 999px;
    z-index: 0;
  }

  .home-shipping-card::before {
    left: 12px;
  }

  .home-shipping-card::after {
    right: 12px;
  }

  .home-shipping-card img {
    position: relative;
    width: auto;
    height: auto;
    max-width: calc(100% - 52px);
    max-height: 100%;
    margin: 0 auto;
    display: block;
    border-radius: 18px;
    object-fit: contain;
    z-index: 1;
  }

  .home-shipping-card .pin {
    position: absolute;
    bottom: 10px;
    width: 12px;
    height: 26px;
    background: #4f7f1e;
    clip-path: polygon(50% 0%, 100% 65%, 50% 100%, 0% 65%);
    z-index: 2;
  }

  .home-shipping-card .pin-left {
    left: 14px;
  }

  .home-shipping-card .pin-right {
    right: 14px;
  }

  .home-news-content {
    padding: 12px;
  }

  .home-news-date {
    font-size: 12px;
    color: #8a909b;
    margin: 0;
  }

  .home-news-title {
    font-size: 14px;
    font-weight: 800;
    margin: 6px 0;
    color: #293140;
  }

  .home-news-sub {
    font-size: 12px;
    color: #59616d;
    line-height: 1.5;
    margin: 0;
  }

  .home-video {
    margin-top: 24px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--home-shadow);
    border: 1px solid var(--home-line);
  }

  .home-testimonials {
    margin-top: 22px;
    background: #fff;
    border: 1px solid var(--home-line);
    box-shadow: var(--home-shadow);
    border-radius: 18px;
    padding: 18px;
  }

  .home-testimonial {
    display: none;
  }

  .home-testimonial.active {
    display: block;
  }

  .home-testimonial-head {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .home-testimonial img {
    width: 66px;
    height: 66px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #edf4e5;
  }

  .home-testimonial p {
    margin-top: 12px;
    font-size: 13px;
    color: #46505d;
    line-height: 1.65;
  }

  .home-testimonial h6 {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    color: #202734;
    line-height: 1.5;
  }

  .home-testimonial-btn {
    border: none;
    border-radius: 999px;
    background: var(--home-green);
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    padding: 8px 14px;
    margin-top: 12px;
    cursor: pointer;
  }

  .home-about {
    margin-top: 24px;
    background: linear-gradient(165deg, #ffffff 0%, #f8fbf3 100%);
    border: 1px solid #e4ead7;
    border-radius: 24px;
    box-shadow: 0 16px 30px rgba(22, 36, 54, 0.08);
    padding: 22px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
  }

  .home-about::before {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    right: -90px;
    top: -120px;
    background: radial-gradient(circle, rgba(106, 170, 47, 0.25), rgba(106, 170, 47, 0));
    pointer-events: none;
  }

  .home-about-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    margin-top: 10px;
  }

  .home-about-badge {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #3f6e1b;
    background: #ebf5df;
    border: 1px solid #d9ebc6;
    border-radius: 999px;
    padding: 5px 10px;
  }

  .home-about .logo {
    width: 50px;
    height: 50px;
    margin-bottom: 0;
  }

  .home-about-copy {
    margin-top: 10px;
  }

  .home-about p {
    font-size: 14px;
    line-height: 1.72;
    color: #47515f;
    letter-spacing: -0.01em;
  }

  .home-footer-links {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
  }

  .home-footer-links a {
    color: #345f15;
    text-decoration: none;
    border: 1px solid #d9e8c9;
    background: #f5faee;
    padding: 7px 11px;
    border-radius: 999px;
  }

  .home-about-social-title {
    margin-top: 16px;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 600;
    color: #3e4754;
  }

  .home-social {
    margin-top: 12px;
    display: flex;
    gap: 10px;
  }

  .home-social button,
  .home-social a {
    border: none;
    height: 42px;
    width: 42px;
    border-radius: 12px;
    background: #eef2f6;
    box-shadow: inset 0 0 0 1px #dce4ec;
    display: grid;
    place-items: center;
    cursor: pointer;
    text-decoration: none;
  }

  .home-social img {
    width: 21px;
    height: 21px;
  }

  .home-copy {
    margin-top: 16px;
    font-size: 14px;
    color: #7a818d;
    padding-top: 12px;
    border-top: 1px solid #e4ead7;
  }

  .home-headline-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 26px;
    margin-bottom: 14px;
  }

  .home-headline-row h2 {
    margin: 0;
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -0.02em;
  }

  .home-headline-row a {
    color: #3f6e1b;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
  }

  @media (max-width: 768px) {
    .home-shell {
      width: calc(100% - 16px);
    }

    .home-topbar-inner {
      grid-template-columns: 44px minmax(0, 1fr) 36px;
      gap: 8px;
    }

    .home-logo {
      width: 40px;
      height: 32px;
    }

    .home-search input {
      font-size: 13px;
      padding: 8px 10px;
    }

    .home-search button {
      font-size: 12px;
      padding: 8px 10px;
      flex-shrink: 0;
    }

    .home-cart {
      width: 36px;
      height: 36px;
      border-radius: 10px;
    }

    .home-cart img {
      width: 20px;
    }

    .section-title,
    .home-headline-row h2 {
      font-size: 18px;
    }

    .home-row-scroll {
      grid-auto-columns: minmax(210px, 240px);
    }

    .home-metrics strong {
      font-size: 15px;
    }

    .home-shipping-track {
      grid-auto-columns: minmax(240px, 86%);
    }

    .home-shipping-card {
      min-height: 210px;
    }

    .home-shipping-nav {
      width: 34px;
      height: 34px;
      font-size: 20px;
    }

    .home-about {
      padding: 18px;
      border-radius: 20px;
    }

    .home-about p {
      font-size: 15px;
      line-height: 1.68;
    }

    .home-copy {
      font-size: 12px;
    }

    .home-testimonial-head {
      align-items: flex-start;
    }

    .home-testimonial img {
      width: 58px;
      height: 58px;
    }
  }

  @media (max-width: 420px) {
    .home-topbar {
      padding: 10px 8px;
    }

    .home-topbar-inner {
      grid-template-columns: 38px minmax(0, 1fr) 32px;
      gap: 6px;
    }

    .home-logo {
      width: 34px;
      height: 28px;
    }

    .home-search {
      padding: 5px;
    }

    .home-search input {
      font-size: 12px;
      padding: 7px 8px;
    }

    .home-search button {
      font-size: 11px;
      padding: 7px 9px;
      min-width: 46px;
    }
  }
