.orderwithdrawl-footer-wrapper {
  display: flex;
  margin: 24px auto;
  padding: 16px 16px;
}

.orderwithdrawl-footer-wrapper--left {
  justify-content: flex-start;
}

.orderwithdrawl-footer-wrapper--center {
  justify-content: center;
}

.orderwithdrawl-footer-wrapper--right {
  justify-content: flex-end;
}
.orderwithdrawl-footer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--orderwithdrawl-btn-color, #f44708);
  color: var(--orderwithdrawl-btn-font-color, #ffffff);
  padding: 10px 10px;

  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.15);
  transition:
    transform 0.2s ease,
    filter 0.2s ease,
    box-shadow 0.2s ease;
  text-decoration: none;
}

.orderwithdrawl-footer-button--small {
  padding: 6px 14px;
  font-size: 0.875rem;
}

.orderwithdrawl-footer-button--medium {
  padding: 10px 20px;
  font-size: 1rem;
}

.orderwithdrawl-footer-button--large {
  padding: 14px 28px;
  font-size: 1.0625rem;
}

.orderwithdrawl-footer-button:hover,
.orderwithdrawl-footer-button:focus {
  transform: translateY(-2px);
  filter: brightness(0.95);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.18);
  color: var(--orderwithdrawl-btn-font-color, #ffffff);
}

.orderwithdrawl-footer-button:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
}

@media (max-width: 576px) {
  .orderwithdrawl-footer-button {
    width: 100%;
    padding: 16px 20px;
    font-size: 1rem;
  }
}

.orderwithdrawl-account-card {
  --orderwithdrawl-account-brand: #f1b218;
}

.orderwithdrawl-account-card__inner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.orderwithdrawl-account-card__icon {
  font-size: 2rem;
  color: var(--orderwithdrawl-account-brand);
  line-height: 1;
}

.orderwithdrawl-account-card__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: inherit;
}

.orderwithdrawl-account-card__title {
  font-size: 1rem;
  font-weight: 600;
}

.orderwithdrawl-account-card__subtitle {
  font-size: 0.8125rem;
  color: rgba(15, 23, 42, 0.7);
  line-height: 1.4;
}

.orderwithdrawl-account-legacy {
  list-style: none;
}

.orderwithdrawl-privacy {
  margin-top: 24px;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #f8fafc;
}

.orderwithdrawl-privacy__note {
  margin: 0 0 12px;
  color: #0f172a;
  font-size: 0.9375rem;
  line-height: 1.5;
  white-space: pre-line;
}

.orderwithdrawl-privacy__title {
  margin: 0 0 12px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f172a;
}

.orderwithdrawl-privacy__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
}

.orderwithdrawl-privacy__link:hover,
.orderwithdrawl-privacy__link:focus {
  text-decoration: underline;
}
