.cmf-wallet-notice {
  padding: 14px 16px;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  background: #fff;
  color: #333;
}

.cmf-wallet-card {
  max-width: 420px;
  padding: 22px 24px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0f2d4d 0%, #2f6fb4 100%);
  color: #fff;
  box-shadow: 0 6px 18px rgba(15, 45, 77, 0.25);
}

.cmf-wallet-name {
  margin: 0 0 4px;
  font-size: 20px;
  font-weight: 700;
}

.cmf-wallet-meta {
  margin: 0 0 20px;
  font-size: 14px;
  color: #d9e6f5;
}

.cmf-wallet-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cmf-wallet-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: opacity 0.15s ease;
}

.cmf-wallet-btn:hover {
  opacity: 0.85;
}

/* Platzhalter-Styles. Für den offiziellen Markenauftritt bitte die
   Original-Buttongrafiken aus Apples "Add to Apple Wallet"- bzw. Googles
   "Add to Google Wallet"-Richtlinien einsetzen (Assets-Kits der jeweiligen
   Entwicklerdokumentation) und hier per background-image einbinden. */
.cmf-wallet-btn-apple {
  background: #000;
  color: #fff;
}

.cmf-wallet-btn-google {
  background: #fff;
  color: #1b1b1b;
  border: 1px solid #dadce0;
}

.cmf-wallet-btn-disabled {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.75);
  cursor: default;
}

@media (max-width: 480px) {
  .cmf-wallet-buttons {
    flex-direction: column;
  }
}
