:root {
  --amax-bg: #f3f5f7;
  --amax-surface: #ffffff;
  --amax-surface-soft: #f8fafd;
  --amax-border: #cdd8e5;
  --amax-border-strong: #b8c7d9;
  --amax-text: #061b48;
  --amax-muted: #48607f;
  --amax-muted-2: #6f86a2;
  --amax-primary: #16a34a;
  --amax-primary-hover: #15803d;
  --amax-primary-soft: #dcfce7;
  --amax-primary-border: #9fe4b7;
  --amax-dark-btn: #061b48;
  --amax-dark-btn-hover: #0e2a66;
  --amax-warning-bg: #fef8e9;
  --amax-warning-border: #f3d37a;
  --amax-warning-text: #b45309;
  --amax-info-bg: #f0f5ff;
  --amax-info-border: #bcd1f2;
  --amax-info-text: #1d4ed8;
  --amax-violet-bg: #f4f1ff;
  --amax-violet-border: #d8cfff;
  --amax-violet-text: #6d28d9;
  --amax-footer: #031438;
  --amax-shadow: 0 10px 28px rgba(6, 23, 55, 0.08);
  --amax-shadow-soft: 0 5px 18px rgba(6, 23, 55, 0.06);
}

body {
  background: var(--amax-bg);
  color: var(--amax-text);
}

.page-shell {
  width: min(100%, 1240px);
}

.site-main {
  padding-block: 2rem;
}

.amax-navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--amax-border);
  background: rgba(247, 249, 252, 0.96);
  backdrop-filter: blur(12px);
}

.amax-navbar-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 70px;
}

.amax-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.amax-brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--amax-border);
  background: #fff;
  object-fit: contain;
  padding: 0.25rem;
}

.amax-brand-title {
  margin: 0;
  font-size: 2rem;
  font-size: 1.95rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.amax-brand-subtitle {
  margin: 0.15rem 0 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--amax-muted-2);
}

.amax-nav-links {
  display: none;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.amax-nav-link {
  min-height: 44px;
  padding: 0.5rem 1.1rem;
  border-radius: 12px;
  color: var(--amax-muted);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.amax-nav-link:hover {
  color: var(--amax-text);
  background: #edf2f7;
}

.amax-nav-link.is-active {
  background: #d1fae0;
  color: #146a3c;
  box-shadow: inset 0 0 0 1px var(--amax-primary-border);
}

.amax-nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.amax-icon-btn,
.amax-ghost-btn,
.amax-outline-btn,
.amax-solid-btn,
.amax-profile-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  min-height: 42px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.amax-icon-btn {
  min-width: 42px;
  border: 1px solid var(--amax-border);
  background: #fff;
  color: var(--amax-muted);
}

.amax-icon-btn:hover {
  border-color: var(--amax-border-strong);
  background: #f8fafd;
  color: var(--amax-text);
}

.amax-icon {
  width: 1rem;
  height: 1rem;
  display: block;
}

.amax-outline-btn {
  border: 1px solid var(--amax-border-strong);
  background: #fff;
  color: #334155;
  padding: 0.5rem 1rem;
}

.amax-outline-btn:hover {
  background: #f8fafd;
  color: var(--amax-text);
}

.amax-solid-btn {
  border: 1px solid transparent;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  padding: 0.5rem 1rem;
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.25);
}

.amax-solid-btn:hover {
  background: linear-gradient(135deg, #16a34a, #15803d);
}

.amax-profile-pill {
  border: 1px solid var(--amax-border);
  background: #f8fafd;
  color: #334155;
  padding: 0.5rem 0.8rem;
  max-width: 220px;
  white-space: nowrap;
}

.amax-role-chip {
  border-radius: 999px;
  background: #e6edf7;
  color: #2f4766;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.15rem 0.4rem;
}

.amax-mobile-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  min-width: 42px;
  border: 1px solid var(--amax-border-strong);
  border-radius: 12px;
  background: #fff;
  color: #475569;
}

.amax-mobile-nav-wrap {
  display: none;
  padding-bottom: 0.9rem;
}

.amax-mobile-nav-wrap.is-open {
  display: block;
}

.amax-mobile-nav {
  border: 1px solid var(--amax-border);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--amax-shadow-soft);
  padding: 0.65rem;
  display: grid;
  gap: 0.45rem;
}

.amax-mobile-link {
  min-height: 42px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  padding-inline: 0.85rem;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--amax-muted);
}

.amax-mobile-link:hover {
  background: #f3f7fb;
  color: var(--amax-text);
}

.amax-mobile-link.is-active {
  background: #dff8e9;
  color: #156a3d;
}

.amax-page {
  width: min(100%, 1240px);
  margin-inline: auto;
  padding-inline: clamp(0.9rem, 3vw, 1.6rem);
  padding-block: 1.3rem 2.7rem;
}

.amax-page--narrow {
  width: min(100%, 880px);
}

.amax-page--dashboard {
  width: min(100%, 1060px);
}

.amax-eyebrow {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: #0b8d3a;
}

.amax-title {
  margin: 0.35rem 0 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: #041b4a;
}

.amax-subtitle {
  margin: 0.9rem 0 0;
  color: var(--amax-muted);
  font-size: 1.03rem;
  line-height: 1.5;
}

.amax-panel {
  border: 1px solid var(--amax-border);
  border-radius: 16px;
  background: var(--amax-surface);
  box-shadow: var(--amax-shadow-soft);
  padding: 1.2rem;
}

.amax-panel--soft {
  background: var(--amax-surface-soft);
}

.amax-panel-title {
  margin: 0;
  color: #041b4a;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  line-height: 1.14;
  font-weight: 800;
}

.amax-panel-subtitle {
  margin: 0.7rem 0 0;
  color: var(--amax-muted);
  font-size: 1.03rem;
}

.amax-grid {
  display: grid;
  gap: 0.95rem;
}

.amax-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.amax-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.amax-label {
  display: block;
  margin-bottom: 0.34rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #5a7392;
}

.amax-input,
.amax-select,
.amax-textarea {
  width: 100%;
  min-height: 44px;
  border-radius: 12px;
  border: 1px solid var(--amax-border-strong);
  background: #f4f8fc;
  color: var(--amax-text);
  padding: 0.6rem 0.85rem;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.amax-textarea {
  min-height: 92px;
  resize: vertical;
}

.amax-input::placeholder,
.amax-textarea::placeholder {
  color: #8fa2bb;
}

.amax-input:focus,
.amax-select:focus,
.amax-textarea:focus {
  border-color: #8db2de;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(56, 117, 215, 0.14);
}

.amax-field-icon {
  position: relative;
}

.amax-field-icon .amax-input,
.amax-field-icon .amax-select {
  padding-left: 2.35rem;
}

.amax-field-icon svg {
  position: absolute;
  left: 0.82rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.97rem;
  height: 0.97rem;
  color: #6e83a1;
  pointer-events: none;
}

.amax-password-toggle {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #6e83a1;
  width: 1.5rem;
  height: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.amax-btn-primary,
.amax-btn-secondary,
.amax-btn-dark {
  min-height: 44px;
  border-radius: 12px;
  border: 1px solid transparent;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.amax-btn-primary {
  background: linear-gradient(135deg, #22c55e, #169d45);
  color: #fff;
}

.amax-btn-primary:hover {
  background: linear-gradient(135deg, #19ad4f, #117f38);
  transform: translateY(-1px);
}

.amax-btn-secondary {
  border-color: var(--amax-border-strong);
  background: #f8fafd;
  color: #334155;
}

.amax-btn-secondary:hover {
  background: #eff4f9;
}

.amax-btn-dark {
  background: var(--amax-dark-btn);
  color: #fff;
}

.amax-btn-dark:hover {
  background: var(--amax-dark-btn-hover);
}

.amax-alert {
  border: 1px solid var(--amax-primary-border);
  border-radius: 12px;
  background: #eaf8ef;
  color: #116b3c;
  padding: 0.78rem 0.92rem;
  font-size: 0.95rem;
}

.amax-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 30px;
  border-radius: 999px;
  border: 1px solid var(--amax-border);
  background: #eef4fb;
  color: #4b6382;
  padding: 0.2rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.amax-chip--success {
  border-color: var(--amax-primary-border);
  background: #e8f9ef;
  color: #0b8a3a;
}

.amax-chip--warning {
  border-color: var(--amax-warning-border);
  background: var(--amax-warning-bg);
  color: var(--amax-warning-text);
}

.amax-chip--info {
  border-color: var(--amax-info-border);
  background: var(--amax-info-bg);
  color: var(--amax-info-text);
}

.amax-chip--violet {
  border-color: var(--amax-violet-border);
  background: var(--amax-violet-bg);
  color: var(--amax-violet-text);
}

.amax-status-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}

.amax-status-card {
  border-radius: 12px;
  border: 1px solid var(--amax-border);
  padding: 0.72rem 0.88rem;
  background: #fff;
  cursor: pointer;
  text-align: left;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.amax-status-card:hover {
  transform: translateY(-1px);
  box-shadow: var(--amax-shadow-soft);
}

.amax-status-card.is-active {
  box-shadow: inset 0 0 0 1px #7ab6ff;
}

.amax-status-kicker {
  margin: 0;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 700;
}

.amax-status-value {
  margin: 0.2rem 0 0;
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
}

.amax-status-meta {
  margin: 0.2rem 0 0;
  font-size: 0.9rem;
  font-weight: 600;
}

.amax-status-card--warning {
  border-color: #efcd64;
  background: #fef8e9;
}

.amax-status-card--warning .amax-status-kicker,
.amax-status-card--warning .amax-status-value,
.amax-status-card--warning .amax-status-meta {
  color: #b45309;
}

.amax-status-card--progress {
  border-color: #9fc4ff;
  background: #eff5ff;
}

.amax-status-card--progress .amax-status-kicker,
.amax-status-card--progress .amax-status-value,
.amax-status-card--progress .amax-status-meta {
  color: #1e40af;
}

.amax-status-card--parts {
  border-color: #cfc3ff;
  background: #f4f1ff;
}

.amax-status-card--parts .amax-status-kicker,
.amax-status-card--parts .amax-status-value,
.amax-status-card--parts .amax-status-meta {
  color: #6d28d9;
}

.amax-status-card--done {
  border-color: #9edec0;
  background: #e9f8ef;
}

.amax-status-card--done .amax-status-kicker,
.amax-status-card--done .amax-status-value,
.amax-status-card--done .amax-status-meta {
  color: #047857;
}

.amax-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--amax-border);
  border-radius: 12px;
}

.amax-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 780px;
  font-size: 0.9rem;
}

.amax-table th {
  text-align: left;
  background: #f4f8fc;
  color: #587191;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.72rem 0.75rem;
}

.amax-table td {
  border-top: 1px solid #e1e8f0;
  padding: 0.72rem 0.75rem;
  color: #243a59;
}

.amax-card-grid {
  display: grid;
  gap: 1rem;
}

.amax-card-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.amax-kpi-card {
  border: 1px solid var(--amax-border);
  border-radius: 12px;
  background: #fff;
  padding: 0.9rem 1rem;
}

.amax-kpi-title {
  margin: 0;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6982a1;
  font-weight: 700;
}

.amax-kpi-value {
  margin: 0.3rem 0 0;
  font-size: 2rem;
  line-height: 1;
  color: #041b4a;
  font-weight: 800;
}

.amax-kpi-note {
  margin: 0.18rem 0 0;
  font-size: 0.9rem;
  color: #6a829f;
  font-weight: 600;
}

.amax-contact-layout {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr 1fr;
}

.amax-contact-card {
  border-radius: 24px;
  border: 1px solid #334760;
  background: linear-gradient(130deg, #0d1d3f 0%, #22344f 100%);
  color: #fff;
  padding: 1.8rem;
  box-shadow: 0 18px 34px rgba(6, 19, 44, 0.28);
}

.amax-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #edf4ff;
  font-size: 1rem;
  font-weight: 600;
}

.amax-contact-row svg {
  width: 1rem;
  height: 1rem;
  margin-top: 0.2rem;
  color: #26da70;
  flex-shrink: 0;
}

.amax-map-card {
  border-radius: 16px;
  border: 1px solid var(--amax-border);
  background: #fff;
  box-shadow: var(--amax-shadow-soft);
  padding: 0.9rem;
}

.amax-map-frame {
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--amax-border);
  margin-top: 0.7rem;
}

.amax-map-frame iframe {
  width: 100%;
  height: 208px;
  border: 0;
}

.amax-login-shell {
  width: min(100%, 1240px);
  margin-inline: auto;
  padding-inline: clamp(0.9rem, 3vw, 1.6rem);
  padding-block: 1.8rem 2.7rem;
}

.amax-login-panel {
  border: 1px solid var(--amax-border);
  border-radius: 20px;
  overflow: hidden;
  background: #e9eef4;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  min-height: 620px;
}

.amax-login-sidebar {
  border-right: 1px solid var(--amax-border);
  background: linear-gradient(180deg, #f9fcff, #f2f6fb);
  padding: 1.35rem 1.2rem;
}

.amax-login-role-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.1rem;
}

.amax-login-role-item {
  border: 1px solid var(--amax-border);
  border-radius: 14px;
  background: #fff;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  text-decoration: none;
  padding: 0.73rem 0.72rem;
  color: inherit;
}

.amax-login-role-item:hover {
  border-color: #8fd2ad;
  box-shadow: var(--amax-shadow-soft);
}

.amax-login-role-item.is-active {
  border-color: #2ebb67;
  background: #d6f5e2;
}

.amax-login-role-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #eef2f7;
  color: #37475d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.amax-login-role-item.is-active .amax-login-role-icon {
  background: #16a34a;
  color: #fff;
}

.amax-login-form-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.4rem;
}

.amax-login-form {
  width: min(100%, 720px);
  border: 1px solid var(--amax-border);
  border-radius: 18px;
  background: #fff;
  padding: 1.6rem;
  box-shadow: var(--amax-shadow-soft);
}

.amax-search-panel {
  border: 1px solid var(--amax-border);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--amax-shadow-soft);
  padding: 1rem;
}

.amax-search-grid {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: 1.7fr 1fr 0.8fr auto auto;
  align-items: end;
}

.amax-product-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.amax-product-card {
  border: 1px solid var(--amax-border);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--amax-shadow-soft);
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.amax-product-image {
  border-radius: 14px;
  background: #edf2f8;
  border: 1px solid #e3ebf6;
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.amax-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.amax-product-kicker {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: #5f7ea3;
}

.amax-product-name {
  margin: 0.22rem 0 0;
  font-size: 2rem;
  font-size: 1.06rem;
  font-weight: 700;
  line-height: 1.28;
  color: #061b48;
}

.amax-product-price {
  margin: 0.16rem 0 0;
  color: #041b4a;
  font-size: 2rem;
  font-size: 2rem;
  font-size: 2rem;
  font-size: 1.98rem;
  font-size: 1.92rem;
  font-weight: 800;
  line-height: 1.1;
}

.amax-stock-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  border: 1px solid #9fe4b7;
  background: #eaf9f0;
  color: #0f8b40;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.15rem 0.75rem;
}

.amax-koko-box {
  border: 1px solid #b9cdf2;
  border-radius: 12px;
  background: #f2f6fe;
  padding: 0.5rem 0.6rem;
  display: flex;
  gap: 0.55rem;
  align-items: center;
}

.amax-koko-logo {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: #ffffff;
  border: 1px solid #d7e2f4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #4f46e5;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: lowercase;
}

.amax-koko-copy {
  font-size: 0.88rem;
  line-height: 1.28;
  color: #1e3a8a;
  font-weight: 600;
}

.amax-category-carousel {
  margin-top: 1.2rem;
  position: relative;
}

.amax-category-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 1fr);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.6rem;
  scrollbar-width: none;
}

.amax-category-track::-webkit-scrollbar {
  display: none;
}

.amax-category-card {
  border: 1px solid #d4deea;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  text-decoration: none;
  box-shadow: var(--amax-shadow-soft);
}

.amax-category-media {
  height: 165px;
  background: #edf2f8;
  border-bottom: 1px solid #dfebf8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem;
}

.amax-category-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.amax-category-fallback {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  border: 1px solid #9fdab5;
  background: #eefbf4;
  color: #128641;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-size: 1.6rem;
  font-weight: 800;
}

.amax-category-name {
  margin: 0;
  padding: 0.86rem 1rem;
  color: #041b4a;
  font-size: 1.86rem;
  font-size: 1.06rem;
  letter-spacing: 0.01em;
  font-weight: 800;
  text-transform: uppercase;
}

.amax-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--amax-border);
  background: #f8fbff;
  color: #4d5f77;
  box-shadow: var(--amax-shadow-soft);
  z-index: 5;
}

.amax-carousel-arrow[data-dir="prev"] {
  left: -0.15rem;
}

.amax-carousel-arrow[data-dir="next"] {
  right: -0.15rem;
}

.amax-brand-strip {
  margin-top: 1rem;
  border: 1px solid var(--amax-border);
  border-radius: 16px;
  background: #fff;
  padding: 1.2rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.95rem;
  align-items: center;
}

.amax-brand-logo {
  width: 100%;
  max-height: 62px;
  object-fit: contain;
  opacity: 0.92;
}

.amax-service-shell {
  width: min(100%, 840px);
  margin-inline: auto;
}

.amax-progress {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: #d9e3ef;
  overflow: hidden;
}

.amax-progress-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #22c55e, #169d45);
}

.amax-stage-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.7rem;
}

.amax-stage-chip {
  border: 1px solid #b7dcbe;
  border-radius: 999px;
  background: #effaf2;
  color: #1b7d43;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.22rem 0.72rem;
}

.amax-stage-chip.is-current {
  background: #dcfce7;
  border-color: #22c55e;
  color: #0f8b40;
  font-weight: 700;
}

.amax-footer {
  margin-top: 2.5rem;
  background: var(--amax-footer);
  border-top: 1px solid #20345d;
  color: #d6e2f7;
}

.amax-footer-grid {
  width: min(100%, 1240px);
  margin-inline: auto;
  padding: 3rem clamp(0.9rem, 3vw, 1.6rem);
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1.2fr 1fr 0.8fr;
}

.amax-footer-title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.8rem, 2vw, 2.3rem);
  font-weight: 800;
  line-height: 1.1;
}

.amax-footer-copy {
  margin: 0.8rem 0 0;
  max-width: 420px;
  font-size: 1.05rem;
  line-height: 1.45;
  color: #d5e3fb;
}

.amax-footer-heading {
  margin: 0;
  font-size: 1.9rem;
  font-size: 2rem;
  font-size: 1.95rem;
  font-size: 1.88rem;
  font-weight: 700;
  color: #fff;
}

.amax-footer-list {
  margin: 0.8rem 0 0;
  display: grid;
  gap: 0.6rem;
  font-size: 1rem;
  color: #d6e2f7;
}

.amax-footer-item {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
}

.amax-footer-item svg {
  width: 1rem;
  height: 1rem;
  color: #22c55e;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.amax-footer-link {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.amax-footer-link:hover {
  color: #86efac;
}

.amax-footer-bottom {
  border-top: 1px solid rgba(164, 186, 224, 0.22);
  text-align: center;
  padding: 0.95rem;
  font-size: 0.92rem;
  color: #a7bbde;
}

.amax-list-note {
  border: 1px solid var(--amax-border);
  border-radius: 12px;
  background: #f4f8fc;
  color: #5d7594;
  padding: 0.85rem;
  text-align: center;
  font-size: 1rem;
}

.amax-hidden {
  display: none !important;
}

@media (min-width: 1024px) {
  .amax-nav-links {
    display: flex;
  }

  .amax-mobile-toggle {
    display: none;
  }
}

@media (max-width: 1180px) {
  .amax-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .amax-search-grid {
    grid-template-columns: 1fr 1fr;
  }

  .amax-brand-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1023px) {
  .site-main {
    padding-top: 1.2rem;
  }

  .amax-contact-layout {
    grid-template-columns: 1fr;
  }

  .amax-login-panel {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .amax-login-sidebar {
    border-right: 0;
    border-bottom: 1px solid var(--amax-border);
  }

  .amax-login-role-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .amax-status-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .amax-footer-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding-block: 2.1rem;
  }

  .amax-nav-actions .amax-profile-pill {
    display: none;
  }

  .amax-nav-actions .amax-outline-btn,
  .amax-nav-actions .amax-solid-btn {
    display: none;
  }
}

@media (max-width: 767px) {
  .amax-brand-title {
    font-size: 0.95rem;
  }

  .amax-brand-subtitle {
    font-size: 0.72rem;
  }

  .amax-page {
    padding-inline: 0.8rem;
    padding-block: 1rem 2.2rem;
  }

  .amax-title {
    font-size: 2rem;
  }

  .amax-search-grid {
    grid-template-columns: 1fr;
  }

  .amax-product-grid {
    grid-template-columns: 1fr;
  }

  .amax-brand-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .amax-category-track {
    grid-auto-columns: minmax(185px, 1fr);
  }

  .amax-carousel-arrow {
    display: none;
  }

  .amax-grid-2,
  .amax-grid-3,
  .amax-card-grid-4,
  .amax-status-grid {
    grid-template-columns: 1fr;
  }

  .amax-login-role-list {
    grid-template-columns: 1fr;
  }

  .amax-login-form-wrap {
    padding: 1rem;
  }

  .amax-login-form {
    padding: 1.1rem;
  }
}

.amax-mobile-user {
  justify-content: space-between;
  background: #f4f8fd;
  color: #334155;
}

.amax-footer-follow {
  border-color: #47608b;
  background: transparent;
  color: #d8e6ff;
}

.amax-footer-follow:hover {
  border-color: #22c55e;
  color: #ffffff;
}

