/* RIHA Payment Button Styles */
.riha-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  font-family: system-ui, -apple-system, sans-serif;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.riha-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.riha-button:active {
  transform: translateY(0);
}

/* Button Variants */
.riha-button-primary {
  background-color: #16a34a;
  color: white;
}

.riha-button-primary:hover {
  background-color: #15803d;
}

.riha-button-dark {
  background-color: #0a0a0a;
  color: white;
}

.riha-button-dark:hover {
  background-color: #1a1a1a;
}

.riha-button-light {
  background-color: white;
  color: #0a0a0a;
  border: 2px solid #e5e5e5;
}

.riha-button-light:hover {
  background-color: #f9fafb;
  border-color: #d4d4d4;
}

.riha-button-minimal {
  background-color: #f3f4f6;
  color: #0a0a0a;
}

.riha-button-minimal:hover {
  background-color: #e5e7eb;
}

/* Button Elements */
.riha-logo {
  height: 24px;
  width: auto;
}

.riha-text {
  font-weight: 600;
}

.riha-payment-methods {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
  padding-left: 12px;
  border-left: 1px solid currentColor;
  opacity: 0.6;
}

.riha-payment-methods img {
  height: 16px;
  width: auto;
}

/* Responsive */
@media (max-width: 640px) {
  .riha-button {
    padding: 10px 20px;
    font-size: 14px;
  }

  .riha-logo {
    height: 20px;
  }

  .riha-payment-methods img {
    height: 14px;
  }
}
