 :root {
      --green: #038C65;
      --green-dark: #02684C;
      --green-soft: rgba(3, 140, 101, 0.10);

      --orange: #F27B13;
      --orange-dark: #D95204;
      --orange-soft: rgba(242, 123, 19, 0.12);

      --red: #B91C1C;
      --cream: #FFF8ED;
      --bg: #F6F7F5;
      --card: #FFFFFF;
      --text: #111827;
      --muted: #6B7280;
      --muted-light: #9CA3AF;
      --border: #E5E7EB;

      --shadow-sm: 0 8px 22px rgba(17, 24, 39, 0.06);
      --shadow-md: 0 18px 45px rgba(17, 24, 39, 0.10);
      --shadow-lg: 0 26px 70px rgba(17, 24, 39, 0.16);

      --radius-sm: 14px;
      --radius-md: 20px;
      --radius-lg: 24px;
      --radius-xl: 34px;
      --radius-pill: 999px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--text);
      background:
        radial-gradient(circle at 100% 0%, rgba(3, 140, 101, 0.13), transparent 30%),
        radial-gradient(circle at 0% 18%, rgba(242, 123, 19, 0.12), transparent 28%),
        linear-gradient(180deg, #FFFEFB 0%, var(--bg) 100%);
      line-height: 1.9;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      display: block;
      max-width: 100%;
    }

    .page-wrap {
      position: relative;
      min-height: 100vh;
      padding-bottom: 48px;
    }

    .page-wrap::before {
      content: "";
      position: fixed;
      inset: 0;
      background-image:
        linear-gradient(rgba(17, 24, 39, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 24, 39, 0.035) 1px, transparent 1px);
      background-size: 36px 36px;
      mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 70%);
      pointer-events: none;
      z-index: -1;
    }

    .landing-container {
      width: min(1440px, calc(100% - 28px));
      margin-inline: auto;
    }

    .landing-hero {
      padding: 38px 0 16px;
    }

    .hero-box {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-xl);
      background:
        linear-gradient(135deg, rgba(255,255,255,0.94), rgba(255,255,255,0.80)),
        radial-gradient(circle at 18% 20%, rgba(242, 123, 19, 0.16), transparent 28%),
        radial-gradient(circle at 88% 18%, rgba(3, 140, 101, 0.18), transparent 30%);
      border: 1px solid rgba(255, 255, 255, 0.75);
      box-shadow: var(--shadow-md);
      backdrop-filter: blur(18px);
      padding: clamp(22px, 4vw, 44px);
    }

    .hero-content {
      position: relative;
      z-index: 2;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      height: 38px;
      padding: 0 16px;
      border-radius: var(--radius-pill);
      background: rgba(255, 255, 255, 0.78);
      border: 1px solid rgba(3, 140, 101, 0.14);
      color: var(--green);
      font-size: 12px;
      font-weight: 900;
      box-shadow: var(--shadow-sm);
      margin-bottom: 18px;
    }

    .hero-title {
      margin: 0;
      color: #0F172A;
      font-size: clamp(28px, 5vw, 54px);
      font-weight: 900;
      line-height: 1.35;
      letter-spacing: 0;
    }

    .hero-title span {
      background: linear-gradient(135deg, var(--green), var(--orange-dark));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .hero-text {
      max-width: 780px;
      margin: 16px 0 0;
      color: #4B5563;
      font-size: 14px;
      line-height: 2.15;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 24px;
    }

    .hero-btn {
      height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      padding: 0 20px;
      border-radius: 16px;
      font-size: 13px;
      font-weight: 900;
      transition: all 0.25s ease;
    }

    .hero-btn-primary {
      color: #fff;
      background: linear-gradient(135deg, var(--green), var(--green-dark));
      box-shadow: 0 16px 34px rgba(3, 140, 101, 0.24);
    }

    .hero-btn-primary:hover {
      color: #fff;
      transform: translateY(-2px);
      background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    }

    .hero-btn-light {
      color: var(--text);
      background: rgba(255, 255, 255, 0.86);
      border: 1px solid rgba(229, 231, 235, 0.95);
      box-shadow: var(--shadow-sm);
    }

    .hero-btn-light:hover {
      color: var(--green);
      transform: translateY(-2px);
      background: #fff;
      border-color: rgba(3, 140, 101, 0.28);
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      max-width: 650px;
      margin-top: 26px;
    }

    .hero-stat {
      padding: 15px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.76);
      border: 1px solid rgba(229, 231, 235, 0.88);
      box-shadow: var(--shadow-sm);
    }

    .hero-stat strong {
      display: block;
      color: var(--green);
      font-size: 20px;
      font-weight: 900;
      line-height: 1.3;
    }

    .hero-stat span {
      display: block;
      margin-top: 4px;
      color: var(--muted);
      font-size: 12px;
      font-weight: 700;
    }

    .hero-visual {
      position: relative;
      min-height: 330px;
    }

    .visual-card {
      position: absolute;
      inset: 0;
      margin: auto;
      width: min(340px, 88%);
      height: max-content;
      padding: 16px;
      border-radius: 30px;
      background: rgba(255, 255, 255, 0.82);
      border: 1px solid rgba(255, 255, 255, 0.90);
      box-shadow: 0 30px 80px rgba(17, 24, 39, 0.18);
      backdrop-filter: blur(18px);
      transform: rotate(-3deg);
      z-index: 2;
    }

    .visual-image {
      position: relative;
      aspect-ratio: 1 / 1;
      border-radius: 24px;
      background:
        radial-gradient(circle at 50% 35%, rgba(3, 140, 101, 0.12), transparent 45%),
        linear-gradient(180deg, #fff, #F9FAFB);
      border: 1px solid #EEF2F7;
      display: grid;
      place-items: center;
      overflow: hidden;
    }

    .visual-image i {
      font-size: 88px;
      color: rgba(3, 140, 101, 0.34);
    }

    .visual-caption {
      position: relative;
      display: flex;
      justify-content: space-between;
      gap: 12px;
      align-items: center;
      margin-top: 14px;
      padding: 0 4px;
    }

    .visual-caption strong {
      font-size: 14px;
      font-weight: 900;
    }

    .visual-caption span {
      color: var(--green);
      font-size: 12px;
      font-weight: 900;
    }

    .visual-chip {
      position: absolute;
      z-index: 4;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 10px 14px;
      border-radius: var(--radius-pill);
      background: rgba(255,255,255,0.88);
      border: 1px solid rgba(229,231,235,0.92);
      box-shadow: var(--shadow-sm);
      color: var(--text);
      font-size: 12px;
      font-weight: 900;
      backdrop-filter: blur(12px);
    }

    .visual-chip.one {
      top: 36px;
      right: 8px;
    }

    .visual-chip.two {
      bottom: 52px;
      left: 8px;
      color: var(--orange-dark);
    }

    .section-head {
      text-align: center;
      max-width: 820px;
      margin: 46px auto 22px;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      height: 36px;
      padding: 0 15px;
      border-radius: var(--radius-pill);
      background: var(--green-soft);
      color: var(--green);
      border: 1px solid rgba(3, 140, 101, 0.13);
      font-size: 12px;
      font-weight: 900;
      margin-bottom: 12px;
    }

    .section-title {
      margin: 0;
      color: var(--text);
      font-size: clamp(24px, 3.6vw, 38px);
      font-weight: 900;
      letter-spacing: 0;
      line-height: 1.45;
    }

    .section-desc {
      margin: 12px auto 0;
      max-width: 720px;
      color: var(--muted);
      font-size: 14px;
      line-height: 2.1;
    }

    .filter-panel {
      position: sticky;
      top: 12px;
      z-index: 10;
      margin: 22px 0 24px;
      padding: 12px;
      border-radius: 22px;
      background: rgba(255,255,255,0.80);
      border: 1px solid rgba(229,231,235,0.94);
      box-shadow: 0 14px 42px rgba(17, 24, 39, 0.08);
      backdrop-filter: blur(16px);
    }

    .filter-bar {
      display: flex;
      align-items: center;
      gap: 10px;
      overflow-x: auto;
      padding-bottom: 2px;
      scrollbar-width: thin;
    }

    .filter-btn {
      flex: 0 0 auto;
      height: 42px;
      padding: 0 17px;
      border: 1px solid rgba(229,231,235,0.95);
      border-radius: var(--radius-pill);
      background: #fff;
      color: var(--text);
      font-size: 13px;
      font-weight: 900;
      cursor: pointer;
      white-space: nowrap;
      transition: all 0.25s ease;
      box-shadow: 0 6px 16px rgba(17, 24, 39, 0.04);
    }

    .filter-btn:hover {
      color: var(--green);
      border-color: rgba(3, 140, 101, 0.30);
      transform: translateY(-2px);
    }

    .filter-btn.active {
      color: #fff;
      background: linear-gradient(135deg, var(--green), var(--green-dark));
      border-color: var(--green);
      box-shadow: 0 14px 28px rgba(3, 140, 101, 0.22);
    }

    .products-section {
      padding: 2px 0 28px;
    }

    .product-list {
      --bs-gutter-x: 18px;
      --bs-gutter-y: 18px;
    }

    .product-item {
      transition: opacity 0.18s ease, transform 0.18s ease;
    }

    .product-card {
      position: relative;
      height: 100%;
      overflow: hidden;
      border-radius: var(--radius-lg);
      background: rgba(255,255,255,0.94);
      border: 1px solid rgba(229,231,235,0.94);
      box-shadow: var(--shadow-sm);
      transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    }

    .product-card::before {
      content: "";
      position: absolute;
      inset: 0 0 auto 0;
      height: 4px;
      background: linear-gradient(90deg, var(--green), var(--orange), var(--orange-dark));
      z-index: 3;
    }

    .product-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-md);
      border-color: rgba(3, 140, 101, 0.22);
    }

    .product-image-link {
      display: block;
      position: relative;
      padding: 12px 12px 8px;
      background:
        radial-gradient(circle at top right, rgba(3, 140, 101, 0.08), transparent 42%),
        linear-gradient(180deg, #FAFAFA, #FFFFFF);
    }

    .discount-badge {
      position: absolute;
      top: 12px;
      right: 12px;
      z-index: 5;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      height: 28px;
      padding: 0 10px;
      border-radius: var(--radius-pill);
      color: #fff;
      background: linear-gradient(135deg, var(--orange), var(--orange-dark));
      font-size: 10px;
      font-weight: 900;
      box-shadow: 0 12px 24px rgba(217, 82, 4, 0.24);
    }

    .product-image-box {
      position: relative;
      aspect-ratio: 1 / 1;
      overflow: hidden;
      border-radius: 20px;
      background: #fff;
      border: 1px solid #EEF2F7;
      display: grid;
      place-items: center;
      box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.78),
        0 10px 24px rgba(17,24,39,0.05);
    }

    .product-image-box img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      padding: 6px;
      transition: transform 0.38s ease;
    }

    .product-card:hover .product-image-box img {
      transform: scale(1.05);
    }

    .no-image {
      display: grid;
      place-items: center;
      width: 100%;
      height: 100%;
      color: rgba(3, 140, 101, 0.35);
      font-size: 54px;
    }

    .product-body {
      display: flex;
      flex-direction: column;
      padding: 0 14px 14px;
    }

    .product-category {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--green);
      font-size: 11px;
      font-weight: 900;
      margin: 2px 0 6px;
    }

    .product-title {
      margin: 0 0 8px;
      color: #111827;
      font-size: 14px;
      font-weight: 900;
      line-height: 1.8;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      min-height: 50px;
      transition: color 0.2s ease;
    }

    .product-title:hover {
      color: var(--green);
    }

    .product-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      margin-bottom: 8px;
    }

    .meta-item {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      color: var(--muted);
      font-size: 11px;
      font-weight: 800;
    }

    .stock-status {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 11px;
      font-weight: 900;
      white-space: nowrap;
    }

    .stock-status.available {
      color: var(--green);
    }

    .stock-status.unavailable {
      color: var(--red);
    }

    .product-desc {
      margin: 0 0 12px;
      color: #6B7280;
      font-size: 12px;
      line-height: 1.95;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      min-height: 46px;
    }

    .product-footer {
      margin-top: auto;
      padding-top: 10px;
      border-top: 1px solid #F1F5F9;
    }

    .price-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      min-height: 22px;
      margin-bottom: 6px;
    }

    .discount-percent {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      height: 24px;
      padding: 0 8px;
      border-radius: var(--radius-pill);
      background: var(--orange-soft);
      color: var(--orange-dark);
      font-size: 10px;
      font-weight: 900;
    }

    .old-price {
      color: var(--muted-light);
      font-size: 11px;
      font-weight: 800;
      text-decoration: line-through;
    }

    .price-row {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 10px;
    }

    .current-price {
      display: flex;
      align-items: baseline;
      gap: 6px;
      flex-wrap: wrap;
    }

    .current-price-value {
      color: #0F172A;
      font-size: 19px;
      font-weight: 900;
      line-height: 1.15;
    }

    .price-unit {
      color: var(--muted);
      font-size: 11px;
      font-weight: 800;
    }

    .shipping-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      color: var(--green);
      font-size: 11px;
      font-weight: 900;
      white-space: nowrap;
    }

    .description-section {
      padding: 26px 0 52px;
    }

    .description-box {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-xl);
      background: rgba(255,255,255,0.90);
      border: 1px solid rgba(229,231,235,0.94);
      box-shadow: var(--shadow-md);
      backdrop-filter: blur(16px);
      padding: clamp(22px, 3.6vw, 40px);
    }

    .description-box::before {
      content: "";
      position: absolute;
      inset: 0 0 auto 0;
      height: 4px;
      background: linear-gradient(90deg, var(--green), var(--orange), var(--orange-dark));
    }

    .description-title {
      display: flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 18px;
      color: #111827;
      font-size: clamp(21px, 2.6vw, 30px);
      font-weight: 900;
      line-height: 1.6;
    }

    .description-title i {
      color: var(--green);
    }

    .description-content {
      color: #4B5563;
      font-size: 14px;
      line-height: 2.2;
    }

    .description-content p {
      margin-bottom: 12px;
    }

    .empty-box {
      text-align: center;
      padding: 30px 18px;
      color: var(--muted);
      font-size: 14px;
      background: rgba(255,255,255,0.76);
      border: 1px dashed #D1D5DB;
      border-radius: 22px;
    }

    .empty-box i {
      display: block;
      margin-bottom: 10px;
      color: rgba(3, 140, 101, 0.36);
      font-size: 42px;
    }

    @media (max-width: 991px) {
      .landing-hero {
        padding-top: 26px;
      }

      .hero-visual {
        min-height: 280px;
        margin-top: 16px;
      }
    }

    @media (max-width: 767px) {
      .landing-container {
        width: min(100% - 18px, 1440px);
      }

      .hero-box {
        border-radius: 24px;
      }

      .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
      }

      .hero-btn {
        width: 100%;
      }

      .hero-stats {
        grid-template-columns: 1fr;
      }

      .hero-visual {
        display: none;
      }

      .section-head {
        margin-top: 32px;
      }

      .filter-panel {
        top: 8px;
        border-radius: 18px;
        margin-bottom: 18px;
      }

      .product-list {
        --bs-gutter-x: 10px;
        --bs-gutter-y: 12px;
      }

      .product-image-link {
        padding: 10px 10px 6px;
      }

      .product-image-box {
        border-radius: 16px;
      }

      .product-body {
        padding: 0 10px 10px;
      }

      .product-category {
        font-size: 10px;
      }

      .product-title {
        min-height: 44px;
        font-size: 12px;
      }

      .product-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 3px;
      }

      .meta-item,
      .stock-status,
      .shipping-badge,
      .old-price,
      .price-unit {
        font-size: 10px;
      }

      .product-desc {
        font-size: 10.5px;
        min-height: 40px;
      }

      .current-price-value {
        font-size: 15px;
      }

      .discount-badge {
        top: 10px;
        right: 10px;
        height: 24px;
        font-size: 9px;
        padding: 0 8px;
      }

      .description-section {
        padding-bottom: 30px;
      }
    }