/* --- Button container --- */
  .tbmb-buy-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
    margin-top: 28px;
    margin-bottom: 24px;
    flex-wrap: wrap;
  }

  /* --- Shared button styles --- */
  .tbmb-buy-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    box-shadow: 0 6px 18px rgba(12,12,14,0.08);
    transition: transform .12s ease, box-shadow .12s ease, filter .12s ease, background-size .24s ease;
    color: #fff;
    min-width: 180px;
    background-size: 100% 100%;
  }

  .tbmb-buy-btn:focus {
    outline: 3px solid rgba(0,0,0,0.08);
    outline-offset: 3px;
  }

  .tbmb-buy-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(12,12,14,0.12);
    filter: saturate(1.02);
    background-size: 200% 200%;
  }

  /* --- Icon container --- */
  .tbmb-buy-btn .icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 4px;
  }

  /* --- Tokopedia (green) --- */
  .tokopedia {
    background: linear-gradient(180deg,#2f9e44 0%, #1f7a34 100%);
    color: white;
  }
  .tokopedia .icon { background: rgba(255,255,255,0.12); }

  /* --- Shopee (orange) --- */
  .shopee {
    background: linear-gradient(180deg,#ff7a3a 0%, #ee4b2d 100%);
    color: white;
  }
  .shopee .icon { background: rgba(255,255,255,0.12); }

  /* --- Responsive: stack on small screens --- */
  @media (max-width: 520px) {
    .tbmb-buy-buttons { gap: 10px; }
    .tbmb-buy-btn { min-width: 100%; justify-content: center; }
  }