.wimo-card {
  --wimo-bg: linear-gradient(145deg, #f7f7f7 0%, #efefef 100%);
  --wimo-border: #d0d0d0;
  --wimo-accent: #111111;
  --wimo-accent-2: #000000;
  --wimo-text: #111111;
  --wimo-muted: #3e3e3e;
  --wimo-success: #0c8e58;
  --wimo-wait: #2f2f2f;
  --wimo-danger: #111111;
  max-width: 760px;
  margin: 1rem auto;
  border: 1px solid var(--wimo-border);
  border-radius: 16px;
  background: var(--wimo-bg);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  padding: 24px;
  color: var(--wimo-text);
  font-family: "Nunito Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-align: left !important;
}

.wimo-card * {
  text-align: left !important;
}

.wimo-header h3 {
  margin: 0 0 0.35rem;
  font-size: 1.7rem;
}

.wimo-header p {
  margin: 0 0 1rem;
  color: var(--wimo-muted);
}

.wimo-form {
  display: grid;
  gap: 10px;
}

.wimo-form label {
  font-weight: 700;
  font-size: 0.9rem;
}

.wimo-form input,
.wimo-support-box textarea {
  width: 100%;
  border: 1px solid #b8b8b8;
  border-radius: 10px;
  background: #fff;
  padding: 12px;
  font-size: 100%;
  line-height: 1.4;
  transition: border-color 0.2s ease;
}

.wimo-form input:focus,
.wimo-support-box textarea:focus {
  outline: none;
  border-color: var(--wimo-accent);
}

.wimo-btn {
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--wimo-accent), var(--wimo-accent-2));
  color: #fff;
  padding: 0.8rem 1.2rem;
  font-size: 100%;
  line-height: 1.4;
  font-weight: 700;
  cursor: pointer;
  text-align: center !important;
  white-space: nowrap;
}

.wimo-btn:hover {
  filter: brightness(1.05);
}

.wimo-btn:disabled {
  opacity: 0.7;
  cursor: wait;
}

.wimo-btn-secondary {
  background: #111111;
}

.wimo-support-box .wimo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: 100%;
  min-height: 46px;
  min-width: 220px;
}

.wimo-result {
  margin-top: 1rem;
}

.wimo-loading {
  font-weight: 700;
  color: var(--wimo-muted);
}

.wimo-alert {
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 100%;
  font-weight: 600;
}

.wimo-alert-error {
  background: #f2f2f2;
  color: #111111;
  border: 1px solid #cfcfcf;
}

.wimo-alert-success {
  background: #e9fff4;
  color: var(--wimo-success);
  border: 1px solid #bdeed3;
}

.wimo-order {
  margin-top: 1rem;
  background: #fff;
  border: 1px solid #d5d5d5;
  border-radius: 14px;
  padding: 14px;
}

.wimo-order-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.wimo-order-head h4 {
  margin: 0;
}

.wimo-badge {
  display: inline-block;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
  line-height: 1.2;
}

.wimo-badge-ok {
  background: #ececec;
  color: #111111;
}

.wimo-badge-wait {
  background: #ececec;
  color: #111111;
}

.wimo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 12px 0;
}

.wimo-products {
  border-top: 1px solid #dddddd;
  padding-top: 10px;
}

.wimo-items {
  margin: 8px 0 0;
  padding-left: 18px;
}

.wimo-shipping {
  margin-top: 12px;
  border-top: 1px solid #dddddd;
  padding-top: 10px;
}

.wimo-shipping-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.wimo-shipping-grid span {
  display: block;
  font-size: 1rem;
  color: var(--wimo-text);
  margin-bottom: 2px;
}

.wimo-shipping-grid b {
  display: block;
  font-size: 1rem;
  font-weight: 700;
}

.wimo-shipping-grid a {
  color: #111111;
  text-decoration: none;
}

.wimo-shipping-grid a:hover {
  text-decoration: underline;
}

.wimo-track-btn {
  display: inline-block;
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  background: #111111;
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 100%;
  line-height: 1.4;
}

.wimo-track-btn:hover {
  filter: brightness(1.08);
}

.wimo-support-box {
  margin-top: 14px;
  border-top: 1px dashed #cfcfcf;
  padding-top: 12px;
}

.wimo-support-box h4 {
  margin: 0 0 0.35rem;
}

.wimo-support-box p {
  margin: 0 0 0.5rem;
  color: var(--wimo-muted);
}

.wimo-support-feedback {
  margin-top: 0.6rem;
}

@media (max-width: 700px) {
  .wimo-card {
    padding: 16px;
    border-radius: 12px;
  }

  .wimo-grid {
    grid-template-columns: 1fr;
  }

  .wimo-shipping-grid {
    grid-template-columns: 1fr;
  }
}
