/**
 * Dealer Quick Order App base styles.
 */

:root {
  --dqoa-red: #e30613;
  --dqoa-red-dark: #b9040f;
  --dqoa-dark: #111820;
  --dqoa-dark-soft: #1b242e;
  --dqoa-text: #111827;
  --dqoa-muted: #6b7280;
  --dqoa-border: #e5e7eb;
  --dqoa-soft: #f5f7fa;
  --dqoa-white: #ffffff;
  --dqoa-success: #15803d;
  --dqoa-danger: #dc2626;
  --dqoa-warning: #f59e0b;
  --dqoa-radius: 18px;
  --dqoa-shadow: 0 18px 45px rgba(17, 24, 39, 0.08);
  --dqoa-font: "Bebas Neue", sans-serif;
}

.dqoa-app-shell,
.dqoa-app-shell * {
  box-sizing: border-box;
}

.dqoa-app-shell {
  font-family: var(--dqoa-font);
  color: var(--dqoa-text);
  background: var(--dqoa-soft);
  letter-spacing: 0.3px;
}

.dqoa-app-shell button,
.dqoa-app-shell input,
.dqoa-app-shell textarea,
.dqoa-app-shell select {
  font-family: inherit;
}

.dqoa-app-shell a {
  text-decoration: none;
}

.dqoa-empty {
  color: var(--dqoa-muted);
  font-size: 17px;
}

.dqoa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 14px;
  padding: 0 20px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 17px;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
}

.dqoa-btn-primary {
  background: var(--dqoa-red);
  color: var(--dqoa-white);
}

.dqoa-btn-primary:hover {
  background: var(--dqoa-red-dark);
  color: var(--dqoa-white);
}

.dqoa-btn-secondary {
  background: var(--dqoa-white);
  color: var(--dqoa-red);
  border-color: var(--dqoa-red);
}

.dqoa-btn-secondary:hover {
  background: #fff1f2;
}

.dqoa-btn:disabled,
.dqoa-btn.dqoa-is-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
/**
 * Dealer access screen.
 */
.elementor-shortcode .dqoa-access-box {
  width: min(720px, calc(100vw - 40px));
  margin: 80px auto;
  padding: 42px;
  border: 1px solid #e5e7eb;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.08);
  text-align: left;
}

.elementor-shortcode .dqoa-access-box h2 {
  margin: 0 0 16px;
  font-family: var(--dqoa-font);
  font-size: 52px;
  line-height: 1;
  color: #111820;
  letter-spacing: 0.3px;
}

.elementor-shortcode .dqoa-access-box p {
  margin: 0 0 28px;
  font-size: 18px;
  line-height: 1.6;
  color: #6b7280;
}

.elementor-shortcode .dqoa-login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 16px;
  background: var(--dqoa-red);
  color: #ffffff !important;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.2s ease;
}

.elementor-shortcode .dqoa-login-btn:hover {
  background: var(--dqoa-red-dark);
  color: #ffffff !important;
  transform: translateY(-1px);
}

@media (max-width: 767px) {
  .elementor-shortcode .dqoa-access-box {
    margin: 40px auto;
    padding: 28px;
    border-radius: 22px;
  }

  .elementor-shortcode .dqoa-access-box h2 {
    font-size: 38px;
  }

  .elementor-shortcode .dqoa-access-box p {
    font-size: 16px;
  }

  .elementor-shortcode .dqoa-login-btn {
    width: 100%;
  }
}
