
  /* Container Utama List */
  .ritel-scroll-container {
    height: 320px; /* Batas tinggi scroll */
    overflow-y: auto;
    padding-right: 15px;
  }

  /* Custom Scrollbar Styling (Vibrant Green) */
  .ritel-scroll-container::-webkit-scrollbar {
    width: 6px;
  }
  .ritel-scroll-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
  }
  .ritel-scroll-container::-webkit-scrollbar-thumb {
    background: #198754;
    border-radius: 10px;
  }
  .ritel-scroll-container::-webkit-scrollbar-thumb:hover {
    background: #157347;
  }

  /* Item List Styling */
  .ritel-list-vertical {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .ritel-item-v {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .ritel-num {
    font-size: 0.8rem;
    font-weight: 800;
    color: #198754;
    background: rgba(25, 135, 84, 0.1);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-right: 15px;
  }

  .ritel-item-v span {
    font-weight: 700;
    color: #333;
    font-size: 1.1rem;
  }

  .ritel-item-v i {
    color: #e0e0e0;
    font-size: 1.2rem;
    transition: color 0.3s ease;
  }

  /* Hover State */
  .ritel-item-v:hover {
    background: #f8fffb;
    border-color: #198754;
    transform: translateX(8px);
    box-shadow: 0 5px 15px rgba(25, 135, 84, 0.05);
  }

  .ritel-item-v:hover i {
    color: #198754; /* Ceklis jadi hijau pas di-hover */
  }

  .shadow-vibrant {
    box-shadow: 0 20px 60px rgba(0,0,0,0.08) !important;
  }
      .product-card { cursor: pointer; transition: all 0.3s ease; border: 1px solid #eee; }
      .product-card:hover { transform: translateY(-10px); box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important; border-color: #198754 !important; }
      .product-img-box { width: 100%; height: 220px; background-position: center; background-repeat: no-repeat; background-size: cover; background-color: #f9f9f9; }
      .product-card h3 { transition: color 0.3s ease; color: #111; }
      .product-card:hover h3 { color: #198754; }
      @media (max-width: 576px) { .product-img-box { height: 180px; } }