.shofy-benefits-wrapper {
    font-family: inherit;
    color: #1a1a1a;
    background-color: #faf8f5;
    padding: 50px 20px;
    border-radius: 16px;
    margin: 30px auto;
    max-width: 1100px;
  }

  .shofy-benefits-wrapper .header-title {
    color: #3b2b20;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
  }

  .shofy-benefits-wrapper .header-subtitle {
    color: #666666;
    font-size: 1.05rem;
    text-align: center;
    margin-bottom: 40px;
  }

  .shofy-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 35px;
  }

  .shofy-benefit-card {
    background: #ffffff;
    border: 1px solid #eae5df;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .shofy-benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  }

  .shofy-card-icon {
    width: 48px;
    height: 48px;
    background-color: #f3ece6;
    color: #5c4333;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
  }

  .shofy-benefit-card h3 {
    color: #3b2b20;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
  }

  .shofy-benefit-card p, .shofy-benefit-card ul {
    color: #4a4a4a;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .shofy-benefit-card ul {
    padding-left: 20px;
    margin-bottom: 15px;
  }

  .shofy-badge {
    display: inline-block;
    background-color: #ede3da;
    color: #5c4333;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 10px;
  }

  /* Produkt Showcase Sektion */
  .shofy-product-banner {
    background: #ffffff;
    border: 1px solid #eae5df;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    margin-bottom: 35px;
    display: flex;
    flex-direction: column;
  }

  @media (min-width: 768px) {
    .shofy-product-banner {
      flex-direction: row;
      align-items: center;
    }
    .shofy-product-banner img {
      width: 45%;
      height: 300px;
      object-fit: cover;
    }
    .shofy-product-details {
      width: 55%;
      padding: 40px;
    }
  }

  .shofy-product-banner img {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }

  .shofy-product-details {
    padding: 25px;
  }

  .shofy-product-details h3 {
    color: #3b2b20;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .shofy-btn-danger {
    background-color: #fff5f5;
    color: #dc3545;
    border: 1px solid #f8d7da;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 10px;
  }

  .shofy-btn-danger:hover {
    background-color: #dc3545;
    color: #ffffff;
    border-color: #dc3545;
  }