.acx-guide-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 30px 15px 60px;
  color: #26313d;
  line-height: 1.6;
}

.acx-guide-page * {
  box-sizing: border-box;
}

.acx-guide-hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg, #0e1a2a, #16283f);
  color: #ffffff;
  border-radius: 20px;
  padding: 38px;
  overflow: hidden;
}

.acx-guide-brand {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #ffffff;
}

.acx-guide-brand span {
  color: #f47c20;
}

.acx-guide-hero h1 {
  color: #ffffff;
  font-size: 52px;
  line-height: 1.05;
  margin: 0 0 16px;
  letter-spacing: -1px;
}

.acx-guide-hero p {
  color: rgba(255,255,255,0.86);
  font-size: 18px;
  margin: 0 0 24px;
}

.acx-guide-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.acx-guide-tags span {
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
}

.acx-guide-qr-box {
  background: #ffffff;
  color: #26313d;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}

.acx-guide-qr-box h2 {
  color: #0e1a2a;
  font-size: 24px;
  margin: 0 0 8px;
}

.acx-guide-qr-box p {
  color: #5f6b78;
  font-size: 15px;
  margin: 0 0 12px;
}

.acx-qr-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 170px;
  border: 2px dashed #d9dee5;
  border-radius: 14px;
  background: #f7f8fa;
  text-align: center;
  color: #5f6b78;
  padding: 20px;
  margin: 10px 0 12px;
  font-weight: 800;
}

.acx-guide-qr-box small {
  color: #5f6b78;
}

.acx-guide-warning {
  margin: 26px 0;
  background: #fff6ee;
  border: 1px solid #ffd8b8;
  border-left: 6px solid #f47c20;
  border-radius: 14px;
  padding: 18px 20px;
  color: #26313d;
}

.acx-guide-warning strong {
  color: #0e1a2a;
}

.acx-guide-section {
  margin-top: 34px;
  padding: 28px;
  border: 1px solid #d9dee5;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(14, 26, 42, 0.05);
}

.acx-guide-section h2 {
  color: #0e1a2a;
  font-size: 28px;
  line-height: 1.2;
  margin: 0 0 18px;
}

.acx-guide-section h2::after {
  content: "";
  display: block;
  width: 54px;
  height: 4px;
  background: #f47c20;
  border-radius: 999px;
  margin-top: 10px;
}

.acx-guide-section h3 {
  color: #0e1a2a;
  font-size: 18px;
  margin: 0 0 8px;
}

.acx-guide-section p {
  color: #26313d;
}

.acx-guide-section ul {
  padding-left: 20px;
  margin: 10px 0 0;
}

.acx-guide-section li {
  margin-bottom: 8px;
}

.acx-guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.acx-guide-card {
  background: #f7f8fa;
  border: 1px solid #d9dee5;
  border-radius: 14px;
  padding: 18px;
}

.acx-guide-note {
  color: #5f6b78;
  font-size: 14px;
  margin-top: 14px;
}

.acx-guide-steps {
  display: grid;
  gap: 14px;
}

.acx-guide-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  background: #f7f8fa;
  border: 1px solid #d9dee5;
  border-radius: 14px;
}

.acx-guide-step span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f47c20;
  color: #ffffff;
  font-weight: 800;
}

.acx-guide-step h3 {
  margin: 0 0 4px;
}

.acx-guide-step p {
  color: #5f6b78;
  margin: 0;
}

.acx-guide-table-wrap {
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid #d9dee5;
  margin-top: 14px;
}

.acx-guide-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

.acx-guide-table th {
  background: #0e1a2a;
  color: #ffffff;
  text-align: left;
  padding: 13px 14px;
  font-size: 14px;
}

.acx-guide-table td {
  padding: 13px 14px;
  border-top: 1px solid #d9dee5;
  vertical-align: top;
}

.acx-guide-table tr:nth-child(even) td {
  background: #f7f8fa;
}

@media (max-width: 820px) {
  .acx-guide-hero,
  .acx-guide-grid {
    grid-template-columns: 1fr;
  }

  .acx-guide-hero {
    padding: 28px;
  }

  .acx-guide-hero h1 {
    font-size: 36px;
  }

  .acx-guide-section {
    padding: 22px;
  }
}

/* Login / Register / Customer account submit buttons */
.auth-card button[type="submit"],
.auth-form button[type="submit"],
.login-form button[type="submit"],
.register-form button[type="submit"],
.customer-login button[type="submit"],
.customer-register button[type="submit"],
.login-page button[type="submit"],
.register-page button[type="submit"],
.customer-page button[type="submit"],
.account-page button[type="submit"],
.form-login button[type="submit"],
.form-register button[type="submit"],
form[action*="login"] button[type="submit"],
form[action*="register"] button[type="submit"],
form[action*="customer"] button[type="submit"],
button[type="submit"].btn-primary,
.btn-primary[type="submit"] {
  background-color: #f47c20 !important;
  border-color: #f47c20 !important;
  color: #ffffff !important;
}

.auth-card button[type="submit"]:hover,
.auth-form button[type="submit"]:hover,
.login-form button[type="submit"]:hover,
.register-form button[type="submit"]:hover,
.customer-login button[type="submit"]:hover,
.customer-register button[type="submit"]:hover,
.login-page button[type="submit"]:hover,
.register-page button[type="submit"]:hover,
.customer-page button[type="submit"]:hover,
.account-page button[type="submit"]:hover,
.form-login button[type="submit"]:hover,
.form-register button[type="submit"]:hover,
form[action*="login"] button[type="submit"]:hover,
form[action*="register"] button[type="submit"]:hover,
form[action*="customer"] button[type="submit"]:hover,
button[type="submit"].btn-primary:hover,
.btn-primary[type="submit"]:hover {
  background-color: #e96f12 !important;
  border-color: #e96f12 !important;
  color: #ffffff !important;
}