.payment-options {
  display: grid;
  gap: 6px; /* was 12px */
}

.payment-card {
  border: 1px solid #ddd;   
  border-radius: 6px;      
  padding: 4px 8px;    
  background: #fff;
  cursor: pointer;
  transition: 0.15s ease;
}

.payment-card input {
  display: none;
}

.payment-card .card-body {
  display: flex;
  align-items: center;
  gap: 6px; 
}

.payment-card i {
  font-size: 12px; 
}

.payment-card .fw-semibold {
  font-size: 0.9rem;
  line-height: 1.1;
}

.payment-card small {
  font-size: 0.75rem;
  line-height: 1.1;
}

.payment-card:hover {
  border-color: #0d6efd;
}

.payment-card.active {
  border-color: #0d6efd;
  background: #f6faff;
}

@media (min-width: 768px) {
  .payment-options {
    grid-template-columns: 1fr 1fr;
  }
}