/* ================================================
   AEXOR DESIGNS — custom.css
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Syne:wght@600;700;800&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600&display=swap');

/* ── Tokens ── */
:root {
  --r:        #000000;
  --r-hi:     #000000;
  --r-lo:     rgba(255, 255, 255, 0.1);
  --r-mid:    rgba(255, 255, 255, 0.18);
  --r-glow:   rgba(100, 100, 100, 0.28);
  --r-border: rgba(69, 69, 69, 0.3);
  --bg:       #07070a;
  --s0:       #0c0c10;
  --s1:       #111116;
  --s2:       #17171d;
  --s3:       #1e1e28;
  --t1:       #f2f2f2;
  --t2:       rgba(242,242,242,0.50);
  --t3:       rgba(242,242,242,0.22);
  --b1:       rgba(255,255,255,0.06);
  --b2:       rgba(255,255,255,0.10);
  --f-d:      'Bebas Neue', sans-serif;
  --f-h:      'Syne', sans-serif;
  --f-b:      'DM Sans', sans-serif;
  --topbar-h: 30px;
  --nav-h:    60px;
  --ribbon-h: 34px;
  --total-h:  124px; /* topbar + nav + ribbon */
  --rad:      8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--f-b);
  background: var(--bg);
  color: var(--t1);
  overflow-x: hidden;
}

/* ── Spacer: pushes body content below fixed header ── */
.ax-spacer {
  display: block;
  width: 100%;
  height: var(--total-h);
  pointer-events: none;
}

/* No stats ribbon? reduce spacer */
.ax-spacer--no-ribbon {
  height: calc(var(--topbar-h) + var(--nav-h));
}

/* ── Header: FIXED, truly full viewport ── */
.ax-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100vw !important;
  max-width: 100vw !important;
  z-index: 9999 !important;
  display: block !important;
  /* Reset any Sellauth container interference */
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
}

/* ── Topbar ── */
.ax-topbar {
  width: 100%;
  height: 32px;
  background: var(--r);
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
  /* Diagonal stripe texture */
  background-image: repeating-linear-gradient(
    -52deg,
    transparent,
    transparent 14px,
    rgba(0,0,0,0.10) 14px,
    rgba(0,0,0,0.10) 16px
  );
  background-color: var(--r);
}

/* Fade edges */
.ax-topbar::before,
.ax-topbar::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.ax-topbar::before {
  left: 0;
  background: linear-gradient(90deg, var(--r), transparent);
}
.ax-topbar::after {
  right: 0;
  background: linear-gradient(-90deg, var(--r), transparent);
}

/* Track — two sets side by side, animates one full set width */
.ax-topbar__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ax-ticker 28s linear infinite;
  will-change: transform;
}

.ax-topbar__track:hover {
  animation-play-state: paused;
}

/* Each set is a full copy of all items */
.ax-topbar__set {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

@keyframes ax-ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Individual item */
.ax-topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 22px;
  font-family: var(--f-h);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.90);
  white-space: nowrap;
  text-decoration: none;
  border-right: 1px solid rgba(255,255,255,0.12);
  height: 32px;
  transition: background 0.18s, color 0.18s;
}

/* Linked items get hover state */
.ax-topbar__item--link {
  cursor: pointer;
}
.ax-topbar__item--link:hover {
  background: rgba(0,0,0,0.15);
  color: #fff;
}

.ax-topbar__pip {
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,0.40);
  border-radius: 50%;
  flex-shrink: 0;
}

.ax-topbar__arrow {
  font-size: 11px;
  opacity: 0.65;
  transition: opacity 0.18s, transform 0.18s;
}
.ax-topbar__item--link:hover .ax-topbar__arrow {
  opacity: 1;
  transform: translate(2px, -1px);
}

/* ── Nav shell ── */
.ax-nav-shell {
  width: 100%;
  background: var(--s0);
  border-bottom: 1px solid var(--b1);
  position: relative;
}

/* Red glow line at very top of nav */
.ax-nav-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--r-glow) 20%,
    var(--r) 40%,
    var(--r-hi) 50%,
    var(--r) 60%,
    var(--r-glow) 80%,
    transparent 100%
  );
  pointer-events: none;
  opacity: 0.7;
  z-index: 2;
}

/* Scanlines */
.ax-nav-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 2px,
    rgba(0,0,0,0.04) 2px, rgba(0,0,0,0.04) 4px
  );
  pointer-events: none;
  z-index: 0;
}

/* ── Nav row ── */
.ax-nav {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 36px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
}

/* ── Brand ── */
.ax-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 32px;
  padding-right: 32px;
  border-right: 1px solid var(--b1);
  height: 100%;
  transition: opacity 0.2s;
}
.ax-brand:hover { opacity: 0.85; }

.ax-brand__img-wrap {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--s2);
  border: 1px solid var(--b2);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.ax-brand:hover .ax-brand__img-wrap {
  border-color: var(--r-border);
  box-shadow: 0 0 18px var(--r-glow);
}
.ax-brand__img-wrap--empty {
  color: var(--r);
  background: var(--r-lo);
  border-color: var(--r-border);
}
.ax-brand__img-wrap--empty svg { width: 19px; height: 19px; }
.ax-brand__img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }

.ax-brand__text { display: flex; flex-direction: column; gap: 2px; }
.ax-brand__name {
  font-family: var(--f-h);
  font-size: 15px;
  font-weight: 800;
  color: var(--t1);
  letter-spacing: -0.02em;
  line-height: 1;
}
.ax-brand__sub {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--r);
  line-height: 1;
}

/* ── Links ── */
.ax-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  height: 100%;
  overflow-x: auto;
  overflow-y: visible;
}

.ax-link {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 13px;
  font-family: var(--f-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t2);
  text-decoration: none;
  border-radius: var(--rad);
  border: 1px solid transparent;
  white-space: nowrap;
  overflow: hidden;
  transition: color 0.18s, border-color 0.18s;
}

.ax-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--r-lo);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
  border-radius: inherit;
}
.ax-link:hover::before,
.ax-link--on::before { transform: scaleX(1); }
.ax-link:hover { color: var(--t1); border-color: var(--b1); }
.ax-link--on { color: var(--t1); border-color: var(--r-border); }

.ax-link__text { position: relative; z-index: 1; }

.ax-link__bar {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 50%;
  height: 2px;
  background: var(--r);
  border-radius: 2px 2px 0 0;
  transition: transform 0.2s ease;
}
.ax-link:hover .ax-link__bar,
.ax-link--on .ax-link__bar { transform: translateX(-50%) scaleX(1); }

/* ── Actions ── */
.ax-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: auto;
  padding-left: 24px;
  border-left: 1px solid var(--b1);
  height: 100%;
}

/* ── Currency ── */
.ax-currency {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 34px;
  padding: 0 10px;
  background: var(--s2);
  border: 1px solid var(--b1);
  border-radius: var(--rad);
  transition: border-color 0.2s;
}
.ax-currency:hover { border-color: var(--b2); }
.ax-currency__globe { width: 12px; height: 12px; color: var(--t3); flex-shrink: 0; }
.ax-currency__select {
  appearance: none;
  background: transparent;
  border: none;
  color: var(--t2);
  font-family: var(--f-b);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  padding-right: 8px;
}
.ax-currency__caret { width: 9px; height: 9px; color: var(--t3); flex-shrink: 0; pointer-events: none; }

/* ── Ghost btn ── */
.ax-ghost {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 34px;
  padding: 0 14px;
  font-family: var(--f-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--t2);
  background: var(--s2);
  border: 1px solid var(--b1);
  border-radius: var(--rad);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: color 0.18s, border-color 0.18s;
}
.ax-ghost::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--r-lo), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}
.ax-ghost:hover::before { opacity: 1; }
.ax-ghost:hover { color: var(--t1); border-color: var(--r-border); }
.ax-ghost svg { width: 14px; height: 14px; flex-shrink: 0; position: relative; z-index: 1; }
.ax-ghost--on { color: var(--t1) !important; background: var(--r-mid) !important; border-color: var(--r-border) !important; }

/* ── Cart ── */
.ax-cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--rad);
  border: 1px solid var(--b1);
  background: var(--s2);
  color: var(--t2);
  text-decoration: none;
  transition: color 0.18s, border-color 0.18s, background 0.18s;
  flex-shrink: 0;
}
.ax-cart:hover { color: var(--t1); border-color: var(--r-border); background: var(--r-lo); }
.ax-cart--on { color: var(--r-hi) !important; background: var(--r-lo) !important; border-color: var(--r-border) !important; }
.ax-cart svg { width: 16px; height: 16px; }
.ax-cart__badge {
  position: absolute;
  top: -6px; right: -6px;
  min-width: 16px; height: 16px;
  padding: 0 4px;
  background: var(--r);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px var(--r-glow);
  z-index: 10;
  animation: ax-pop 0.3s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes ax-pop {
  from { transform: scale(0); }
  to   { transform: scale(1); }
}

/* ── Stats ribbon ── */
.ax-ribbon {
  width: 100%;
  border-top: 1px solid var(--b1);
  background: var(--s1);
  position: relative;
}
.ax-ribbon::after {
  content: '';
  position: absolute;
  bottom: 0; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--r-glow), transparent);
}
.ax-ribbon__inner {
  width: 100%;
  padding: 0 36px;
  height: var(--ribbon-h);
  display: flex;
  align-items: center;
}
.ax-stat { display: flex; align-items: center; gap: 8px; padding-right: 18px; }
.ax-stat__num {
  font-family: var(--f-d);
  font-size: 16px;
  letter-spacing: 0.05em;
  color: var(--r-hi);
  line-height: 1;
}
.ax-stat__lbl {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--t3);
}
.ax-ribbon__div {
  width: 1px; height: 13px;
  background: var(--b2);
  margin-right: 18px;
  flex-shrink: 0;
}
.ax-ribbon__desc {
  font-size: 11px;
  color: var(--t3);
  margin-left: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 40%;
}

/* ── Utils ── */
.hide-scrollbar { scrollbar-width: none; -ms-overflow-style: none; }
.hide-scrollbar::-webkit-scrollbar { display: none; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .ax-nav, .ax-ribbon__inner { padding: 0 20px; }
  .ax-brand { margin-right: 20px; padding-right: 20px; }
  .ax-actions { padding-left: 16px; }
}
@media (max-width: 680px) {
  .ax-brand__text { display: none; }
  .ax-brand { margin-right: 12px; padding-right: 12px; }
  .ax-actions { padding-left: 10px; gap: 6px; }
  .ax-ribbon__desc { display: none; }
  :root { --total-h: 108px; }
}
@media (max-width: 480px) {
  .ax-links { display: none; }
  .ax-actions { border-left: none; }
}
/* ================================================
   AEXOR DESIGNS — Footer Component
   ================================================ */

/* Spacer so fixed header doesn't overlap (reuse if already declared) */
.ax-foot-spacer { display: none; }

.ax-footer {
  position: relative;
  width: 100vw !important;
  max-width: 100vw !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  background: var(--s0);
  border-top: 1px solid var(--b1);
  margin-top: 80px;
  overflow: hidden;
}

/* Red glow line at very top */
.ax-footer__glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--r-glow) 20%,
    var(--r) 40%,
    var(--r-hi) 50%,
    var(--r) 60%,
    var(--r-glow) 80%,
    transparent 100%
  );
  opacity: 0.6;
  pointer-events: none;
}

/* Corner grid pattern */
.ax-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--b1) 1px, transparent 1px),
    linear-gradient(90deg, var(--b1) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 0%, transparent 100%);
  pointer-events: none;
  opacity: 0.5;
}

/* ── Main grid ── */
.ax-footer__main {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 56px 48px 48px;
  display: flex;
  align-items: flex-start;
  gap: 0;
}

/* ── Brand block ── */
.ax-footer__brand {
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-right: 48px;
}

.ax-footer__logo-link {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.ax-footer__logo-wrap {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--b2);
  background: var(--s2);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.ax-footer__logo-link:hover .ax-footer__logo-wrap {
  border-color: var(--r-border);
  box-shadow: 0 0 18px var(--r-glow);
}

.ax-footer__logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.ax-footer__brand-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ax-footer__brand-name {
  font-family: var(--f-h);
  font-size: 16px;
  font-weight: 800;
  color: var(--t1);
  letter-spacing: -0.02em;
  line-height: 1;
}

.ax-footer__brand-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--r);
}

.ax-footer__brand-desc {
  font-size: 12.5px;
  color: var(--t3);
  line-height: 1.65;
  max-width: 240px;
}

/* ── Socials ── */
.ax-footer__socials {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.ax-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid var(--b1);
  background: var(--s2);
  color: var(--t3);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}

.ax-social svg { width: 15px; height: 15px; }

.ax-social:hover { background: var(--s3); color: var(--t1); }

.ax-social--discord:hover  { color: #5865f2; border-color: rgba(88,101,242,0.35); box-shadow: 0 0 12px rgba(88,101,242,0.2); }
.ax-social--telegram:hover { color: #29b6f6; border-color: rgba(41,182,246,0.35); box-shadow: 0 0 12px rgba(41,182,246,0.2); }
.ax-social--instagram:hover{ color: #e1306c; border-color: rgba(225,48,108,0.35); box-shadow: 0 0 12px rgba(225,48,108,0.2); }
.ax-social--tiktok:hover   { color: #f62755; border-color: rgba(246,39,85,0.35);  box-shadow: 0 0 12px rgba(246,39,85,0.2);  }
.ax-social--youtube:hover  { color: #ff0000; border-color: rgba(255,0,0,0.35);    box-shadow: 0 0 12px rgba(255,0,0,0.2);    }

/* ── Vertical divider ── */
.ax-footer__vdiv {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(180deg, transparent, var(--b2) 20%, var(--b2) 80%, transparent);
  flex-shrink: 0;
  margin: 0 48px;
}

/* ── Nav columns ── */
.ax-footer__nav {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 40px 24px;
}

.ax-footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ax-footer__col-title {
  font-family: var(--f-h);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--r);
  margin-bottom: 4px;
  display: block;
}

.ax-footer__navlink {
  font-size: 13px;
  font-weight: 400;
  color: var(--t3);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.18s, gap 0.18s;
  width: fit-content;
}

.ax-footer__navlink::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 1px;
  background: var(--r);
  transition: width 0.2s ease;
  flex-shrink: 0;
}

.ax-footer__navlink:hover {
  color: var(--t1);
}

.ax-footer__navlink:hover::before {
  width: 10px;
}

/* ── Bottom bar ── */
.ax-footer__bottom {
  position: relative;
  z-index: 1;
  width: 100%;
  border-top: 1px solid var(--b1);
  background: var(--s1);
}

.ax-footer__bottom-inner {
  width: 100%;
  padding: 0 48px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ax-footer__bottom-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.ax-footer__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--t3);
  font-family: var(--f-h);
  text-transform: uppercase;
}

.ax-footer__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--r);
  box-shadow: 0 0 6px var(--r-glow);
  animation: ax-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes ax-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px var(--r-glow); }
  50%       { opacity: 0.5; box-shadow: 0 0 12px var(--r-glow); }
}

.ax-footer__copy {
  font-size: 11px;
  color: var(--t3);
  opacity: 0.6;
}

.ax-footer__bottom-right {
  display: flex;
  align-items: center;
}

.ax-footer__made {
  font-size: 11px;
  color: var(--t3);
  opacity: 0.5;
}

.ax-footer__made-link {
  color: var(--r);
  text-decoration: none;
  font-weight: 600;
  opacity: 1;
  transition: opacity 0.18s;
}

.ax-footer__made-link:hover { opacity: 0.75; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .ax-footer__main {
    flex-direction: column;
    padding: 40px 24px 36px;
    gap: 36px;
  }
  .ax-footer__brand { flex: none; width: 100%; padding-right: 0; }
  .ax-footer__vdiv {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--b2) 20%, var(--b2) 80%, transparent);
    margin: 0;
    align-self: auto;
  }
  .ax-footer__nav { width: 100%; }
  .ax-footer__bottom-inner { padding: 0 24px; }
}

@media (max-width: 560px) {
  .ax-footer__nav { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .ax-footer__bottom-inner { flex-direction: column; height: auto; padding: 12px 24px; gap: 6px; }
  .ax-footer__made { display: none; }
}

/* ================================================
   AEXOR DESIGNS — Products Grid + Card
   ================================================ */

/* ── Products section ── */
.ax-products {
  width: 100%;
  padding: 48px 0 64px;
}

/* ── Section header ── */
.ax-products__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.ax-products__title-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ax-products__title-accent {
  display: block;
  width: 4px;
  height: 28px;
  background: linear-gradient(180deg, var(--r-hi), var(--r));
  border-radius: 4px;
  flex-shrink: 0;
  box-shadow: 0 0 12px var(--r-glow);
}

.ax-products__title {
  font-family: var(--f-h);
  font-size: 22px;
  font-weight: 800;
  color: var(--t1);
  letter-spacing: -0.02em;
}

/* ── Search ── */
.ax-products__search-wrap {
  flex-shrink: 0;
}

.ax-products__search {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 40px;
  padding: 0 14px;
  background: var(--s1);
  border: 1px solid var(--b1);
  border-radius: var(--rad);
  min-width: 260px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.ax-products__search:focus-within {
  border-color: var(--r-border);
  box-shadow: 0 0 0 3px var(--r-lo);
}

.ax-products__search-icon {
  width: 15px;
  height: 15px;
  color: var(--t3);
  flex-shrink: 0;
}

.ax-products__search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--t1);
  font-family: var(--f-b);
  font-size: 13px;
}

.ax-products__search-input::placeholder { color: var(--t3); }

.ax-products__search-kbd {
  display: flex;
}

.ax-products__search-kbd kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--s3);
  border: 1px solid var(--b2);
  border-radius: 4px;
  font-size: 10px;
  font-family: var(--f-b);
  color: var(--t3);
}

/* ── Grid ── */
.ax-products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  width: 100%;
}

.ax-products__grid--centered {
  justify-items: center;
}

.ax-products__item {
  width: 100%;
}

/* ── Card ── */
.ax-card {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: var(--t1);
  border-radius: 12px;
  outline: none;
  /* 3D transform base */
  transform: perspective(900px) rotateX(0deg) rotateY(0deg) scale3d(1,1,1);
  transition: transform 0.12s ease, box-shadow 0.2s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.ax-card:hover {
  box-shadow:
    0 20px 60px rgba(0,0,0,0.5),
    0 0 0 1px var(--r-border),
    0 0 40px var(--r-lo);
}

.ax-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--s1);
  border: 1px solid var(--b1);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
}

.ax-card:hover .ax-card__inner {
  border-color: var(--r-border);
}

/* Shine layer */
/* Kill the shine — removed */
.ax-card__shine {
  display: none !important;
}

/* ── Card image ── */
.ax-card__img-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--s2);
  border-bottom: 1px solid var(--b1);
}

.ax-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}

.ax-card__img--group {
  aspect-ratio: 21/9;
}

.ax-card:hover .ax-card__img {
  transform: scale(1.05);
}

.ax-card__img-empty {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--r);
  opacity: 0.25;
}

.ax-card__img-empty svg { width: 52px; height: 52px; }

/* Gradient overlay on image */
.ax-card__img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(0deg, var(--s1) 0%, transparent 100%);
  pointer-events: none;
}

/* ── Badges ── */
.ax-card__badges {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  z-index: 2;
}

.ax-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  font-family: var(--f-h);
  letter-spacing: 0.06em;
  color: #fff;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.ax-card__group-tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  border: 1px solid var(--b2);
  border-radius: 6px;
  font-size: 10px;
  font-weight: 600;
  font-family: var(--f-h);
  color: var(--t2);
  z-index: 2;
}

.ax-card__group-tag svg { width: 11px; height: 11px; }

.ax-card__stock {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 9px;
  border-radius: 6px;
  font-size: 9.5px;
  font-weight: 700;
  font-family: var(--f-h);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
  backdrop-filter: blur(6px);
}

.ax-card__stock--out {
  background: rgba(220,38,38,0.18);
  border: 1px solid rgba(220,38,38,0.3);
  color: #f87171;
}

.ax-card__stock--inf {
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.25);
  color: #4ade80;
}

/* ── Card body ── */
.ax-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 16px 18px 18px;
  gap: 12px;
}

.ax-card__body-top {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.ax-card__name {
  font-family: var(--f-h);
  font-size: 15px;
  font-weight: 700;
  color: var(--t1);
  letter-spacing: -0.01em;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ax-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.ax-card__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--t3);
  font-weight: 500;
}

.ax-card__meta-item svg { width: 12px; height: 12px; }

/* ── Price ── */
.ax-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.ax-card__price {
  font-family: var(--f-h);
  font-size: 18px;
  font-weight: 800;
  color: var(--r-hi);
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.ax-card__price-sep {
  font-size: 13px;
  color: var(--t3);
  font-weight: 400;
}

.ax-card__price-slash {
  font-size: 12px;
  color: var(--t3);
  text-decoration: line-through;
  font-weight: 400;
}

/* ── CTA ── */
.ax-card__cta {
  margin-top: auto;
}

.ax-card__cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 36px;
  padding: 0 16px;
  background: var(--r);
  border-radius: 8px;
  font-family: var(--f-h);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  border: none;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
  z-index: 10;
  pointer-events: all !important;
}

.ax-card__cta-btn:hover {
  background: var(--r-hi);
}

.ax-card__cta-btn svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.ax-card__cta-btn--ghost {
  background: transparent;
  border: 1px solid var(--r-border);
  color: var(--r-hi);
}

.ax-card__cta-btn--ghost:hover {
  background: var(--r-lo);
}


.ax-card__cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.10), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.ax-card:hover .ax-card__cta-btn::before {
  transform: translateX(100%);
}

.ax-card:hover .ax-card__cta-btn {
  background: var(--r-hi);
}

.ax-card__cta-btn svg { width: 13px; height: 13px; flex-shrink: 0; }

.ax-card__cta-btn--ghost {
  background: transparent;
  border: 1px solid var(--r-border);
  color: var(--r-hi);
}

.ax-card:hover .ax-card__cta-btn--ghost {
  background: var(--r-lo);
}

/* ── Modal ── */
.ax-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.ax-modal-backdrop__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.ax-modal {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
  max-height: 88vh;
  overflow-y: auto;
  background: var(--s1);
  border: 1px solid var(--b2);
  border-radius: 14px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 0 0 1px var(--r-border);
  scrollbar-width: thin;
  scrollbar-color: var(--b2) transparent;
}

.ax-modal__glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--r), transparent);
  opacity: 0.6;
  pointer-events: none;
}

.ax-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--b1);
  position: sticky;
  top: 0;
  background: var(--s1);
  z-index: 2;
}

.ax-modal__title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ax-modal__title-pip {
  display: block;
  width: 3px;
  height: 20px;
  background: var(--r);
  border-radius: 3px;
  flex-shrink: 0;
}

.ax-modal__title {
  font-family: var(--f-h);
  font-size: 17px;
  font-weight: 800;
  color: var(--t1);
  letter-spacing: -0.02em;
}

.ax-modal__count {
  font-size: 11px;
  font-weight: 600;
  color: var(--t3);
  background: var(--s3);
  border: 1px solid var(--b1);
  border-radius: 99px;
  padding: 2px 10px;
  font-family: var(--f-h);
}

.ax-modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--s2);
  border: 1px solid var(--b1);
  border-radius: 8px;
  color: var(--t3);
  cursor: pointer;
  transition: color 0.18s, border-color 0.18s, background 0.18s;
}

.ax-modal__close:hover {
  color: var(--t1);
  border-color: var(--r-border);
  background: var(--r-lo);
}

.ax-modal__close svg { width: 15px; height: 15px; }

.ax-modal__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  padding: 20px 24px 24px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .ax-products__header { flex-direction: column; align-items: flex-start; }
  .ax-products__search { min-width: 100%; }
  .ax-products__search-wrap { width: 100%; }
  .ax-products__grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; }
  .ax-modal { max-height: 92vh; }
  .ax-modal__grid { grid-template-columns: 1fr 1fr; gap: 12px; padding: 16px; }
}

@media (max-width: 480px) {
  .ax-products__grid { grid-template-columns: 1fr; }
  .ax-modal__grid { grid-template-columns: 1fr; }
}

/* Card clickable areas */
.ax-card { cursor: default; }
.ax-card__nav { cursor: pointer; }
.ax-card__cta-btn { cursor: pointer; }

/* Ensure tilt transition only on leave, not during move */
.ax-card {
  transition: box-shadow 0.2s ease, transform 0.08s ease;
  transform-style: preserve-3d;
  will-change: transform;
}
.ax-card.ax-card--resetting {
  transition: transform 0.35s cubic-bezier(0.23,1,0.32,1), box-shadow 0.2s ease;
}

/* ================================================
   AEXOR DESIGNS — Hero Component
   ================================================ */

.ax-hero {
  position: relative;
  width: 100vw !important;
  max-width: 100vw !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  overflow: hidden;
  padding: 96px 0 112px;
  background: var(--bg);
}

/* Background layers */
.ax-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.ax-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--b1) 1px, transparent 1px),
    linear-gradient(90deg, var(--b1) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 0%, transparent 100%);
  opacity: 0.6;
}

.ax-hero__glow-left {
  position: absolute;
  top: -60px;
  left: -120px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--r-glow) 0%, transparent 70%);
  opacity: 0.45;
  filter: blur(40px);
}

.ax-hero__glow-right {
  position: absolute;
  bottom: -80px;
  right: -100px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,48,37,0.12) 0%, transparent 70%);
  opacity: 0.5;
  filter: blur(60px);
}

/* Content */
.ax-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}

/* Eyebrow badge */
.ax-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 16px;
  background: var(--r-lo);
  border: 1px solid var(--r-border);
  border-radius: 99px;
  font-family: var(--f-h);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--r-hi);
}

.ax-hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--r);
  box-shadow: 0 0 8px var(--r-glow);
  animation: ax-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* Headline */
.ax-hero__headline {
  font-family: var(--f-h);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--t1);
  max-width: 800px;
}

.ax-hero__headline mark,
.ax-hero__headline .ax-hl {
  background: none;
  color: transparent;
  background-image: linear-gradient(90deg, var(--r-hi), #ff6b5a);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Sub */
.ax-hero__sub {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--t2);
  line-height: 1.65;
  max-width: 580px;
  font-family: var(--f-b);
}

/* CTAs */
.ax-hero__ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4px;
}

.ax-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 44px;
  padding: 0 26px;
  border-radius: 10px;
  font-family: var(--f-h);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.2s ease;
}

.ax-hero__cta:hover { transform: translateY(-1px); }

.ax-hero__cta svg { width: 15px; height: 15px; flex-shrink: 0; }

.ax-hero__cta--primary {
  background: var(--r);
  color: #fff;
  box-shadow: 0 6px 28px var(--r-glow);
}

.ax-hero__cta--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.ax-hero__cta--primary:hover::before { transform: translateX(100%); }
.ax-hero__cta--primary:hover { background: var(--r-hi); box-shadow: 0 8px 36px var(--r-glow); }

.ax-hero__cta--secondary {
  background: var(--s2);
  color: var(--t2);
  border: 1px solid var(--b2);
}

.ax-hero__cta--secondary:hover {
  color: var(--t1);
  border-color: var(--r-border);
  background: var(--r-lo);
  box-shadow: 0 4px 20px var(--r-lo);
}

/* Trust badges */
.ax-hero__trust {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
  padding: 12px 20px;
  background: var(--s1);
  border: 1px solid var(--b1);
  border-radius: 12px;
  margin-top: 4px;
}

.ax-hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 18px;
  font-family: var(--f-h);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--t3);
}

.ax-hero__trust-item svg { width: 14px; height: 14px; color: var(--r); flex-shrink: 0; }

.ax-hero__trust-sep {
  width: 1px;
  height: 14px;
  background: var(--b2);
  flex-shrink: 0;
}

/* Stats */
.ax-hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 8px;
}

.ax-hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 36px;
}

.ax-hero__stat-num {
  font-family: var(--f-d);
  font-size: 34px;
  letter-spacing: 0.04em;
  color: var(--r-hi);
  line-height: 1;
}

.ax-hero__stat-unit {
  font-size: 18px;
  color: var(--t3);
}

.ax-hero__stat-lbl {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--t3);
}

.ax-hero__stat-div {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, var(--b2), transparent);
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 640px) {
  .ax-hero { padding: 72px 0 88px; }
  .ax-hero__inner { padding: 0 20px; gap: 20px; }
  .ax-hero__trust { flex-direction: column; gap: 8px; }
  .ax-hero__trust-sep { display: none; }
  .ax-hero__stats { flex-direction: column; gap: 20px; }
  .ax-hero__stat-div { display: none; }
  .ax-hero__stat { padding: 0; }
  .ax-hero__ctas { flex-direction: column; width: 100%; }
  .ax-hero__cta { width: 100%; justify-content: center; }
}

/* ================================================
   AEXOR DESIGNS — Features Component
   ================================================ */

.ax-features {
  padding: 64px 0 72px;
  width: 100%;
}

.ax-features__header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
}

.ax-features__header-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ax-features__header-accent {
  display: block;
  width: 4px;
  height: 28px;
  background: linear-gradient(180deg, var(--r-hi), var(--r));
  border-radius: 4px;
  flex-shrink: 0;
  box-shadow: 0 0 12px var(--r-glow);
}

.ax-features__title {
  font-family: var(--f-h);
  font-size: 22px;
  font-weight: 800;
  color: var(--t1);
  letter-spacing: -0.02em;
}

.ax-features__subtitle {
  font-size: 13.5px;
  color: var(--t3);
  line-height: 1.6;
  max-width: 520px;
  margin-left: 18px;
}

/* Grid */
.ax-features__grid {
  display: grid;
  gap: 18px;
  width: 100%;
}

.ax-features__grid--2 { grid-template-columns: repeat(2, 1fr); }
.ax-features__grid--3 { grid-template-columns: repeat(3, 1fr); }
.ax-features__grid--4 { grid-template-columns: repeat(4, 1fr); }

/* Feature card */
.ax-feat-card {
  position: relative;
  background: var(--s1);
  border: 1px solid var(--b1);
  border-radius: 14px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.ax-feat-card:hover {
  border-color: var(--r-border);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35), 0 0 0 1px var(--r-border), 0 0 28px var(--r-lo);
  transform: translateY(-2px);
}

/* Bottom red accent line on hover */
.ax-feat-card__line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--r), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}

.ax-feat-card:hover .ax-feat-card__line { opacity: 1; }

/* Icon */
.ax-feat-card__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--r-lo);
  border: 1px solid var(--r-border);
  color: var(--r-hi);
  font-size: 18px;
  flex-shrink: 0;
  transition: background 0.2s, box-shadow 0.2s;
}

.ax-feat-card:hover .ax-feat-card__icon-wrap {
  background: var(--r-mid);
  box-shadow: 0 0 20px var(--r-glow);
}

.ax-feat-card__icon-wrap svg { width: 20px; height: 20px; }

/* Body */
.ax-feat-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.ax-feat-card__title {
  font-family: var(--f-h);
  font-size: 15px;
  font-weight: 700;
  color: var(--t1);
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.ax-feat-card__desc {
  font-size: 13px;
  color: var(--t3);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .ax-features__grid--4 { grid-template-columns: repeat(2, 1fr); }
  .ax-features__grid--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .ax-features__grid--4,
  .ax-features__grid--3,
  .ax-features__grid--2 { grid-template-columns: 1fr; }
}

/* ================================================
   AEXOR DESIGNS — Feedbacks / Reviews Component
   ================================================ */

.ax-reviews {
  padding: 48px 0 64px;
  width: 100%;
}

.ax-reviews__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.ax-reviews__title-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ax-reviews__title-accent {
  display: block;
  width: 4px;
  height: 28px;
  background: linear-gradient(180deg, var(--r-hi), var(--r));
  border-radius: 4px;
  flex-shrink: 0;
  box-shadow: 0 0 12px var(--r-glow);
}

.ax-reviews__title {
  font-family: var(--f-h);
  font-size: 22px;
  font-weight: 800;
  color: var(--t1);
  letter-spacing: -0.02em;
}

.ax-reviews__sort {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.ax-reviews__sort-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--t3);
  font-family: var(--f-h);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Grid */
.ax-reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  width: 100%;
}

/* Individual review card */
.ax-review-card {
  position: relative;
  background: var(--s1);
  border: 1px solid var(--b1);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.ax-review-card:hover {
  border-color: var(--r-border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 20px var(--r-lo);
}

.ax-review-card__top-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--r-glow), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}

.ax-review-card:hover .ax-review-card__top-line { opacity: 1; }

.ax-review-card__body {
  flex: 1;
  padding: 18px 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ax-review-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.ax-review-card__stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

.ax-review-card__star-filled {
  color: var(--r-hi);
  width: 14px;
  height: 14px;
}

.ax-review-card__star-empty {
  color: var(--t3);
  width: 14px;
  height: 14px;
  opacity: 0.4;
}

.ax-review-card__date {
  font-size: 10.5px;
  color: var(--t3);
  font-weight: 500;
  font-family: var(--f-b);
}

.ax-review-card__message {
  font-size: 13.5px;
  color: var(--t2);
  line-height: 1.6;
  word-break: break-word;
}

.ax-review-card__message--truncated {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ax-review-card__reply {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--b1);
  border-left: 2px solid var(--r);
  border-radius: 8px;
  padding: 10px 12px;
  margin-top: 2px;
}

.ax-review-card__reply-text {
  font-size: 12.5px;
  color: var(--t3);
  line-height: 1.55;
}

.ax-review-card__reply-meta {
  font-size: 10px;
  color: var(--t3);
  opacity: 0.6;
  margin-top: 6px;
  text-align: right;
}

.ax-review-card__reply-meta span {
  color: var(--r);
  opacity: 1;
}

/* Footer */
.ax-review-card__footer {
  padding: 9px 18px;
  border-top: 1px solid var(--b1);
  background: rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 6px;
}

.ax-review-card__product {
  font-size: 10.5px;
  color: var(--t3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ax-review-card__product-icon {
  width: 12px;
  height: 12px;
  color: var(--r);
  flex-shrink: 0;
}

/* View all link */
.ax-reviews__view-all {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.ax-reviews__view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 22px;
  background: transparent;
  border: 1px solid var(--r-border);
  border-radius: 8px;
  font-family: var(--f-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--r-hi);
  text-decoration: none;
  transition: background 0.18s, box-shadow 0.18s;
}

.ax-reviews__view-all-link:hover {
  background: var(--r-lo);
  box-shadow: 0 0 20px var(--r-lo);
}

.ax-reviews__view-all-link svg { width: 13px; height: 13px; }

.ax-reviews__empty {
  font-size: 14px;
  color: var(--t3);
  padding: 24px 0;
}

/* ================================================
   AEXOR DESIGNS — FAQ Component
   ================================================ */

.ax-faq {
  padding: 48px 0 64px;
  width: 100%;
}

.ax-faq__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}

.ax-faq__header-accent {
  display: block;
  width: 4px;
  height: 28px;
  background: linear-gradient(180deg, var(--r-hi), var(--r));
  border-radius: 4px;
  flex-shrink: 0;
  box-shadow: 0 0 12px var(--r-glow);
}

.ax-faq__title {
  font-family: var(--f-h);
  font-size: 22px;
  font-weight: 800;
  color: var(--t1);
  letter-spacing: -0.02em;
}

.ax-faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 820px;
}

/* FAQ accordion item */
.ax-faq-item {
  background: var(--s1);
  border: 1px solid var(--b1);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.ax-faq-item--open,
.ax-faq-item:hover {
  border-color: var(--r-border);
}

.ax-faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.ax-faq-item__q {
  font-family: var(--f-h);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--t1);
  letter-spacing: -0.01em;
  line-height: 1.35;
  flex: 1;
}

.ax-faq-item__icon {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: var(--s2);
  border: 1px solid var(--b1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, transform 0.25s ease;
  color: var(--t3);
}

.ax-faq-item--open .ax-faq-item__icon {
  background: var(--r-lo);
  border-color: var(--r-border);
  color: var(--r-hi);
  transform: rotate(45deg);
}

.ax-faq-item__icon svg { width: 11px; height: 11px; }

.ax-faq-item__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease, padding 0.2s ease;
}

.ax-faq-item--open .ax-faq-item__answer {
  /* max-height set by JS / Alpine */
}

.ax-faq-item__answer-inner {
  padding: 0 22px 20px;
  border-top: 1px solid var(--b1);
  padding-top: 16px;
  margin-top: -1px;
}

.ax-faq-item__a {
  font-size: 13.5px;
  color: var(--t3);
  line-height: 1.7;
  white-space: pre-line;
}

/* ================================================
   AEXOR DESIGNS — Text Block Component
   ================================================ */

.ax-text-block {
  padding: 40px 0 56px;
  width: 100%;
}

.ax-text-block--bg {
  background: var(--s1);
  border: 1px solid var(--b1);
  border-radius: 14px;
  padding: 36px 40px;
}

.ax-text-block__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.ax-text-block__header--center {
  justify-content: center;
  text-align: center;
}

.ax-text-block__header--right {
  justify-content: flex-end;
  text-align: right;
}

.ax-text-block__title-accent {
  display: block;
  width: 4px;
  height: 28px;
  background: linear-gradient(180deg, var(--r-hi), var(--r));
  border-radius: 4px;
  flex-shrink: 0;
  box-shadow: 0 0 12px var(--r-glow);
}

.ax-text-block__title {
  font-family: var(--f-h);
  font-size: 22px;
  font-weight: 800;
  color: var(--t1);
  letter-spacing: -0.02em;
}

.ax-text-block__body {
  font-size: 14px;
  color: var(--t3);
  line-height: 1.7;
  max-width: 720px;
  white-space: pre-line;
}

.ax-text-block__body--center { margin: 0 auto; text-align: center; }
.ax-text-block__body--right { margin-left: auto; text-align: right; }

.ax-text-block__buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.ax-text-block__buttons--center { justify-content: center; }
.ax-text-block__buttons--right { justify-content: flex-end; }

/* ================================================
   AEXOR DESIGNS — Product Page Enhancements
   ================================================ */

/* Product page wrapper */
.ax-product-page {
  padding: 32px 0 64px;
  width: 100%;
}

/* Breadcrumb */
.ax-product-page__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 12px;
  font-family: var(--f-h);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--t3);
}

.ax-product-page__breadcrumb a {
  color: var(--t3);
  text-decoration: none;
  transition: color 0.18s;
}

.ax-product-page__breadcrumb a:hover { color: var(--r-hi); }
.ax-product-page__breadcrumb-sep { color: var(--b2); }
.ax-product-page__breadcrumb-current { color: var(--t2); }

/* Layout */
.ax-product-page__layout {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.ax-product-page__left { flex: 0 0 60%; }
.ax-product-page__right { flex: 0 0 calc(40% - 28px); }

/* Main card */
.ax-product-page__card {
  background: var(--s1);
  border: 1px solid var(--b1);
  border-radius: 14px;
  overflow: hidden;
}

/* Product title bar */
.ax-product-page__title-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--b1);
  background: rgba(0,0,0,0.2);
}

.ax-product-page__title {
  font-family: var(--f-h);
  font-size: 20px;
  font-weight: 800;
  color: var(--t1);
  letter-spacing: -0.02em;
  line-height: 1.25;
  flex: 1;
}

/* Status badge */
.ax-product-page__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex-shrink: 0;
}

/* Tabs */
.ax-product-page__tabs {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 20px 0;
  border-bottom: 1px solid var(--b1);
  overflow-x: auto;
}

.ax-product-page__tab {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 14px;
  font-family: var(--f-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--t3);
  background: transparent;
  border: none;
  border-radius: 8px 8px 0 0;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color 0.18s, border-color 0.18s;
  white-space: nowrap;
  position: relative;
  bottom: -1px;
}

.ax-product-page__tab:hover { color: var(--t2); }
.ax-product-page__tab--active { color: var(--r-hi); border-bottom-color: var(--r); }

/* Description area */
.ax-product-page__desc {
  padding: 24px;
}

/* Sidebar purchase card */
.ax-product-page__buy-card {
  background: var(--s1);
  border: 1px solid var(--b1);
  border-radius: 14px;
  overflow: hidden;
  position: sticky;
  top: calc(var(--total-h) + 20px);
}

/* Price block */
.ax-product-page__price-block {
  padding: 20px 24px;
  border-bottom: 1px solid var(--b1);
  background: rgba(0,0,0,0.2);
}

.ax-product-page__price {
  font-family: var(--f-h);
  font-size: 28px;
  font-weight: 800;
  color: var(--r-hi);
  letter-spacing: -0.02em;
}

.ax-product-page__price-each {
  font-size: 12px;
  color: var(--t3);
  margin-top: 2px;
}

/* Upsells */
.ax-product-page__upsells-title {
  font-family: var(--f-h);
  font-size: 16px;
  font-weight: 800;
  color: var(--t1);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  padding-left: 14px;
  border-left: 3px solid var(--r);
}

/* Responsive */
@media (max-width: 900px) {
  .ax-product-page__layout { flex-direction: column; }
  .ax-product-page__left,
  .ax-product-page__right { flex: none; width: 100%; }
  .ax-product-page__buy-card { position: static; }
}

/* ================================================
   AEXOR DESIGNS — Customer Login Modal
   ================================================ */

.ax-login-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.ax-login-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.ax-login-modal {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  background: var(--s1);
  border: 1px solid var(--b2);
  border-radius: 16px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 0 0 1px var(--r-border);
  overflow: hidden;
}

.ax-login-modal__top-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--r), var(--r-hi), var(--r), transparent);
}

.ax-login-modal__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 28px 32px 0;
  text-align: center;
}

.ax-login-modal__logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--r-lo);
  border: 1px solid var(--r-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--r-hi);
  box-shadow: 0 0 20px var(--r-glow);
}

.ax-login-modal__logo svg { width: 22px; height: 22px; }

.ax-login-modal__title {
  font-family: var(--f-h);
  font-size: 18px;
  font-weight: 800;
  color: var(--t1);
  letter-spacing: -0.02em;
}

.ax-login-modal__sub {
  font-size: 12.5px;
  color: var(--t3);
  line-height: 1.5;
}

.ax-login-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--s2);
  border: 1px solid var(--b1);
  border-radius: 7px;
  color: var(--t3);
  cursor: pointer;
  transition: color 0.18s, border-color 0.18s, background 0.18s;
}

.ax-login-modal__close:hover {
  color: var(--t1);
  border-color: var(--r-border);
  background: var(--r-lo);
}

.ax-login-modal__close svg { width: 13px; height: 13px; }

.ax-login-modal__body {
  padding: 24px 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ax-login-modal__step-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--t3);
  font-family: var(--f-h);
}

.ax-login-modal__hint {
  font-size: 12px;
  color: var(--t3);
  margin-top: 4px;
}

.ax-login-modal__input-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ax-login-modal__input {
  width: 100%;
  height: 42px;
  padding: 0 14px;
  background: var(--s2);
  border: 1px solid var(--b2);
  border-radius: 9px;
  color: var(--t1);
  font-family: var(--f-b);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.ax-login-modal__input:focus {
  border-color: var(--r-border);
  box-shadow: 0 0 0 3px var(--r-lo);
}

.ax-login-modal__input::placeholder { color: var(--t3); }

.ax-login-modal__otp-row {
  display: flex;
  gap: 8px;
}

.ax-login-modal__otp-box {
  flex: 1;
  height: 48px;
  background: var(--s2);
  border: 1px solid var(--b2);
  border-radius: 9px;
  color: var(--t1);
  font-family: var(--f-h);
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.ax-login-modal__otp-box:focus {
  border-color: var(--r-border);
  box-shadow: 0 0 0 3px var(--r-lo);
}

.ax-login-modal__error {
  font-size: 12px;
  color: #f87171;
  font-weight: 500;
}

.ax-login-modal__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 42px;
  background: var(--r);
  border: none;
  border-radius: 9px;
  font-family: var(--f-h);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.2s, box-shadow 0.2s;
}

.ax-login-modal__submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.ax-login-modal__submit:hover::before { transform: translateX(100%); }
.ax-login-modal__submit:hover { background: var(--r-hi); box-shadow: 0 4px 20px var(--r-glow); }
.ax-login-modal__submit:disabled { opacity: 0.5; pointer-events: none; }
.ax-login-modal__submit svg { width: 16px; height: 16px; }

.ax-login-modal__divider {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ax-login-modal__divider-line {
  flex: 1;
  height: 1px;
  background: var(--b1);
}

.ax-login-modal__divider-text {
  font-size: 10px;
  color: var(--t3);
  font-family: var(--f-h);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ax-login-modal__security-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 10.5px;
  color: var(--t3);
  opacity: 0.7;
}

.ax-login-modal__security-note svg { width: 12px; height: 12px; color: var(--r); }

/* ================================================
   AEXOR DESIGNS — Cart / Checkout Page
   ================================================ */

.ax-cart-page {
  padding: 32px 0 80px;
  width: 100%;
}

.ax-cart-page__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.ax-cart-page__header-accent {
  display: block;
  width: 4px;
  height: 28px;
  background: linear-gradient(180deg, var(--r-hi), var(--r));
  border-radius: 4px;
  flex-shrink: 0;
  box-shadow: 0 0 12px var(--r-glow);
}

.ax-cart-page__title {
  font-family: var(--f-h);
  font-size: 22px;
  font-weight: 800;
  color: var(--t1);
  letter-spacing: -0.02em;
}

.ax-cart-page__count {
  font-size: 11px;
  font-weight: 700;
  color: var(--t3);
  background: var(--s3);
  border: 1px solid var(--b1);
  border-radius: 99px;
  padding: 2px 12px;
  font-family: var(--f-h);
}

.ax-cart-page__layout {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.ax-cart-page__items { flex: 1; }

.ax-cart-page__sidebar {
  flex: 0 0 300px;
  position: sticky;
  top: calc(var(--total-h) + 20px);
}

/* Flash messages */
.ax-cart-alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  background: var(--r-lo);
  border: 1px solid var(--r-border);
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--t2);
}

/* Loading state */
.ax-cart-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  background: var(--s1);
  border: 1px solid var(--b1);
  border-radius: 14px;
  color: var(--r);
}

/* Empty cart */
.ax-cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 56px 24px;
  background: var(--s1);
  border: 1px solid var(--b1);
  border-radius: 14px;
  text-align: center;
}

.ax-cart-empty__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--r-lo);
  border: 1px solid var(--r-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--r);
}

.ax-cart-empty__icon svg { width: 24px; height: 24px; }

.ax-cart-empty__title {
  font-family: var(--f-h);
  font-size: 16px;
  font-weight: 700;
  color: var(--t2);
}

.ax-cart-empty__sub { font-size: 13px; color: var(--t3); }

.ax-cart-empty__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 20px;
  background: var(--r);
  border-radius: 8px;
  font-family: var(--f-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
}

.ax-cart-empty__cta:hover { background: var(--r-hi); }

/* Cart item */
.ax-cart-items { display: flex; flex-direction: column; gap: 12px; }

.ax-cart-item {
  background: var(--s1);
  border: 1px solid var(--b1);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  transition: border-color 0.2s;
}

.ax-cart-item:hover { border-color: var(--r-border); }

.ax-cart-item__img-wrap {
  width: 110px;
  flex-shrink: 0;
  background: var(--s2);
  border-right: 1px solid var(--b1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ax-cart-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ax-cart-item__img-placeholder {
  color: var(--r);
  opacity: 0.2;
}

.ax-cart-item__img-placeholder svg { width: 36px; height: 36px; }

.ax-cart-item__info {
  flex: 1;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow: hidden;
}

.ax-cart-item__name {
  font-family: var(--f-h);
  font-size: 14px;
  font-weight: 700;
  color: var(--t1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
  transition: color 0.18s;
}

.ax-cart-item__name:hover { color: var(--r-hi); }

.ax-cart-item__variant {
  font-size: 12px;
  color: var(--t3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ax-cart-item__volume-hint {
  font-size: 10.5px;
  color: var(--r);
  opacity: 0.8;
}

.ax-cart-item__addons {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-top: 2px;
}

.ax-cart-item__addon-tag {
  display: inline-flex;
  padding: 1px 7px;
  background: var(--s2);
  border: 1px solid var(--b1);
  border-radius: 5px;
  font-size: 10px;
  color: var(--t3);
}

.ax-cart-item__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 16px 0 0;
  flex-shrink: 0;
}

/* Quantity control */
.ax-qty {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--b2);
  border-radius: 8px;
  overflow: hidden;
  background: var(--s2);
}

.ax-qty__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  color: var(--t3);
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}

.ax-qty__btn:hover { background: var(--r-lo); color: var(--r-hi); }
.ax-qty__btn:disabled { opacity: 0.35; pointer-events: none; }
.ax-qty__btn svg { width: 13px; height: 13px; }

.ax-qty__input {
  width: 40px;
  background: transparent;
  border: none;
  border-left: 1px solid var(--b1);
  border-right: 1px solid var(--b1);
  color: var(--t1);
  font-family: var(--f-b);
  font-size: 13px;
  text-align: center;
  outline: none;
}

.ax-cart-item__price {
  font-family: var(--f-h);
  font-size: 16px;
  font-weight: 700;
  color: var(--r-hi);
  min-width: 72px;
  text-align: right;
}

.ax-cart-item__remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: transparent;
  border: 1px solid var(--b1);
  border-radius: 7px;
  color: var(--t3);
  cursor: pointer;
  transition: color 0.18s, border-color 0.18s, background 0.18s;
}

.ax-cart-item__remove:hover {
  color: #f87171;
  border-color: rgba(248,113,113,0.35);
  background: rgba(248,113,113,0.08);
}

.ax-cart-item__remove svg { width: 12px; height: 12px; }

/* Order summary */
.ax-cart-summary {
  background: var(--s1);
  border: 1px solid var(--b1);
  border-radius: 14px;
  overflow: hidden;
}

.ax-cart-summary__top-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--r), transparent);
  opacity: 0.5;
}

.ax-cart-summary__header {
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--b1);
  background: rgba(0,0,0,0.15);
}

.ax-cart-summary__title {
  font-family: var(--f-h);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--t3);
}

.ax-cart-summary__body { padding: 16px 20px; display: flex; flex-direction: column; gap: 10px; }

.ax-cart-summary__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.ax-cart-summary__label { font-size: 13px; color: var(--t3); }
.ax-cart-summary__value { font-size: 13px; color: var(--t2); font-weight: 600; font-family: var(--f-h); }

.ax-cart-summary__total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--b1);
}

.ax-cart-summary__total-label {
  font-family: var(--f-h);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--t2);
}

.ax-cart-summary__total-price {
  font-family: var(--f-h);
  font-size: 22px;
  font-weight: 800;
  color: var(--r-hi);
  letter-spacing: -0.02em;
}

.ax-cart-summary__error {
  margin: 0 20px;
  padding: 12px 16px;
  background: rgba(248,113,113,0.08);
  border: 1px solid rgba(248,113,113,0.3);
  border-radius: 8px;
  font-size: 13px;
  color: #f87171;
}

.ax-cart-summary__footer { padding: 0 20px 20px; }

.ax-cart-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 46px;
  background: var(--r);
  border: none;
  border-radius: 10px;
  font-family: var(--f-h);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.2s, box-shadow 0.2s;
}

.ax-cart-checkout-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.ax-cart-checkout-btn:not(:disabled):hover::before { transform: translateX(100%); }
.ax-cart-checkout-btn:not(:disabled):hover { background: var(--r-hi); box-shadow: 0 6px 24px var(--r-glow); }
.ax-cart-checkout-btn:disabled { opacity: 0.5; pointer-events: none; }
.ax-cart-checkout-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.ax-cart-checkout-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 11px;
  color: var(--t3);
  opacity: 0.7;
}

.ax-cart-checkout-guarantee svg { width: 12px; height: 12px; color: var(--r); }

@media (max-width: 800px) {
  .ax-cart-page__layout { flex-direction: column; }
  .ax-cart-page__sidebar { flex: none; width: 100%; position: static; }
  .ax-cart-item__img-wrap { width: 80px; }
  .ax-cart-item__actions { gap: 10px; }
}

/* ================================================
   AEXOR DESIGNS — Blog
   ================================================ */

.ax-blog { padding: 40px 0 64px; width: 100%; }

.ax-blog__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.ax-blog__title-wrap { display: flex; align-items: center; gap: 14px; }
.ax-blog__title-accent {
  display: block;
  width: 4px;
  height: 28px;
  background: linear-gradient(180deg, var(--r-hi), var(--r));
  border-radius: 4px;
  flex-shrink: 0;
  box-shadow: 0 0 12px var(--r-glow);
}

.ax-blog__title {
  font-family: var(--f-h);
  font-size: 22px;
  font-weight: 800;
  color: var(--t1);
  letter-spacing: -0.02em;
}

.ax-blog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

/* Blog card */
.ax-blog-card {
  display: flex;
  flex-direction: column;
  background: var(--s1);
  border: 1px solid var(--b1);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: var(--t1);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
  height: 100%;
}

.ax-blog-card:hover {
  border-color: var(--r-border);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35), 0 0 24px var(--r-lo);
  transform: translateY(-2px);
}

.ax-blog-card__img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--s2);
  border-bottom: 1px solid var(--b1);
}

.ax-blog-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}

.ax-blog-card:hover .ax-blog-card__img { transform: scale(1.04); }

.ax-blog-card__img-empty {
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--r);
  opacity: 0.2;
}

.ax-blog-card__img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(0deg, var(--s1), transparent);
  pointer-events: none;
}

.ax-blog-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 20px 20px;
}

.ax-blog-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--f-h);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--r-hi);
  background: var(--r-lo);
  border: 1px solid var(--r-border);
  border-radius: 5px;
  padding: 2px 8px;
  width: fit-content;
}

.ax-blog-card__name {
  font-family: var(--f-h);
  font-size: 15px;
  font-weight: 700;
  color: var(--t1);
  letter-spacing: -0.01em;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ax-blog-card__summary {
  font-size: 12.5px;
  color: var(--t3);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.ax-blog-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid var(--b1);
  margin-top: 4px;
}

.ax-blog-card__date {
  font-size: 10.5px;
  color: var(--t3);
  font-family: var(--f-b);
  font-weight: 500;
}

.ax-blog-card__read {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--f-h);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--r-hi);
}

.ax-blog-card__read svg { width: 11px; height: 11px; }

/* Blog post page */
.ax-blog-post { padding: 40px 0 80px; width: 100%; }

.ax-blog-post__back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--f-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t3);
  text-decoration: none;
  margin-bottom: 24px;
  transition: color 0.18s;
}

.ax-blog-post__back:hover { color: var(--r-hi); }
.ax-blog-post__back svg { width: 13px; height: 13px; }

.ax-blog-post__card {
  background: var(--s1);
  border: 1px solid var(--b1);
  border-radius: 16px;
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto;
}

.ax-blog-post__hero {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--b1);
}

.ax-blog-post__meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 28px;
  border-bottom: 1px solid var(--b1);
  background: rgba(0,0,0,0.15);
  flex-wrap: wrap;
}

.ax-blog-post__tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--f-h);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--r-hi);
  background: var(--r-lo);
  border: 1px solid var(--r-border);
  border-radius: 5px;
  padding: 3px 10px;
}

.ax-blog-post__date {
  font-size: 11px;
  color: var(--t3);
  font-family: var(--f-b);
}

.ax-blog-post__body { padding: 32px 36px 40px; }

.ax-blog-post__title {
  font-family: var(--f-h);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--t1);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 12px;
}

.ax-blog-post__summary {
  font-size: 15px;
  color: var(--t2);
  line-height: 1.65;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--b1);
}

.ax-blog-post__content { font-size: 14.5px; color: var(--t2); line-height: 1.8; }

@media (max-width: 640px) {
  .ax-blog-post__body { padding: 20px 20px 28px; }
  .ax-blog-post__meta-bar { padding: 12px 20px; }
  .ax-blog__grid { grid-template-columns: 1fr; }
}

/* ================================================
   AEXOR DESIGNS — Customer Sidebar
   ================================================ */

.ax-dash {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 36px 0 72px;
  width: 100%;
}

.ax-dash__sidebar {
  flex: 0 0 230px;
  position: sticky;
  top: calc(var(--total-h) + 20px);
}

.ax-dash__main { flex: 1; min-width: 0; }

.ax-sidebar {
  background: var(--s1);
  border: 1px solid var(--b1);
  border-radius: 14px;
  overflow: hidden;
}

.ax-sidebar__top-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--r), transparent);
  opacity: 0.5;
}

.ax-sidebar__header {
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--b1);
  background: rgba(0,0,0,0.15);
}

.ax-sidebar__email {
  font-size: 12px;
  color: var(--t3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}

.ax-sidebar__label {
  font-family: var(--f-h);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--r);
  margin-bottom: 2px;
}

.ax-sidebar__name {
  font-family: var(--f-h);
  font-size: 14px;
  font-weight: 700;
  color: var(--t1);
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ax-sidebar__nav {
  display: flex;
  flex-direction: column;
  padding: 8px;
  gap: 2px;
}

.ax-sidebar__link {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 36px;
  padding: 0 12px;
  font-family: var(--f-h);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--t3);
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition: color 0.18s, border-color 0.18s;
  cursor: pointer;
  background: none;
  width: 100%;
  text-align: left;
}

.ax-sidebar__link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--r-lo);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
  border-radius: inherit;
}

.ax-sidebar__link:hover::before { transform: scaleX(1); }
.ax-sidebar__link:hover { color: var(--t1); border-color: var(--b1); }

.ax-sidebar__link--active { color: var(--r-hi) !important; border-color: var(--r-border) !important; }
.ax-sidebar__link--active::before { transform: scaleX(1); }

.ax-sidebar__link svg, .ax-sidebar__link i { width: 14px; height: 14px; flex-shrink: 0; position: relative; z-index: 1; font-size: 13px; }
.ax-sidebar__link span { position: relative; z-index: 1; }

.ax-sidebar__link--danger:hover { color: #f87171 !important; }
.ax-sidebar__link--danger:hover::before { background: rgba(248,113,113,0.08) !important; }

.ax-sidebar__divider {
  height: 1px;
  background: var(--b1);
  margin: 4px 8px;
}

.ax-sidebar__badge {
  margin-left: auto;
  position: relative;
  z-index: 1;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 7px;
  background: var(--s3);
  border: 1px solid var(--b2);
  border-radius: 99px;
  color: var(--t3);
  font-family: var(--f-b);
}

@media (max-width: 800px) {
  .ax-dash { flex-direction: column; }
  .ax-dash__sidebar { flex: none; width: 100%; position: static; }
  .ax-sidebar__nav { flex-direction: row; flex-wrap: wrap; gap: 4px; }
  .ax-sidebar__link { height: 32px; }
}

/* ================================================
   AEXOR DESIGNS — Customer Dashboard
   ================================================ */

.ax-dash-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

.ax-stat-card {
  background: var(--s1);
  border: 1px solid var(--b1);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s;
}

.ax-stat-card:hover { border-color: var(--r-border); }

.ax-stat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--r-glow), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}

.ax-stat-card:hover::after { opacity: 1; }

.ax-stat-card__icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--r-lo);
  border: 1px solid var(--r-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--r-hi);
}

.ax-stat-card__icon svg { width: 15px; height: 15px; }

.ax-stat-card__label {
  font-family: var(--f-h);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--t3);
}

.ax-stat-card__value {
  font-family: var(--f-h);
  font-size: 22px;
  font-weight: 800;
  color: var(--t1);
  letter-spacing: -0.02em;
  line-height: 1;
}

.ax-stat-card__sub { font-size: 11px; color: var(--t3); }

/* Latest order card */
.ax-dash-order {
  background: var(--s1);
  border: 1px solid var(--b1);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 20px;
}

.ax-dash-order__label {
  font-family: var(--f-h);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--t3);
  margin-bottom: 10px;
}

.ax-dash-order__name {
  font-family: var(--f-h);
  font-size: 16px;
  font-weight: 700;
  color: var(--t1);
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 6px;
}

.ax-dash-order__meta {
  font-size: 12px;
  color: var(--t3);
}

.ax-dash-order__meta a { color: var(--r-hi); text-decoration: none; }
.ax-dash-order__meta a:hover { text-decoration: underline; }

.ax-dash-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.ax-dash-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 36px;
  padding: 0 16px;
  font-family: var(--f-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
  background: transparent;
  border: 1px solid var(--b2);
  color: var(--t3);
}

.ax-dash-btn:hover { color: var(--t1); border-color: var(--r-border); background: var(--r-lo); }
.ax-dash-btn svg { width: 13px; height: 13px; flex-shrink: 0; }
.ax-dash-btn:disabled { opacity: 0.5; pointer-events: none; }

.ax-dash-btn--danger { border-color: rgba(248,113,113,0.3); color: #f87171; }
.ax-dash-btn--danger:hover { background: rgba(248,113,113,0.08); border-color: rgba(248,113,113,0.5); color: #f87171; }

@media (max-width: 640px) {
  .ax-dash-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 400px) {
  .ax-dash-grid { grid-template-columns: 1fr; }
}

/* ================================================
   AEXOR DESIGNS — Customer Invoices (Orders)
   ================================================ */

.ax-orders { }

.ax-orders__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.ax-orders__title-accent {
  display: block;
  width: 4px;
  height: 24px;
  background: linear-gradient(180deg, var(--r-hi), var(--r));
  border-radius: 4px;
  flex-shrink: 0;
  box-shadow: 0 0 10px var(--r-glow);
}

.ax-orders__title {
  font-family: var(--f-h);
  font-size: 18px;
  font-weight: 800;
  color: var(--t1);
  letter-spacing: -0.02em;
}

.ax-orders__card {
  background: var(--s1);
  border: 1px solid var(--b1);
  border-radius: 14px;
  overflow: hidden;
}

/* Table */
.ax-orders-table { width: 100%; border-collapse: collapse; }

.ax-orders-table th {
  font-family: var(--f-h);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--t3);
  padding: 12px 16px;
  text-align: left;
  background: rgba(0,0,0,0.15);
  border-bottom: 1px solid var(--b1);
  white-space: nowrap;
}

.ax-orders-table td {
  padding: 14px 16px;
  font-size: 13px;
  color: var(--t2);
  border-bottom: 1px solid var(--b1);
  vertical-align: middle;
}

.ax-orders-table tr:last-child td { border-bottom: none; }

.ax-orders-table tr:hover td { background: rgba(255,255,255,0.02); }

.ax-orders-table__id {
  font-family: var(--f-h);
  font-size: 12px;
  font-weight: 700;
  color: var(--r-hi);
  text-decoration: none;
}

.ax-orders-table__id:hover { text-decoration: underline; }

.ax-orders-table__product {
  font-weight: 600;
  color: var(--t1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}

.ax-orders-table__date { font-size: 10.5px; color: var(--t3); margin-top: 2px; }

.ax-orders-table__price {
  font-family: var(--f-h);
  font-size: 13px;
  font-weight: 700;
  color: var(--r-hi);
  white-space: nowrap;
}

.ax-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  border-radius: 6px;
  font-family: var(--f-h);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ax-status-badge--completed { background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.25); color: #4ade80; }
.ax-status-badge--pending { background: rgba(234,179,8,0.12); border: 1px solid rgba(234,179,8,0.25); color: #facc15; }
.ax-status-badge--refunded { background: rgba(20,184,166,0.12); border: 1px solid rgba(20,184,166,0.25); color: #2dd4bf; }
.ax-status-badge--out_of_stock { background: rgba(249,115,22,0.12); border: 1px solid rgba(249,115,22,0.25); color: #fb923c; }
.ax-status-badge--confirming { background: rgba(59,130,246,0.12); border: 1px solid rgba(59,130,246,0.25); color: #60a5fa; }
.ax-status-badge--partially_completed { background: rgba(234,179,8,0.12); border: 1px solid rgba(234,179,8,0.25); color: #facc15; }

.ax-orders-table__action { white-space: nowrap; }

.ax-orders__empty {
  padding: 40px 24px;
  text-align: center;
}

.ax-orders__empty-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--r-lo);
  border: 1px solid var(--r-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--r);
  margin: 0 auto 12px;
}

.ax-orders__empty-icon svg { width: 20px; height: 20px; }
.ax-orders__empty-text { font-size: 14px; color: var(--t3); }

@media (max-width: 640px) {
  .ax-orders-table th:nth-child(4),
  .ax-orders-table td:nth-child(4) { display: none; }
}

/* ================================================
   AEXOR DESIGNS — Downloads Page
   ================================================ */

.ax-downloads { }

.ax-downloads__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.ax-downloads__title-wrap { display: flex; align-items: center; gap: 14px; }
.ax-downloads__title-accent {
  display: block;
  width: 4px;
  height: 24px;
  background: linear-gradient(180deg, var(--r-hi), var(--r));
  border-radius: 4px;
  flex-shrink: 0;
  box-shadow: 0 0 10px var(--r-glow);
}

.ax-downloads__title {
  font-family: var(--f-h);
  font-size: 18px;
  font-weight: 800;
  color: var(--t1);
  letter-spacing: -0.02em;
}

/* Test mode banner */
.ax-downloads__test-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: rgba(234,179,8,0.08);
  border: 1px solid rgba(234,179,8,0.25);
  border-radius: 10px;
  margin-bottom: 24px;
}

.ax-downloads__test-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: rgba(234,179,8,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #facc15;
  flex-shrink: 0;
}

.ax-downloads__test-icon svg { width: 14px; height: 14px; }

.ax-downloads__test-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ax-downloads__test-title {
  font-family: var(--f-h);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #facc15;
}

.ax-downloads__test-sub { font-size: 11.5px; color: rgba(250,204,21,0.6); }

/* Downloads grid */
.ax-downloads__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

/* Download item card */
.ax-dl-card {
  background: var(--s1);
  border: 1px solid var(--b1);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.ax-dl-card:hover {
  border-color: var(--r-border);
  box-shadow: 0 8px 28px rgba(0,0,0,0.3), 0 0 16px var(--r-lo);
}

.ax-dl-card--locked {
  opacity: 0.6;
  filter: grayscale(0.3);
}

.ax-dl-card--locked:hover {
  border-color: var(--b2);
  box-shadow: none;
}

.ax-dl-card__img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--s2);
  border-bottom: 1px solid var(--b1);
}

.ax-dl-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.ax-dl-card__img-empty {
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--r);
  opacity: 0.2;
}

.ax-dl-card__img-empty svg { width: 36px; height: 36px; }

.ax-dl-card__owned-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  background: rgba(34,197,94,0.18);
  border: 1px solid rgba(34,197,94,0.35);
  border-radius: 6px;
  font-family: var(--f-h);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4ade80;
  backdrop-filter: blur(6px);
}

.ax-dl-card__owned-badge svg { width: 10px; height: 10px; }

.ax-dl-card__lock-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  background: rgba(0,0,0,0.55);
  border: 1px solid var(--b2);
  border-radius: 6px;
  font-family: var(--f-h);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--t3);
  backdrop-filter: blur(6px);
}

.ax-dl-card__lock-badge svg { width: 10px; height: 10px; }

.ax-dl-card__body {
  flex: 1;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ax-dl-card__name {
  font-family: var(--f-h);
  font-size: 14px;
  font-weight: 700;
  color: var(--t1);
  letter-spacing: -0.01em;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ax-dl-card__desc {
  font-size: 12px;
  color: var(--t3);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ax-dl-card__footer {
  padding: 12px 18px;
  border-top: 1px solid var(--b1);
  display: flex;
  gap: 8px;
}

.ax-dl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
  height: 38px;
  padding: 0 14px;
  border-radius: 9px;
  font-family: var(--f-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}

.ax-dl-btn svg { width: 14px; height: 14px; flex-shrink: 0; }

.ax-dl-btn--primary {
  background: var(--r);
  border: 1px solid var(--r);
  color: #fff;
}

.ax-dl-btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.ax-dl-btn--primary:hover::before { transform: translateX(100%); }
.ax-dl-btn--primary:hover { background: var(--r-hi); box-shadow: 0 4px 16px var(--r-glow); }

.ax-dl-btn--ghost {
  background: transparent;
  border: 1px solid var(--r-border);
  color: var(--r-hi);
}

.ax-dl-btn--ghost:hover { background: var(--r-lo); }

.ax-dl-btn--locked {
  background: var(--s2);
  border: 1px solid var(--b1);
  color: var(--t3);
  cursor: not-allowed;
  pointer-events: none;
}

/* Access denied page */
.ax-access-denied {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 80px 24px;
  text-align: center;
}

.ax-access-denied__icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: var(--r-lo);
  border: 1px solid var(--r-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--r-hi);
  box-shadow: 0 0 30px var(--r-glow);
}

.ax-access-denied__icon svg { width: 32px; height: 32px; }
.ax-access-denied__title { font-family: var(--f-h); font-size: 22px; font-weight: 800; color: var(--t1); letter-spacing: -0.02em; }
.ax-access-denied__sub { font-size: 14px; color: var(--t3); max-width: 360px; line-height: 1.6; }

/* Delete modal */
.ax-del-modal {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  background: var(--s1);
  border: 1px solid var(--b2);
  border-radius: 16px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 0 0 1px rgba(248,113,113,0.2);
  overflow: hidden;
}

.ax-del-modal__header { padding: 20px 24px; border-bottom: 1px solid var(--b1); display: flex; align-items: center; justify-content: space-between; }
.ax-del-modal__title { font-family: var(--f-h); font-size: 16px; font-weight: 800; color: var(--t1); }
.ax-del-modal__body { padding: 20px 24px; font-size: 13.5px; color: var(--t3); line-height: 1.65; }
.ax-del-modal__footer { padding: 0 24px 24px; display: flex; gap: 10px; }

/* ═══════════════════════════════════════════════════════════════════
   SUPPLEMENTARY — fills gaps between template classes & Phase 2 CSS
   ═══════════════════════════════════════════════════════════════════ */

/* ── Login Modal: brand header variants ─────────────────────────── */
.ax-login-modal__brand { flex-direction: row; align-items: center; gap: 14px; text-align: left; }
.ax-login-modal__brand-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 11px;
  background: var(--r-lo);
  border: 1px solid var(--r-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--r-hi);
}
.ax-login-modal__brand-icon svg { width: 20px; height: 20px; }
.ax-login-modal__brand-text { display: flex; flex-direction: column; gap: 2px; }
.ax-login-modal__brand-title {
  font-family: var(--f-h);
  font-size: 17px; font-weight: 800;
  color: var(--t1); letter-spacing: -0.02em;
}
.ax-login-modal__brand-sub { font-size: 12px; color: var(--t3); }

/* ── Login Modal: field / label / hint ─────────────────────────── */
.ax-login-modal__field { display: flex; flex-direction: column; gap: 5px; }
.ax-login-modal__label { font-size: 13px; font-weight: 600; color: var(--t2); }
.ax-login-modal__hint { font-size: 12px; color: var(--t3); margin: 0; }
.ax-login-modal__email-highlight { color: var(--r-hi); font-weight: 700; }
.ax-login-modal__captcha { margin-top: 4px; }
.ax-login-modal__resend { font-size: 12px; color: var(--t3); text-align: center; }
.ax-login-modal__resend-btn {
  background: none; border: none; cursor: pointer;
  color: var(--r-hi); font-size: 12px; text-decoration: underline;
  padding: 0;
}
.ax-login-modal__resend-btn:hover { color: var(--t1); }

/* submit inner layout */
.ax-login-modal__submit-inner {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  pointer-events: none;
}
.ax-login-modal__spinner { animation: ax-spin 0.8s linear infinite; }
@keyframes ax-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* footer note */
.ax-login-modal__footer-note {
  display: flex; align-items: center; justify-content: center; gap: 5px;
  font-size: 11px; color: var(--t3);
  padding: 0 24px 18px;
  margin: 0;
}
.ax-login-modal__footer-note svg { width: 12px; height: 12px; color: var(--r); flex-shrink: 0; }

/* ── Cart Page: messages / loading / empty / list ───────────────── */
.ax-cart-page__messages {
  background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.25);
  color: var(--r-hi); border-radius: 10px;
  padding: 12px 16px; font-size: 13.5px;
  margin-bottom: 16px;
}
.ax-cart-page__loading {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 48px; color: var(--t3); font-size: 14px;
  background: var(--s2); border: 1px solid var(--b1); border-radius: 12px;
}
.ax-cart-page__empty {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  padding: 64px 24px; text-align: center;
  background: var(--s2); border: 1px solid var(--b1); border-radius: 12px;
}
.ax-cart-page__empty svg { width: 52px; height: 52px; color: var(--t3); }
.ax-cart-page__empty p { font-size: 14.5px; color: var(--t3); margin: 0; }
.ax-cart-page__empty-link {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--r); color: #fff; font-size: 13px; font-weight: 700;
  padding: 8px 18px; border-radius: 8px; text-decoration: none;
  transition: background 0.18s;
}
.ax-cart-page__empty-link:hover { background: var(--r-hi); }
.ax-cart-page__list { display: flex; flex-direction: column; gap: 12px; }

/* cart item layout aliases */
.ax-cart-item__controls {
  display: flex; align-items: center; gap: 16px;
  padding: 10px 16px 10px 0;
  border-top: 1px solid var(--b1);
  flex-wrap: wrap;
}
@media (min-width: 640px) {
  .ax-cart-item__controls { border-top: none; padding: 0 24px 0 0; }
}
.ax-cart-item__name-row {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.ax-cart-item__remove--mobile { display: flex; }
.ax-cart-item__remove--desktop { display: none; }
@media (min-width: 640px) {
  .ax-cart-item__remove--mobile { display: none; }
  .ax-cart-item__remove--desktop { display: flex; }
}

/* cart summary aliases */
.ax-cart-page__items-col { flex: 1; min-width: 0; }
.ax-cart-page__summary-col { width: 100%; }
@media (min-width: 1024px) {
  .ax-cart-page__summary-col { width: 300px; flex-shrink: 0; }
}
.ax-cart-summary__rows { display: flex; flex-direction: column; gap: 8px; margin-bottom: 10px; }
.ax-cart-summary__row { display: flex; align-items: center; justify-content: space-between; }
.ax-cart-summary__row-label { font-size: 12.5px; color: var(--t3); }
.ax-cart-summary__row-value { font-size: 13px; color: var(--t2); font-weight: 600; }
.ax-cart-summary__row-value--muted { font-size: 11.5px; color: var(--t3); font-weight: 400; font-style: italic; }
.ax-cart-summary__divider { border: none; border-top: 1px solid var(--b1); margin: 10px 0; }
.ax-cart-summary__total-label { font-size: 14px; font-weight: 700; color: var(--t1); }
.ax-cart-summary__total-value { font-size: 18px; font-weight: 800; color: var(--r-hi); font-family: var(--f-h); }
.ax-cart-summary__captcha { margin: 10px 0; }
.ax-cart-summary__secure-note {
  display: flex; align-items: center; justify-content: center; gap: 5px;
  font-size: 11px; color: var(--t3); margin: 10px 0 0;
}
.ax-cart-checkout-btn__inner {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  pointer-events: none;
}

/* ── Blog Card: new class structure ─────────────────────────────── */
.ax-blog-card__top-line {
  height: 2px;
  background: linear-gradient(90deg, var(--r) 0%, transparent 100%);
  border-radius: 4px 4px 0 0;
  opacity: 0;
  transition: opacity 0.25s;
}
.ax-blog-card:hover .ax-blog-card__top-line { opacity: 1; }
.ax-blog-card__cover {
  position: relative; overflow: hidden;
  height: 180px; border-bottom: 1px solid var(--b1);
}
.ax-blog-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.ax-blog-card:hover .ax-blog-card__img { transform: scale(1.04); }
.ax-blog-card__cover-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: var(--s2); color: var(--t3);
}
.ax-blog-card__cover-placeholder svg { width: 48px; height: 48px; }
.ax-blog-card__body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.ax-blog-card__meta { display: flex; align-items: center; gap: 8px; }
.ax-blog-card__date {
  display: flex; align-items: center; gap: 5px;
  font-size: 11px; color: var(--t3); font-family: var(--f-b);
}
.ax-blog-card__date svg { width: 12px; height: 12px; color: var(--r); flex-shrink: 0; }
.ax-blog-card__title {
  font-family: var(--f-h);
  font-size: 16px; font-weight: 800;
  color: var(--t1); line-height: 1.3;
  letter-spacing: -0.02em;
  transition: color 0.2s;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.ax-blog-card:hover .ax-blog-card__title { color: var(--r-hi); }
.ax-blog-card__summary {
  font-size: 12.5px; color: var(--t3); line-height: 1.6; margin: 0;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.ax-blog-card__read-more {
  display: inline-flex; align-items: center; gap: 5px; margin-top: auto;
  font-size: 12px; font-weight: 700; color: var(--r-hi); font-family: var(--f-h);
  letter-spacing: 0.04em; text-transform: uppercase; transition: gap 0.2s;
}
.ax-blog-card__read-more svg { width: 12px; height: 12px; transition: transform 0.2s; }
.ax-blog-card:hover .ax-blog-card__read-more { gap: 8px; }
.ax-blog-card:hover .ax-blog-card__read-more svg { transform: translateX(3px); }

/* Blog: view-all & empty */
.ax-blog__view-all { display: flex; justify-content: center; margin-top: 32px; }
.ax-blog__view-all-link {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; border: 1px solid var(--r-border);
  color: var(--r-hi); font-size: 13px; font-weight: 700;
  padding: 10px 24px; border-radius: 8px; text-decoration: none;
  font-family: var(--f-h); letter-spacing: 0.03em;
  transition: background 0.2s, box-shadow 0.2s;
}
.ax-blog__view-all-link:hover { background: var(--r-lo); box-shadow: 0 0 16px var(--r-glow); }
.ax-blog__view-all-link svg { width: 14px; height: 14px; }
.ax-blog__empty { font-size: 14px; color: var(--t3); padding: 32px 0; }

/* ── Blog Post Page: full layout ────────────────────────────────── */
.ax-blog-post__container { max-width: 780px; margin: 0 auto; padding: 40px 0 80px; }
.ax-blog-post__breadcrumb {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
  margin-bottom: 24px; font-size: 12px;
}
.ax-blog-post__breadcrumb svg { width: 14px; height: 14px; color: var(--t3); flex-shrink: 0; }
.ax-blog-post__bc-link { color: var(--t3); text-decoration: none; transition: color 0.18s; }
.ax-blog-post__bc-link:hover { color: var(--r-hi); }
.ax-blog-post__bc-current { color: var(--t2); font-weight: 600; }
.ax-blog-post__card {
  position: relative;
  background: var(--s2); border: 1px solid var(--b1);
  border-radius: 14px; overflow: hidden;
}
.ax-blog-post__card-top-line {
  height: 3px;
  background: linear-gradient(90deg, var(--r) 0%, var(--r-hi) 60%, transparent 100%);
}
.ax-blog-post__header { padding: 32px 36px 24px; border-bottom: 1px solid var(--b1); }
.ax-blog-post__header-meta { margin-bottom: 14px; }
.ax-blog-post__date-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--r-lo); border: 1px solid var(--r-border);
  color: var(--r-hi); font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 20px; letter-spacing: 0.04em;
}
.ax-blog-post__date-badge svg { width: 12px; height: 12px; }
.ax-blog-post__title {
  font-family: var(--f-h); font-size: 28px; font-weight: 900;
  color: var(--t1); line-height: 1.2; letter-spacing: -0.03em;
  margin: 0 0 10px;
}
.ax-blog-post__summary { font-size: 14.5px; color: var(--t3); line-height: 1.7; margin: 0; }
.ax-blog-post__cover { line-height: 0; }
.ax-blog-post__cover-img { width: 100%; max-height: 420px; object-fit: cover; }
.ax-blog-post__body { padding: 32px 36px 40px; }
.ax-blog-post__footer {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 36px; border-top: 1px solid var(--b1);
  background: var(--s1);
}
.ax-blog-post__back-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--r-hi); font-size: 13px; font-weight: 700;
  text-decoration: none; font-family: var(--f-h); letter-spacing: 0.03em;
  transition: color 0.18s, gap 0.18s;
}
.ax-blog-post__back-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
.ax-blog-post__back-link:hover { color: var(--t1); }
.ax-blog-post__back-link:hover svg { transform: translateX(-3px); }
.ax-blog-post__footer-sep { color: var(--t3); }
.ax-blog-post__footer-shop { font-size: 12px; color: var(--t3); }
@media (max-width: 768px) {
  .ax-blog-post__header { padding: 20px 20px 18px; }
  .ax-blog-post__body { padding: 20px 20px 28px; }
  .ax-blog-post__footer { padding: 14px 20px; }
  .ax-blog-post__title { font-size: 22px; }
}

/* ── Customer Sidebar: missing classes ──────────────────────────── */
.ax-sidebar__profile {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 18px 16px;
  border-bottom: 1px solid var(--b1);
}
.ax-sidebar__avatar {
  width: 38px; height: 38px;
  background: var(--r-lo); border: 1px solid var(--r-border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-h); font-size: 15px; font-weight: 900;
  color: var(--r-hi); flex-shrink: 0;
}
.ax-sidebar__profile-info { min-width: 0; }
.ax-sidebar__profile-label { font-size: 10px; color: var(--t3); text-transform: uppercase; letter-spacing: 0.08em; }
.ax-sidebar__profile-email {
  font-size: 12.5px; color: var(--t2); font-weight: 600;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ax-sidebar__link-icon { width: 16px; height: 16px; flex-shrink: 0; color: var(--t3); transition: color 0.18s; }
.ax-sidebar__link--active .ax-sidebar__link-icon { color: var(--r-hi); }
.ax-sidebar__active-dot {
  margin-left: auto; width: 6px; height: 6px;
  background: var(--r); border-radius: 50%;
  box-shadow: 0 0 6px var(--r-glow);
  flex-shrink: 0;
}
.ax-sidebar__balance {
  margin-left: auto; font-size: 11.5px; font-weight: 700;
  color: var(--r-hi); font-family: var(--f-h);
  background: var(--r-lo); border: 1px solid var(--r-border);
  border-radius: 5px; padding: 1px 7px;
}
.ax-sidebar__footer { padding: 12px 14px; border-top: 1px solid var(--b1); }
.ax-sidebar__logout {
  width: 100%;
  display: flex; align-items: center; gap: 8px;
  background: none; border: 1px solid transparent;
  color: var(--t3); font-size: 12.5px; font-weight: 600;
  padding: 7px 10px; border-radius: 8px; cursor: pointer;
  transition: color 0.18s, background 0.18s, border-color 0.18s;
  text-align: left;
}
.ax-sidebar__logout:hover {
  color: #ef4444;
  background: rgba(239,68,68,0.08);
  border-color: rgba(239,68,68,0.2);
}

/* ── Dashboard: page header / stat card extras ──────────────────── */
.ax-dash__page-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  margin-bottom: 20px;
}
.ax-dash__page-title {
  font-family: var(--f-h); font-size: 24px; font-weight: 900;
  color: var(--t1); letter-spacing: -0.03em; margin: 0;
}
.ax-dash__page-sub { font-size: 13px; color: var(--t3); margin: 3px 0 0; }
.ax-dash-grid--3 { grid-template-columns: repeat(3, 1fr); }
.ax-dash-grid--latest { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 768px) {
  .ax-dash-grid--3 { grid-template-columns: 1fr; }
  .ax-dash-grid--latest { grid-template-columns: 1fr; }
}
.ax-stat-card--wide { grid-column: span 1; }
.ax-stat-card__value--sm { font-size: 15px; }
.ax-stat-card__value--muted { color: var(--t3); font-size: 14px; }
.ax-stat-card__meta { font-size: 11.5px; color: var(--t3); margin: 4px 0 0; }
.ax-stat-card__link { color: var(--r-hi); text-decoration: none; font-weight: 600; }
.ax-stat-card__link:hover { color: var(--t1); text-decoration: underline; }

/* Dashboard actions */
.ax-dash__actions {
  display: flex; align-items: center; justify-content: flex-end;
  gap: 10px; margin-top: 20px; flex-wrap: wrap;
}
.ax-dash__action-btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12.5px; font-weight: 700; padding: 8px 16px;
  border-radius: 8px; cursor: pointer; border: 1px solid;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  font-family: var(--f-b);
}
.ax-dash__action-btn:disabled { opacity: 0.5; pointer-events: none; }
.ax-dash__action-btn--ghost {
  background: transparent; border-color: var(--b1); color: var(--t2);
}
.ax-dash__action-btn--ghost:hover { background: var(--s2); color: var(--t1); }
.ax-dash__action-btn--danger {
  background: transparent; border-color: rgba(239,68,68,0.35);
  color: #ef4444;
}
.ax-dash__action-btn--danger:hover {
  background: rgba(239,68,68,0.08);
  box-shadow: 0 0 14px rgba(239,68,68,0.15);
}

/* ── Orders: missing classes ─────────────────────────────────────── */
.ax-orders {
  position: relative;
  background: var(--s2); border: 1px solid var(--b1);
  border-radius: 14px; overflow: hidden;
}
.ax-orders__top-line {
  height: 2px;
  background: linear-gradient(90deg, var(--r) 0%, var(--r-hi) 60%, transparent 100%);
}
.ax-orders-table-wrap { overflow-x: auto; }
.ax-orders-table__head { background: rgba(255,255,255,0.03); }
.ax-orders-table__th {
  padding: 12px 16px;
  font-size: 11px; font-weight: 700;
  color: var(--t3); text-transform: uppercase; letter-spacing: 0.08em;
  text-align: left; white-space: nowrap;
}
.ax-orders-table__row { border-bottom: 1px solid var(--b1); transition: background 0.15s; }
.ax-orders-table__row:last-child { border-bottom: none; }
.ax-orders-table__row:hover { background: rgba(255,255,255,0.02); }
.ax-orders-table__td { padding: 14px 16px; font-size: 13px; color: var(--t2); vertical-align: middle; }
.ax-orders-table__td--id { white-space: nowrap; }
.ax-orders-table__td--products { max-width: 200px; }
.ax-orders-table__td--price { white-space: nowrap; font-weight: 700; color: var(--t1); font-family: var(--f-h); }
.ax-orders-table__td--actions { white-space: nowrap; }
.ax-orders-table__invoice-link {
  color: var(--r-hi); font-weight: 700; text-decoration: none; font-family: var(--f-h);
  font-size: 13px;
}
.ax-orders-table__invoice-link:hover { color: var(--t1); text-decoration: underline; }
.ax-orders-table__date { display: block; font-size: 11px; color: var(--t3); margin-top: 3px; }
.ax-orders-table__product-name {
  display: block; max-width: 180px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ax-orders-table__variant { color: var(--t3); font-size: 11.5px; }
.ax-orders-table__more {
  display: inline-block; margin-top: 2px;
  font-size: 11px; color: var(--r-hi); font-weight: 600;
  background: var(--r-lo); border: 1px solid var(--r-border);
  border-radius: 4px; padding: 1px 6px;
}
.ax-orders-table__deleted { color: var(--t3); font-style: italic; }
.ax-orders-table__action-btn {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 700; padding: 5px 11px;
  border-radius: 7px; text-decoration: none; cursor: pointer;
  border: 1px solid; transition: background 0.18s, color 0.18s;
  font-family: var(--f-b);
  background: none;
}
.ax-orders-table__action-btn--view {
  color: var(--r-hi); border-color: var(--r-border);
}
.ax-orders-table__action-btn--view:hover { background: var(--r-lo); }
.ax-orders-table__action-btn--open {
  color: var(--t2); border-color: var(--b1);
}
.ax-orders-table__action-btn--open:hover { background: var(--s1); color: var(--t1); }
.ax-orders__empty-link {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--r); color: #fff; font-size: 13px; font-weight: 700;
  padding: 9px 20px; border-radius: 8px; text-decoration: none;
  margin-top: 4px; transition: background 0.18s;
}
.ax-orders__empty-link:hover { background: var(--r-hi); }

/* ── Downloads: card variants ─────────────────────────────────────── */
.ax-dl-card__top-line {
  height: 2px;
  background: linear-gradient(90deg, var(--r) 0%, var(--r-hi) 60%, transparent 100%);
  border-radius: 4px 4px 0 0;
  transition: opacity 0.2s;
}
.ax-dl-card--locked .ax-dl-card__top-line {
  background: linear-gradient(90deg, var(--b2) 0%, transparent 100%);
  opacity: 0.5;
}
.ax-dl-card__cover {
  position: relative;
  height: 160px; overflow: hidden;
  background: var(--s1); border-bottom: 1px solid var(--b1);
  display: flex; align-items: center; justify-content: center;
}
.ax-dl-card--locked .ax-dl-card__cover { filter: grayscale(0.5); }
.ax-dl-card__cover-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.ax-dl-card:hover .ax-dl-card__cover-img { transform: scale(1.04); }
.ax-dl-card--locked:hover .ax-dl-card__cover-img { transform: none; }
.ax-dl-card__cover-icon { color: var(--t3); }
.ax-dl-card__cover-icon svg { width: 44px; height: 44px; }
.ax-dl-card__badge {
  position: absolute; top: 8px; right: 8px;
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.06em;
  padding: 3px 8px; border-radius: 20px;
  border: 1px solid;
}
.ax-dl-card__badge--owned {
  background: rgba(16,185,129,0.12); color: #34d399; border-color: rgba(16,185,129,0.25);
}
.ax-dl-card__badge--locked {
  background: rgba(255,255,255,0.06); color: var(--t3); border-color: var(--b1);
}
.ax-dl-card__body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 10px; }
.ax-dl-card__name {
  font-family: var(--f-h); font-size: 16px; font-weight: 800;
  color: var(--t1); letter-spacing: -0.02em; margin: 0;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.ax-dl-card__desc {
  font-size: 12.5px; color: var(--t3); line-height: 1.55; margin: 0;
}
.ax-dl-card__variants { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.ax-dl-card__variant-row {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 8px 10px; background: var(--s1); border: 1px solid var(--b1);
  border-radius: 8px;
}
.ax-dl-card__variant-name { font-size: 12px; color: var(--t2); font-weight: 600; }
.ax-dl-btn { /* base — already partially defined; these fill specifics */
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11.5px; font-weight: 700; padding: 5px 12px;
  border-radius: 7px; text-decoration: none; cursor: pointer; border: 1px solid;
  transition: background 0.18s, box-shadow 0.18s, transform 0.15s;
  flex-shrink: 0; white-space: nowrap;
}
.ax-dl-btn svg { width: 12px; height: 12px; flex-shrink: 0; }
.ax-dl-btn--key {
  background: var(--s2); border-color: var(--b1); color: var(--t2);
}
.ax-dl-btn--key:hover { background: var(--s1); color: var(--t1); }
.ax-dl-card__locked-msg {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--t3);
  padding: 8px 10px; background: var(--s1); border: 1px solid var(--b1);
  border-radius: 8px;
}
.ax-dl-card__locked-msg svg { width: 14px; height: 14px; color: var(--t3); flex-shrink: 0; }


/* ══════════════════════════════════════════════════════════════
   PRODUCTS PAGE  (ax-products-page)
   ══════════════════════════════════════════════════════════════ */

.ax-products-page {
  padding: 48px 0 80px;
}

/* Page header */
.ax-products-page__header {
  margin-bottom: 40px;
}
.ax-products-page__title-wrap {
  display: flex; align-items: center; gap: 14px; margin-bottom: 6px;
}
.ax-products-page__title-accent {
  display: block; width: 4px; height: 28px;
  background: var(--r); border-radius: 2px; flex-shrink: 0;
}
.ax-products-page__title {
  font-family: var(--f-h); font-size: clamp(22px, 3vw, 32px);
  font-weight: 700; color: var(--t1); margin: 0; line-height: 1.2;
}
.ax-products-page__category-sub {
  font-size: 13px; color: var(--t3); margin: 0 0 0 18px;
}
.ax-products-page__category-sub strong { color: var(--r-hi); font-weight: 700; }

/* Mobile bar */
.ax-products-page__mobile-bar {
  display: none; align-items: center; gap: 12px; margin-bottom: 20px;
}
@media (max-width: 1023px) {
  .ax-products-page__mobile-bar { display: flex; }
}
.ax-products-page__mobile-filter-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 10px;
  background: var(--s2); border: 1px solid var(--b1);
  color: var(--t2); font-size: 13px; font-weight: 700;
  cursor: pointer; transition: background .18s, color .18s;
  font-family: var(--f-h);
}
.ax-products-page__mobile-filter-btn:hover { background: var(--s3); color: var(--t1); }
.ax-products-page__mobile-reset {
  font-size: 12px; color: var(--r-hi); text-decoration: underline; font-weight: 700;
}

/* Layout */
.ax-products-page__layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 1023px) {
  .ax-products-page__layout { grid-template-columns: 1fr; }
  .ax-products-page__sidebar { display: none; }
}

/* Sidebar */
.ax-products-page__sidebar {
  position: sticky; top: 24px;
}
.ax-products-page__filter-card {
  background: var(--s2);
  border: 1px solid var(--b1);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}
.ax-products-page__filter-top-line {
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--r), var(--r-hi), transparent);
}
.ax-products-page__form { padding: 20px 18px 18px; display: flex; flex-direction: column; gap: 20px; }

/* Sidebar sections */
.ax-products-page__section { display: flex; flex-direction: column; gap: 10px; }
.ax-products-page__section + .ax-products-page__section {
  padding-top: 18px; border-top: 1px solid var(--b1);
}
.ax-products-page__section-title {
  display: flex; align-items: center; gap: 7px;
  font-size: 10px; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--t3); margin: 0;
}

/* Category list */
.ax-products-page__cat-list { display: flex; flex-direction: column; gap: 2px; }
.ax-products-page__cat-item {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px; border-radius: 8px;
  font-size: 13px; font-weight: 500; color: var(--t2);
  text-decoration: none; transition: background .15s, color .15s;
  border: 1px solid transparent;
}
.ax-products-page__cat-item:hover {
  background: var(--s3); color: var(--t1);
}
.ax-products-page__cat-item--active {
  background: rgba(220,38,38,.1); color: var(--r-hi);
  border-color: var(--r-border); font-weight: 700;
}
.ax-products-page__cat-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: currentColor; flex-shrink: 0; opacity: .5;
}
.ax-products-page__cat-item--active .ax-products-page__cat-dot { opacity: 1; }

/* Inputs */
.ax-products-page__input-wrap { position: relative; }
.ax-products-page__input {
  width: 100%; padding: 9px 12px 9px 36px;
  background: var(--s1); border: 1px solid var(--b1);
  border-radius: 9px; color: var(--t1); font-size: 13px;
  outline: none; transition: border-color .18s, box-shadow .18s;
  box-sizing: border-box;
}
.ax-products-page__input:focus {
  border-color: var(--r); box-shadow: 0 0 0 3px var(--r-glow);
}
.ax-products-page__input::placeholder { color: var(--t3); }
.ax-products-page__input-icon {
  position: absolute; left: 10px; top: 50%; transform: translateY(-50%);
  width: 14px; height: 14px; color: var(--t3); pointer-events: none;
}
.ax-products-page__input--price { padding-left: 12px; padding-right: 30px; }

/* Price row */
.ax-products-page__price-row {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 6px; align-items: center;
}
.ax-products-page__price-sep { font-size: 12px; color: var(--t3); text-align: center; }
.ax-products-page__price-field { position: relative; }
.ax-products-page__currency-symbol {
  position: absolute; right: 9px; top: 50%; transform: translateY(-50%);
  font-size: 11px; color: var(--t3); pointer-events: none;
}

/* Filter actions */
.ax-products-page__filter-actions {
  display: flex; flex-direction: column; gap: 8px;
  padding-top: 18px; border-top: 1px solid var(--b1);
}
.ax-products-page__apply-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 16px; border-radius: 9px;
  background: var(--r); border: none; color: #fff;
  font-size: 13px; font-weight: 700; font-family: var(--f-h);
  cursor: pointer; transition: background .18s, box-shadow .18s;
  letter-spacing: .04em;
}
.ax-products-page__apply-btn:hover {
  background: var(--r-hi); box-shadow: 0 4px 16px var(--r-glow);
}
.ax-products-page__reset-link {
  display: block; text-align: center; font-size: 12px;
  color: var(--t3); text-decoration: none;
  padding: 8px; border-radius: 8px;
  border: 1px solid var(--b1); transition: color .15s, background .15s;
}
.ax-products-page__reset-link:hover { color: var(--t1); background: var(--s3); }

/* Main content */
.ax-products-page__main { min-width: 0; }
.ax-products-page__pagination { margin-top: 40px; }

/* Empty state */
.ax-products-page__empty {
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; padding: 72px 24px; text-align: center;
}
.ax-products-page__empty-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--s2); display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--b1);
}
.ax-products-page__empty-icon svg { width: 28px; height: 28px; color: var(--t3); }
.ax-products-page__empty-title {
  font-family: var(--f-h); font-size: 20px; font-weight: 700;
  color: var(--t1); margin: 0;
}
.ax-products-page__empty-sub { font-size: 14px; color: var(--t3); margin: 0; }
.ax-products-page__empty-link {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 22px; border-radius: 10px;
  background: var(--s2); border: 1px solid var(--b1);
  color: var(--t2); font-size: 13px; font-weight: 700;
  text-decoration: none; transition: background .18s, color .18s; margin-top: 4px;
}
.ax-products-page__empty-link:hover { background: var(--r); color: #fff; }

/* Mobile + group modals */
.ax-products-page__modal-wrap {
  position: fixed; inset: 0; z-index: 9000; overflow-y: auto;
  display: flex; align-items: flex-end; justify-content: center;
}
@media (min-width: 640px) {
  .ax-products-page__modal-wrap { align-items: center; }
}
.ax-products-page__modal-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,.7);
  backdrop-filter: blur(4px);
}
.ax-products-page__modal-panel {
  position: relative; z-index: 1; width: 100%; max-width: 440px;
  max-height: 88vh; overflow-y: auto;
  background: var(--s2); border: 1px solid var(--b1);
  border-radius: 16px 16px 0 0; padding: 0 0 24px;
  margin: 0;
}
@media (min-width: 640px) {
  .ax-products-page__modal-panel {
    border-radius: 16px; margin: 24px;
  }
}
.ax-products-page__modal-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 18px 14px; border-bottom: 1px solid var(--b1);
  position: sticky; top: 0; background: var(--s2); z-index: 1;
}
.ax-products-page__modal-title {
  font-family: var(--f-h); font-size: 15px; font-weight: 700;
  color: var(--t1); margin: 0;
}
.ax-products-page__modal-close {
  width: 28px; height: 28px; border-radius: 7px;
  background: var(--s3); border: 1px solid var(--b1);
  color: var(--t2); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .15s, color .15s;
}
.ax-products-page__modal-close:hover { background: var(--r); color: #fff; border-color: var(--r); }

/* Group modal */
.ax-products-page__group-modal {
  position: relative; z-index: 1; width: 100%; max-width: 1100px;
  max-height: 90vh; overflow-y: auto;
  background: var(--s2); border: 1px solid var(--b1);
  border-radius: 16px; padding: 0 0 24px; margin: 24px;
}
.ax-products-page__group-grid {
  padding: 20px; display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px;
}

/* ══════════════════════════════════════════════════════════════
   REVIEWS ENHANCEMENTS — Summary bar + card updates
   ══════════════════════════════════════════════════════════════ */

.ax-reviews__header {
  display: flex; flex-wrap: wrap; align-items: flex-start;
  gap: 24px; margin-bottom: 32px; justify-content: space-between;
}
.ax-reviews__header-left { display: flex; flex-direction: column; gap: 20px; }

/* Rating summary */
.ax-reviews__summary {
  display: flex; flex-wrap: wrap; align-items: center; gap: 24px;
}
.ax-reviews__summary-score {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  min-width: 80px;
}
.ax-reviews__summary-avg {
  font-family: var(--f-d); font-size: 48px; line-height: 1;
  color: var(--t1); letter-spacing: -.02em;
}
.ax-reviews__summary-stars {
  display: flex; gap: 3px;
}
.ax-reviews__summary-star { width: 14px; height: 14px; color: var(--b2); }
.ax-reviews__summary-star--filled { color: var(--r-hi); }
.ax-reviews__summary-star--half { color: var(--r); opacity: .7; }
.ax-reviews__summary-count { font-size: 11px; color: var(--t3); white-space: nowrap; }

/* Bar chart */
.ax-reviews__summary-bars { display: flex; flex-direction: column; gap: 5px; }
.ax-reviews__bar-row { display: flex; align-items: center; gap: 7px; }
.ax-reviews__bar-label { font-size: 11px; color: var(--t3); font-weight: 600; width: 10px; text-align: right; flex-shrink: 0; }
.ax-reviews__bar-star { width: 10px; height: 10px; color: var(--r-hi); flex-shrink: 0; }
.ax-reviews__bar-track {
  width: 100px; height: 6px; background: var(--s3);
  border-radius: 3px; overflow: hidden; flex-shrink: 0;
}
.ax-reviews__bar-fill {
  height: 100%; background: linear-gradient(90deg, var(--r), var(--r-hi));
  border-radius: 3px; transition: width .6s ease;
}
.ax-reviews__bar-count { font-size: 11px; color: var(--t3); width: 16px; flex-shrink: 0; }

/* Sort */
.ax-reviews__sort { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.ax-reviews__sort-label { font-size: 12px; color: var(--t3); font-weight: 600; white-space: nowrap; }
.ax-reviews__sort-select-wrap { position: relative; }
.ax-reviews__sort-select {
  appearance: none; padding: 8px 32px 8px 12px;
  background: var(--s2); border: 1px solid var(--b1);
  border-radius: 9px; color: var(--t1); font-size: 12.5px; font-weight: 600;
  cursor: pointer; outline: none;
  transition: border-color .18s;
}
.ax-reviews__sort-select:focus { border-color: var(--r); }
.ax-reviews__sort-chevron {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  width: 13px; height: 13px; color: var(--t3); pointer-events: none;
}

/* Empty state */
.ax-reviews__empty {
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; padding: 60px 24px; color: var(--t3);
}
.ax-reviews__empty svg { width: 40px; height: 40px; opacity: .4; }
.ax-reviews__empty p { font-size: 14px; margin: 0; }

/* Review card enhancements */
.ax-review-card__meta {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.ax-review-card__meta-right {
  display: flex; align-items: center; gap: 8px;
}
.ax-review-card__verified {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 10px; font-weight: 700; letter-spacing: .05em;
  color: var(--r-hi); background: rgba(220,38,38,.08);
  padding: 2px 7px; border-radius: 20px;
  border: 1px solid var(--r-border);
}
.ax-review-card__toggle {
  display: inline-flex; align-items: center; gap: 4px;
  background: none; border: none; padding: 0;
  font-size: 12px; color: var(--r-hi); font-weight: 700;
  cursor: pointer; margin-top: 6px; text-decoration: underline;
  text-underline-offset: 2px;
}
.ax-review-card__reply-header {
  display: flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700; color: var(--t2);
  margin-bottom: 6px;
}
.ax-review-card__reply-header strong { color: var(--r-hi); }
.ax-review-card__reply-header span { color: var(--t3); }

/* ══════════════════════════════════════════════════════════════
   STATUS PAGE  (ax-sp + ax-sc)
   ══════════════════════════════════════════════════════════════ */

/* Page wrapper */
.ax-sp {
  min-height: 100vh;
}

/* Hero header */
.ax-sp__header {
  padding: 64px 0 48px; text-align: center; position: relative;
  border-bottom: 1px solid var(--b1);
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(220,38,38,.06) 0%, transparent 70%);
}
.ax-sp__header-inner {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.ax-sp__header-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--s2); border: 1px solid var(--b1);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
}
.ax-sp__header-icon svg { width: 24px; height: 24px; color: var(--r-hi); }
.ax-sp__header-title {
  font-family: var(--f-d); font-size: clamp(28px, 5vw, 42px);
  color: var(--t1); letter-spacing: .04em; margin: 0; line-height: 1.1;
}
.ax-sp__header-sub {
  font-size: 14px; color: var(--t3); margin: 0;
  max-width: 400px;
}

/* Container */
.ax-sp__container {
  max-width: 860px; margin: 0 auto; padding: 48px 24px 80px;
}

/* Legend */
.ax-sp__legend {
  display: flex; flex-wrap: wrap; gap: 16px;
  padding: 14px 20px; background: var(--s2);
  border: 1px solid var(--b1); border-radius: 12px;
  margin-bottom: 32px;
}
.ax-sp__legend-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: var(--t2);
}
.ax-sp__legend-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}

/* Status group */
.ax-sp__list { display: flex; flex-direction: column; gap: 28px; }
.ax-sp__group {
  background: var(--s2); border: 1px solid var(--b1);
  border-radius: 14px; overflow: hidden;
  position: relative;
}
.ax-sp__group-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid var(--b1);
  background: var(--s3);
}
.ax-sp__group-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--r), transparent);
}
.ax-sp__group-name {
  font-family: var(--f-h); font-size: 14px; font-weight: 700;
  color: var(--t1); margin: 0;
}
.ax-sp__group-count {
  font-size: 11px; font-weight: 700; color: var(--t3);
  background: var(--s2); border: 1px solid var(--b1);
  padding: 2px 9px; border-radius: 20px;
}
.ax-sp__group-cards { display: flex; flex-direction: column; gap: 0; }
.ax-sp__group-cards > * + * { border-top: 1px solid var(--b1); }

/* Empty */
.ax-sp__empty {
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; padding: 64px 24px; text-align: center;
  background: var(--s2); border: 1px solid var(--b1); border-radius: 14px;
}
.ax-sp__empty svg { width: 40px; height: 40px; color: var(--t3); opacity: .4; }
.ax-sp__empty p { font-size: 14px; color: var(--t3); margin: 0; }

/* ── Status Card (ax-sc) ── */
.ax-sc {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; text-decoration: none;
  transition: background .15s;
  position: relative;
}
.ax-sc:hover { background: rgba(255,255,255,.025); }

/* Left: product info */
.ax-sc__info {
  display: flex; align-items: center; gap: 12px; min-width: 0;
}
.ax-sc__icon {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--s3); border: 1px solid var(--b1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ax-sc__icon svg { width: 15px; height: 15px; color: var(--t3); }
.ax-sc__name {
  font-size: 13.5px; font-weight: 600; color: var(--t1);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* Right: status */
.ax-sc__status {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0; margin-left: 16px;
}
.ax-sc__dot-wrap { position: relative; width: 10px; height: 10px; flex-shrink: 0; }
.ax-sc__dot {
  width: 10px; height: 10px; border-radius: 50%;
  position: absolute; inset: 0;
}
.ax-sc__pulse {
  width: 10px; height: 10px; border-radius: 50%;
  position: absolute; inset: 0; opacity: .5;
  animation: ax-sc-pulse 2s ease-out infinite;
}
@keyframes ax-sc-pulse {
  0%   { transform: scale(1); opacity: .5; }
  70%  { transform: scale(2.2); opacity: 0; }
  100% { transform: scale(2.2); opacity: 0; }
}
.ax-sc__label {
  font-size: 12px; font-weight: 700; white-space: nowrap;
}
.ax-sc__arrow {
  width: 14px; height: 14px; color: var(--t3);
  transition: transform .15s;
}
.ax-sc:hover .ax-sc__arrow { transform: translateX(3px); color: var(--t1); }

/* ══════════════════════════════════════════════════════════════
   POLICY PAGES  (ax-policy-page)
   ══════════════════════════════════════════════════════════════ */

.ax-policy-page {
  min-height: 60vh;
}

/* Hero header */
.ax-policy-page__hero {
  position: relative;
  padding: 64px 24px 52px;
  text-align: center;
  border-bottom: 1px solid var(--b1);
  overflow: hidden;
}
.ax-policy-page__hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 80% at 50% -10%, rgba(217,48,37,.06) 0%, transparent 70%);
}
.ax-policy-page__hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 100% at 50% 0%, black 30%, transparent 100%);
}
.ax-policy-page__hero-inner {
  position: relative; z-index: 1;
  max-width: 600px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.ax-policy-page__hero-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: rgba(217,48,37,.10); border: 1px solid rgba(217,48,37,.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--r-hi); box-shadow: 0 4px 20px rgba(217,48,37,.12);
  margin-bottom: 4px;
}
.ax-policy-page__hero-title {
  font-family: var(--f-d);
  font-size: clamp(30px, 5vw, 46px);
  color: var(--t1); margin: 0; letter-spacing: .04em; line-height: 1.05;
}
.ax-policy-page__hero-sub {
  font-size: 14px; color: var(--t3); margin: 0; max-width: 420px; line-height: 1.6;
}
.ax-policy-page__hero-meta {
  display: flex; align-items: center; gap: 10px;
  margin-top: 4px;
}
.ax-policy-page__hero-meta-item {
  display: flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: var(--t3);
}
.ax-policy-page__hero-sep {
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--t3); opacity: .4;
}

/* Content wrapper */
.ax-policy-page__wrap {
  max-width: 800px; margin: 0 auto;
  padding: 40px 24px 80px;
}
.ax-policy-page__card {
  background: var(--s2); border: 1px solid var(--b1);
  border-radius: 16px; padding: 40px 40px 40px;
  position: relative; overflow: hidden;
}
@media (max-width: 640px) {
  .ax-policy-page__card { padding: 24px 20px; }
}
.ax-policy-page__card-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--r), var(--r-hi), transparent);
}

/* Policy content typography */
.ax-policy-content {
  color: rgba(242,242,242,.65);
  font-size: 14px; line-height: 1.8;
}
.ax-policy-content h1, .ax-policy-content h2, .ax-policy-content h3, .ax-policy-content h4 {
  font-family: var(--f-h); color: var(--t1); font-weight: 700;
  margin: 28px 0 10px; line-height: 1.3;
}
.ax-policy-content h1 { font-size: 24px; }
.ax-policy-content h2 { font-size: 18px; border-bottom: 1px solid var(--b1); padding-bottom: 8px; }
.ax-policy-content h3 { font-size: 15px; color: rgba(242,242,242,.85); }
.ax-policy-content p { margin: 0 0 14px; }
.ax-policy-content ul, .ax-policy-content ol {
  margin: 0 0 14px 20px; display: flex; flex-direction: column; gap: 6px;
}
.ax-policy-content li::marker { color: var(--r-hi); }
.ax-policy-content a { color: var(--r-hi); text-decoration: underline; }
.ax-policy-content strong { color: var(--t1); font-weight: 700; }
.ax-policy-content code {
  background: var(--s3); border: 1px solid var(--b1);
  border-radius: 4px; padding: 1px 6px; font-size: 12px; color: var(--r-hi);
}

/* Footer CTA */
.ax-policy-page__footer {
  margin-top: 32px;
  background: var(--s2); border: 1px solid var(--b1);
  border-radius: 12px; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
}
.ax-policy-page__footer p {
  font-size: 13px; color: var(--t2); font-weight: 500; margin: 0;
}
.ax-policy-page__footer-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 18px; border-radius: 9px;
  background: var(--r); color: #fff;
  font-size: 12px; font-weight: 700; font-family: var(--f-h);
  text-decoration: none; letter-spacing: .05em;
  transition: background .18s, box-shadow .18s;
}
.ax-policy-page__footer-link:hover {
  background: var(--r-hi); box-shadow: 0 4px 16px var(--r-glow);
}

/* ══════════════════════════════════════════════════════════════
   FAQ REDESIGN  (ax-faq v2)
   ══════════════════════════════════════════════════════════════ */

.ax-faq {
  padding: 56px 0 80px;
}
.ax-faq__header {
  margin-bottom: 12px;
}
.ax-faq__header-inner {
  display: flex; align-items: center; gap: 14px; margin-bottom: 8px;
}
.ax-faq__title-accent {
  display: block; width: 4px; height: 28px;
  background: linear-gradient(180deg, var(--r), var(--r-hi));
  border-radius: 2px; flex-shrink: 0;
}
.ax-faq__title {
  font-family: var(--f-d); font-size: clamp(26px, 4vw, 38px);
  color: var(--t1); letter-spacing: .04em; margin: 0; line-height: 1.1;
}
.ax-faq__subtitle {
  font-size: 14px; color: var(--t3); margin: 0 0 24px 18px; line-height: 1.6;
}

/* Category badges */
.ax-faq__badges {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px;
}
.ax-faq__badge {
  padding: 6px 14px; border-radius: 20px; font-size: 11.5px;
  font-weight: 700; letter-spacing: .05em;
  background: var(--s2); border: 1px solid var(--b1);
  color: var(--t3); cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.ax-faq__badge--active, .ax-faq__badge:hover {
  background: rgba(217,48,37,.10); border-color: var(--r-border); color: var(--r-hi);
}

/* FAQ list */
.ax-faq__list {
  display: flex; flex-direction: column; gap: 8px;
}
.ax-faq__list--page {
  max-width: 800px; margin: 0 auto;
}

/* Item */
.ax-faq-item {
  background: var(--s2); border: 1px solid var(--b1);
  border-radius: 12px; overflow: hidden;
  transition: border-color .18s, box-shadow .18s;
}
.ax-faq-item:hover, .ax-faq-item--open {
  border-color: rgba(217,48,37,.20);
}
.ax-faq-item--open {
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
}

/* Trigger */
.ax-faq-item__trigger {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  padding: 18px 20px; background: none; border: none;
  cursor: pointer; text-align: left;
}
.ax-faq-item__trigger-left {
  display: flex; align-items: center; gap: 14px; min-width: 0;
}
.ax-faq-item__num {
  font-family: var(--f-d); font-size: 14px; letter-spacing: .08em;
  color: var(--r-hi); opacity: .5; flex-shrink: 0;
  transition: opacity .18s;
}
.ax-faq-item--open .ax-faq-item__num { opacity: 1; }
.ax-faq-item__q {
  font-family: var(--f-h); font-size: 14.5px; font-weight: 700;
  color: var(--t1); line-height: 1.4;
}

/* Icon — plus becomes minus */
.ax-faq-item__icon {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--s3); border: 1px solid var(--b1);
  color: var(--t2); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background .18s, color .18s, border-color .18s;
  position: relative;
}
.ax-faq-item--open .ax-faq-item__icon {
  background: rgba(217,48,37,.12); border-color: var(--r-border); color: var(--r-hi);
}
.ax-faq-item__icon-plus { position: absolute; transition: opacity .18s, transform .18s; }
.ax-faq-item__icon-minus { position: absolute; transition: opacity .18s, transform .18s; opacity: 0; }
.ax-faq-item--open .ax-faq-item__icon-plus { opacity: 0; transform: rotate(90deg); }
.ax-faq-item--open .ax-faq-item__icon-minus { opacity: 1; }

/* Answer */
.ax-faq-item__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.32s cubic-bezier(0.4,0,0.2,1);
}
.ax-faq-item__answer-inner {
  padding: 0 20px 20px 56px;
  border-top: 1px solid var(--b1);
}
@media (max-width: 640px) {
  .ax-faq-item__answer-inner { padding: 0 16px 16px 16px; }
}
.ax-faq-item__a {
  font-size: 13.5px; color: var(--t2); line-height: 1.75; margin: 14px 0 0;
}

/* Still have questions CTA */
.ax-faq__cta {
  margin-top: 40px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  background: var(--s2); border: 1px solid var(--b1);
  border-radius: 14px; padding: 24px 28px;
  position: relative; overflow: hidden;
}
.ax-faq__cta::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--r), var(--r-hi), transparent);
}
.ax-faq__cta-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(217,48,37,.10); border: 1px solid var(--r-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--r-hi); flex-shrink: 0;
}
.ax-faq__cta-icon svg { width: 22px; height: 22px; }
.ax-faq__cta-text { flex: 1; min-width: 0; }
.ax-faq__cta-title {
  font-family: var(--f-h); font-size: 16px; font-weight: 700; color: var(--t1); margin: 0;
}
.ax-faq__cta-sub {
  font-size: 13px; color: var(--t3); margin: 3px 0 0;
}
.ax-faq__cta-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 22px; border-radius: 10px;
  background: var(--r); color: #fff;
  font-size: 12.5px; font-weight: 700; font-family: var(--f-h);
  text-decoration: none; letter-spacing: .06em;
  transition: background .18s, box-shadow .18s; white-space: nowrap;
}
.ax-faq__cta-btn:hover {
  background: var(--r-hi); box-shadow: 0 6px 20px var(--r-glow);
}

/* ══════════════════════════════════════════════════════════════
   HERO v2 — Logo space + scan-line
   ══════════════════════════════════════════════════════════════ */

.ax-hero__scan-line {
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217,48,37,.5), transparent);
  animation: ax-scan 4s ease-in-out infinite;
}
@keyframes ax-scan {
  0%  { top: 0; opacity: 0; }
  5%  { opacity: 1; }
  95% { opacity: 1; }
  100%{ top: 100%; opacity: 0; }
}

.ax-hero__logo-wrap {
  width: 72px; height: 72px; border-radius: 18px;
  background: var(--s2); border: 1px solid var(--b1);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; margin-bottom: 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,.4), 0 0 0 1px rgba(217,48,37,.12);
}
.ax-hero__logo-img {
  width: 100%; height: 100%; object-fit: cover;
}
.ax-hero__logo-wrap--placeholder {
  background: rgba(217,48,37,.08); border-color: rgba(217,48,37,.20);
  color: var(--r-hi);
}

/* ══════════════════════════════════════════════════════════════
   CART PAGE ENHANCEMENTS
   ══════════════════════════════════════════════════════════════ */

.ax-cart-page {
  padding: 40px 0 80px;
}
.ax-cart-page__header {
  display: flex; align-items: center; gap: 14px; margin-bottom: 32px;
  padding-bottom: 20px; border-bottom: 1px solid var(--b1);
}
.ax-cart-page__header-accent {
  width: 4px; height: 28px; background: var(--r); border-radius: 2px; flex-shrink: 0;
}
.ax-cart-page__title {
  font-family: var(--f-d); font-size: 28px; letter-spacing: .04em; color: var(--t1); margin: 0;
}
.ax-cart-page__count {
  font-size: 12px; font-weight: 700; letter-spacing: .08em; color: var(--t3);
  background: var(--s2); border: 1px solid var(--b1); padding: 4px 10px; border-radius: 20px;
  font-family: var(--f-h); text-transform: uppercase;
}

/* ================================================
   AEXOR DESIGNS — Sidebar Supplemental Styles
   (classes used in customer-sidebar.njk)
   ================================================ */

.ax-sidebar__profile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 16px 14px;
  border-bottom: 1px solid var(--b1);
  background: rgba(0,0,0,0.18);
}

.ax-sidebar__avatar {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 10px;
  background: var(--r-lo);
  border: 1px solid var(--r-border);
  color: var(--r-hi);
  font-family: var(--f-h);
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 14px rgba(217,48,37,0.12);
}

.ax-sidebar__profile-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.ax-sidebar__profile-label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--t3);
  font-family: var(--f-h);
  line-height: 1;
}

.ax-sidebar__profile-email {
  font-size: 12px;
  font-weight: 500;
  color: var(--t2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}

.ax-sidebar__link-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.ax-sidebar__active-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--r-hi);
  box-shadow: 0 0 6px var(--r-glow);
  margin-left: auto;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.ax-sidebar__balance {
  margin-left: auto;
  position: relative;
  z-index: 1;
  font-size: 11px;
  font-weight: 700;
  color: var(--r-hi);
  font-family: var(--f-h);
  background: var(--r-lo);
  border: 1px solid var(--r-border);
  padding: 2px 8px;
  border-radius: 99px;
  white-space: nowrap;
}

.ax-sidebar__footer {
  padding: 8px;
  border-top: 1px solid var(--b1);
  margin-top: 4px;
}

.ax-sidebar__logout {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 36px;
  padding: 0 12px;
  font-family: var(--f-h);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--t3);
  background: none;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: color 0.18s, border-color 0.18s, background 0.18s;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.ax-sidebar__logout::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(248,113,113,0.07);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
  border-radius: inherit;
}

.ax-sidebar__logout:hover::before { transform: scaleX(1); }
.ax-sidebar__logout:hover {
  color: #f87171;
  border-color: rgba(248,113,113,0.25);
}

/* ================================================
   AEXOR DESIGNS — Customer Dashboard v2
   ================================================ */

/* ── Welcome Banner ── */
.ax-db__welcome {
  position: relative;
  background: var(--s1);
  border: 1px solid var(--b1);
  border-radius: 14px;
  padding: 28px 28px 24px;
  margin-bottom: 20px;
  overflow: hidden;
}

.ax-db__welcome-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,48,37,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.ax-db__welcome-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--b1) 1px, transparent 1px),
    linear-gradient(90deg, var(--b1) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 100% 100% at 100% 0%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 100% 100% at 100% 0%, black 0%, transparent 70%);
  opacity: 0.4;
  pointer-events: none;
}

.ax-db__welcome-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.ax-db__welcome-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.ax-db__welcome-eyebrow {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--f-h);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--r-hi);
  margin: 0;
}

.ax-db__welcome-eyebrow-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--r);
  box-shadow: 0 0 6px var(--r-glow);
  animation: ax-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

.ax-db__welcome-title {
  font-family: var(--f-h);
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 800;
  color: var(--t1);
  letter-spacing: -0.02em;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ax-db__welcome-sub {
  font-size: 12px;
  color: var(--t3);
  margin: 0;
  line-height: 1.4;
}

.ax-db__welcome-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.22);
  border-radius: 99px;
  font-family: var(--f-h);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4ade80;
  flex-shrink: 0;
}

/* ── Stat Cards ── */
.ax-db__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

.ax-db__stat-card {
  background: var(--s1);
  border: 1px solid var(--b1);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.ax-db__stat-card:hover {
  border-color: var(--r-border);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25), 0 0 16px var(--r-lo);
  transform: translateY(-1px);
}

.ax-db__stat-topbar {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--r-glow), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}

.ax-db__stat-card:hover .ax-db__stat-topbar { opacity: 1; }

.ax-db__stat-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
}

.ax-db__stat-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 10px;
  background: var(--r-lo);
  border: 1px solid var(--r-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--r-hi);
  flex-shrink: 0;
  transition: background 0.2s, box-shadow 0.2s;
}

.ax-db__stat-card:hover .ax-db__stat-icon {
  background: var(--r-mid);
  box-shadow: 0 0 16px var(--r-glow);
}

.ax-db__stat-icon svg { width: 16px; height: 16px; }

.ax-db__stat-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.ax-db__stat-label {
  font-family: var(--f-h);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--t3);
  white-space: nowrap;
}

.ax-db__stat-val {
  font-family: var(--f-h);
  font-size: 24px;
  font-weight: 800;
  color: var(--t1);
  letter-spacing: -0.03em;
  line-height: 1;
}

.ax-db__stat-val--sm {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ── Section Wrapper ── */
.ax-db__section {
  margin-bottom: 20px;
}

.ax-db__section--danger { margin-bottom: 0; }

.ax-db__section-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.ax-db__section-pip {
  display: block;
  width: 3px;
  height: 18px;
  background: linear-gradient(180deg, var(--r-hi), var(--r));
  border-radius: 3px;
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--r-glow);
}

.ax-db__section-pip--danger {
  background: linear-gradient(180deg, #f87171, #ef4444);
  box-shadow: 0 0 8px rgba(239,68,68,0.4);
}

.ax-db__section-title {
  font-family: var(--f-h);
  font-size: 13px;
  font-weight: 800;
  color: var(--t1);
  letter-spacing: -0.01em;
  margin: 0;
}

.ax-db__section-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  font-family: var(--f-h);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--r-hi);
  text-decoration: none;
  transition: gap 0.2s;
}

.ax-db__section-link:hover { gap: 7px; }

/* ── Latest Order Card ── */
.ax-db__order-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--s1);
  border: 1px solid var(--b1);
  border-radius: 12px;
  padding: 16px 18px;
  transition: border-color 0.2s;
}

.ax-db__order-card:hover { border-color: var(--r-border); }

.ax-db__order-icon-wrap {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: var(--r-lo);
  border: 1px solid var(--r-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--r-hi);
  flex-shrink: 0;
}

.ax-db__order-icon-wrap svg { width: 16px; height: 16px; }

.ax-db__order-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ax-db__order-name {
  font-family: var(--f-h);
  font-size: 14px;
  font-weight: 700;
  color: var(--t1);
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
}

.ax-db__order-variant {
  font-weight: 400;
  color: var(--t3);
  font-size: 12px;
}

.ax-db__order-more {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: var(--r-hi);
  background: var(--r-lo);
  border: 1px solid var(--r-border);
  border-radius: 99px;
  padding: 1px 7px;
  vertical-align: middle;
  margin-left: 4px;
}

.ax-db__order-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: var(--t3);
  margin: 0;
  flex-wrap: wrap;
}

.ax-db__order-id {
  color: var(--r-hi);
  text-decoration: none;
  font-weight: 600;
}

.ax-db__order-id:hover { text-decoration: underline; }

.ax-db__order-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--t3);
  flex-shrink: 0;
}

.ax-db__order-view {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 32px;
  padding: 0 14px;
  background: var(--s3);
  border: 1px solid var(--b2);
  border-radius: 8px;
  font-family: var(--f-h);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--t2);
  text-decoration: none;
  flex-shrink: 0;
  transition: color 0.18s, border-color 0.18s, background 0.18s;
}

.ax-db__order-view:hover {
  color: var(--t1);
  border-color: var(--r-border);
  background: var(--r-lo);
}

/* ── Empty state ── */
.ax-db__empty {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--s1);
  border: 1px solid var(--b1);
  border-radius: 12px;
  padding: 20px 24px;
  font-size: 13.5px;
  color: var(--t3);
}

.ax-db__empty-link {
  color: var(--r-hi);
  text-decoration: none;
  font-weight: 600;
}

.ax-db__empty-link:hover { text-decoration: underline; }

/* ── Quick Access Grid ── */
.ax-db__quick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.ax-db__quick-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--s1);
  border: 1px solid var(--b1);
  border-radius: 12px;
  text-decoration: none;
  color: var(--t2);
  position: relative;
  overflow: hidden;
  transition: color 0.18s, border-color 0.18s;
}

.ax-db__quick-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--r-lo);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.ax-db__quick-card:hover::before { transform: scaleX(1); }
.ax-db__quick-card:hover { color: var(--t1); border-color: var(--r-border); }

.ax-db__quick-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 9px;
  background: var(--s3);
  border: 1px solid var(--b2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--r-hi);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.ax-db__quick-card:hover .ax-db__quick-icon {
  background: var(--r-mid);
  border-color: var(--r-border);
  box-shadow: 0 0 12px var(--r-glow);
}

.ax-db__quick-icon svg { width: 15px; height: 15px; }

.ax-db__quick-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.ax-db__quick-title {
  font-family: var(--f-h);
  font-size: 12px;
  font-weight: 700;
  color: var(--t1);
  letter-spacing: 0.02em;
}

.ax-db__quick-sub {
  font-size: 11px;
  color: var(--t3);
}

.ax-db__quick-arrow {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  color: var(--t3);
  position: relative;
  z-index: 1;
  transition: color 0.18s, transform 0.2s;
}

.ax-db__quick-card:hover .ax-db__quick-arrow {
  color: var(--r-hi);
  transform: translateX(3px);
}

/* ── Account Actions ── */
.ax-db__action-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 14px 18px;
  background: var(--s1);
  border: 1px solid var(--b1);
  border-radius: 12px;
}

.ax-db__action-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 34px;
  padding: 0 16px;
  font-family: var(--f-h);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--b2);
  border-radius: 8px;
  color: var(--t3);
  cursor: pointer;
  transition: color 0.18s, border-color 0.18s, background 0.18s;
}

.ax-db__action-btn:hover {
  color: var(--t1);
  border-color: var(--r-border);
  background: var(--r-lo);
}

.ax-db__action-btn:disabled { opacity: 0.5; pointer-events: none; }

.ax-db__action-btn--danger {
  border-color: rgba(248,113,113,0.25);
  color: #f87171;
}

.ax-db__action-btn--danger:hover {
  background: rgba(248,113,113,0.08);
  border-color: rgba(248,113,113,0.45);
  color: #f87171;
}

/* ── Responsive ── */
@media (max-width: 700px) {
  .ax-db__stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 400px) {
  .ax-db__stats { grid-template-columns: 1fr; }
  .ax-db__welcome { padding: 20px 18px; }
  .ax-db__welcome-badge { display: none; }
}

/* ================================================
   AEXOR DESIGNS — Delete Account Modal
   ================================================ */

/* NO display:flex !important — Alpine x-show must work */
.ax-dm {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.ax-dm__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
}

.ax-dm__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  background: #111116;
  border: 1px solid rgba(239,68,68,0.25);
  border-radius: 16px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04), 0 32px 80px rgba(0,0,0,0.8), 0 0 50px rgba(239,68,68,0.08);
  overflow: hidden;
  box-sizing: border-box;
}

.ax-dm__bar {
  height: 3px;
  background: linear-gradient(90deg, transparent, #ef4444, #f87171, #ef4444, transparent);
}

.ax-dm__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  background: #1e1e28;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  color: rgba(242,242,242,0.40);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  padding: 0;
}

.ax-dm__close:hover {
  background: rgba(239,68,68,0.15);
  color: #f87171;
  border-color: rgba(239,68,68,0.30);
}

.ax-dm__header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px 16px;
}

.ax-dm__icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 12px;
  background: rgba(239,68,68,0.10);
  border: 1px solid rgba(239,68,68,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f87171;
  flex-shrink: 0;
}

.ax-dm__title {
  font-family: var(--f-h);
  font-size: 17px;
  font-weight: 800;
  color: #f2f2f2;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.2;
}

.ax-dm__subtitle {
  font-size: 12px;
  color: rgba(242,242,242,0.35);
  margin: 3px 0 0;
  line-height: 1.3;
}

.ax-dm__body {
  padding: 0 24px 24px;
}

.ax-dm__desc {
  font-size: 13px;
  color: rgba(242,242,242,0.45);
  line-height: 1.65;
  margin: 0 0 20px;
}

.ax-dm__btns {
  display: flex;
  gap: 10px;
}

.ax-dm__btn {
  flex: 1;
  height: 42px;
  border-radius: 10px;
  font-family: var(--f-h);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
  border: 1px solid transparent;
}

.ax-dm__btn:disabled { opacity: 0.5; pointer-events: none; }

.ax-dm__btn--cancel {
  background: transparent;
  border-color: rgba(255,255,255,0.10);
  color: rgba(242,242,242,0.50);
}

.ax-dm__btn--cancel:hover {
  background: rgba(255,255,255,0.05);
  color: rgba(242,242,242,0.75);
}

.ax-dm__btn--delete {
  background: #ef4444;
  border-color: #ef4444;
  color: #fff;
}

.ax-dm__btn--delete:hover {
  background: #dc2626;
  box-shadow: 0 4px 16px rgba(239,68,68,0.35);
}


/* ═══════════════════════════════════════════════════════════════
   STATUS PAGE  (ax-sp__*  ax-sc__*)
   ═══════════════════════════════════════════════════════════════ */

.ax-sp {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

/* Header */
.ax-sp__header {
  margin-bottom: 36px;
}
.ax-sp__header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}
.ax-sp__header-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 14px;
  background: rgba(var(--r-lo, 180,30,30), 0.12);
  border: 1px solid rgba(var(--r-lo, 180,30,30), 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--r);
}
.ax-sp__header-icon svg { width: 22px; height: 22px; }
.ax-sp__header-title {
  font-family: var(--f-h);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 900;
  color: #f2f2f2;
  letter-spacing: -0.025em;
  margin: 0;
}
.ax-sp__header-sub {
  font-size: 13px;
  color: rgba(242,242,242,0.40);
  margin: 4px 0 0;
}

/* Container */
.ax-sp__container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* List */
.ax-sp__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Group */
.ax-sp__group {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  overflow: hidden;
}
.ax-sp__group-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.02);
}
.ax-sp__group-accent {
  width: 3px;
  height: 16px;
  border-radius: 2px;
  background: var(--r);
  flex-shrink: 0;
}
.ax-sp__group-name {
  flex: 1;
  font-family: var(--f-h);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(242,242,242,0.55);
  margin: 0;
}
.ax-sp__group-count {
  font-size: 10px;
  color: rgba(242,242,242,0.25);
  font-family: var(--f-h);
  letter-spacing: 0.08em;
}
.ax-sp__group-cards {
  display: flex;
  flex-direction: column;
}

/* Status card (ax-sc) */
.ax-sc {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  text-decoration: none;
  transition: background 0.15s;
}
.ax-sc:last-child { border-bottom: none; }
.ax-sc:hover { background: rgba(255,255,255,0.03); }

/* Top-level card (outside group) */
.ax-sp__list > .ax-sc {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
}
.ax-sp__list > .ax-sc:hover { background: rgba(255,255,255,0.04); }

.ax-sc__info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}
.ax-sc__icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 9px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(242,242,242,0.30);
  flex-shrink: 0;
}
.ax-sc__icon svg { width: 15px; height: 15px; }
.ax-sc__name {
  font-size: 13px;
  font-weight: 500;
  color: rgba(242,242,242,0.80);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ax-sc__status {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.ax-sc__dot-wrap {
  position: relative;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
}
.ax-sc__dot {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}
.ax-sc__pulse {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  opacity: 0.25;
  animation: ax-sc-pulse 2.4s ease-out infinite;
}
@keyframes ax-sc-pulse {
  0%   { transform: scale(1);   opacity: 0.25; }
  70%  { transform: scale(2.0); opacity: 0; }
  100% { transform: scale(2.0); opacity: 0; }
}
.ax-sc__label {
  font-family: var(--f-h);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.ax-sc__arrow {
  width: 14px;
  height: 14px;
  color: rgba(242,242,242,0.20);
  transition: color 0.15s, transform 0.15s;
}
.ax-sc:hover .ax-sc__arrow {
  color: rgba(242,242,242,0.50);
  transform: translateX(2px);
}

/* Empty */
.ax-sp__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 60px 20px;
  color: rgba(242,242,242,0.25);
  text-align: center;
}
.ax-sp__empty svg { width: 40px; height: 40px; }

/* Legend */
.ax-sp__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  padding: 16px 0 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.ax-sp__legend-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: rgba(242,242,242,0.35);
  font-family: var(--f-h);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.ax-sp__legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════════
   CUSTOMER TICKETS LIST  (ax-tks__*  ax-tks-badge__*)
   ═══════════════════════════════════════════════════════════════ */

/* Info notice */
.ax-tks-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 20px;
  font-size: 12px;
  color: rgba(242,242,242,0.45);
  line-height: 1.55;
}
.ax-tks-notice__icon {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 1px;
  color: rgba(242,242,242,0.30);
  flex-shrink: 0;
}
.ax-tks-notice__link {
  color: var(--r);
  text-decoration: none;
}
.ax-tks-notice__link:hover { text-decoration: underline; }

/* Card */
.ax-tks {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}
.ax-tks__top-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--r), transparent 70%);
}

/* Table */
.ax-tks-table-wrap {
  overflow-x: auto;
}
.ax-tks-table {
  width: 100%;
  border-collapse: collapse;
}
.ax-tks-table__head { background: rgba(255,255,255,0.03); }
.ax-tks-table__th {
  padding: 12px 18px;
  text-align: left;
  font-family: var(--f-h);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242,242,242,0.30);
  white-space: nowrap;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.ax-tks-table__th--status { width: 180px; }
.ax-tks-table__th--date   { width: 160px; }
.ax-tks-table__th--action { width: 80px;  }

.ax-tks-table__row {
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.12s;
}
.ax-tks-table__row:last-child { border-bottom: none; }
.ax-tks-table__row:hover { background: rgba(255,255,255,0.03); }

.ax-tks-table__td {
  padding: 14px 18px;
  font-size: 12px;
  color: rgba(242,242,242,0.60);
  vertical-align: middle;
}
.ax-tks-table__td--date { white-space: nowrap; font-size: 11px; }

/* Subject cell */
.ax-tks-table__subject-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ax-tks-table__subject-icon {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(242,242,242,0.25);
  flex-shrink: 0;
}
.ax-tks-table__subject-icon svg { width: 13px; height: 13px; }
.ax-tks-table__subject-link {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #f2f2f2;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 340px;
}
.ax-tks-table__subject-link:hover { color: var(--r); }
.ax-tks-table__ticket-id {
  display: block;
  font-size: 10px;
  color: rgba(242,242,242,0.25);
  margin-top: 2px;
  font-family: var(--f-h);
}

/* Status badges */
.ax-tks-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 20px;
  font-family: var(--f-h);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  background: rgba(255,255,255,0.05);
  color: rgba(242,242,242,0.45);
  border: 1px solid rgba(255,255,255,0.08);
}
.ax-tks-badge--pending {
  background: rgba(250,204,21,0.10);
  color: #facc15;
  border-color: rgba(250,204,21,0.20);
}
.ax-tks-badge--open {
  background: rgba(96,165,250,0.10);
  color: #60a5fa;
  border-color: rgba(96,165,250,0.20);
}
.ax-tks-badge--closed {
  background: rgba(74,222,128,0.10);
  color: #4ade80;
  border-color: rgba(74,222,128,0.20);
}

/* Action button */
.ax-tks-table__action-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 7px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(242,242,242,0.50);
  font-size: 11px;
  font-family: var(--f-h);
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.ax-tks-table__action-btn:hover {
  background: rgba(255,255,255,0.08);
  color: #f2f2f2;
  border-color: rgba(255,255,255,0.14);
}

/* Empty state */
.ax-tks__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 60px 20px;
  text-align: center;
  color: rgba(242,242,242,0.25);
}
.ax-tks__empty svg { width: 40px; height: 40px; }
.ax-tks__empty p { font-size: 14px; font-weight: 500; }
.ax-tks__empty-sub { font-size: 12px; color: rgba(242,242,242,0.20); }


/* ═══════════════════════════════════════════════════════════════
   TICKET CHAT  (ax-tc__*  ax-tc-msg__*  ax-tc-reply__*)
   ═══════════════════════════════════════════════════════════════ */

/* Back link */
.ax-tc-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-family: var(--f-h);
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(242,242,242,0.35);
  text-decoration: none;
  margin-bottom: 6px;
  transition: color 0.15s;
}
.ax-tc-back:hover { color: rgba(242,242,242,0.70); }
.ax-tc-back svg { width: 13px; height: 13px; }

/* Meta strip */
.ax-tc-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}
.ax-tc-meta__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  font-size: 11px;
  color: rgba(242,242,242,0.40);
  font-family: var(--f-h);
  text-decoration: none;
  white-space: nowrap;
}
.ax-tc-meta__pill svg { width: 12px; height: 12px; flex-shrink: 0; }
.ax-tc-meta__pill--link:hover {
  background: rgba(255,255,255,0.07);
  color: rgba(242,242,242,0.65);
}
.ax-tc-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ax-tc-status__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.ax-tc-status--pending { color: #facc15; background: rgba(250,204,21,0.10); border-color: rgba(250,204,21,0.20); }
.ax-tc-status--open    { color: #60a5fa; background: rgba(96,165,250,0.10); border-color: rgba(96,165,250,0.20); }
.ax-tc-status--closed  { color: #4ade80; background: rgba(74,222,128,0.10); border-color: rgba(74,222,128,0.20); }

/* Chat window */
.ax-tc-chat {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Messages scroll area */
.ax-tc-chat__messages {
  height: calc(100vh - 420px);
  min-height: 320px;
  overflow-y: auto;
  padding: 24px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.08) transparent;
}
.ax-tc-chat__messages::-webkit-scrollbar { width: 4px; }
.ax-tc-chat__messages::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 4px; }

/* Individual message */
.ax-tc-msg {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.ax-tc-msg--mine {
  flex-direction: row-reverse;
}

/* Avatar */
.ax-tc-msg__avatar {
  flex-shrink: 0;
}
.ax-tc-msg__avatar-img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(255,255,255,0.05);
}
.ax-tc-msg__avatar-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(242,242,242,0.30);
}
.ax-tc-msg__avatar-icon--me {
  background: rgba(var(--r-lo, 180,30,30), 0.12);
  border-color: rgba(var(--r-lo, 180,30,30), 0.20);
  color: var(--r);
}
.ax-tc-msg__avatar-icon svg { width: 16px; height: 16px; }

/* Message body */
.ax-tc-msg__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 72%;
}
.ax-tc-msg--mine .ax-tc-msg__body {
  align-items: flex-end;
}

.ax-tc-msg__meta {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ax-tc-msg--mine .ax-tc-msg__meta {
  flex-direction: row-reverse;
}
.ax-tc-msg__sender {
  font-family: var(--f-h);
  font-size: 11px;
  font-weight: 700;
  color: rgba(242,242,242,0.50);
  letter-spacing: 0.04em;
}
.ax-tc-msg__sender--me { color: var(--r); }
.ax-tc-msg__time {
  font-size: 10px;
  color: rgba(242,242,242,0.25);
  font-family: var(--f-h);
}

/* Bubble */
.ax-tc-msg__bubble {
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.60;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.ax-tc-msg__bubble--theirs {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  color: rgba(242,242,242,0.75);
  border-top-left-radius: 4px;
}
.ax-tc-msg__bubble--mine {
  background: var(--r);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.92);
  border-top-right-radius: 4px;
}

/* Footer */
.ax-tc-chat__footer {
  border-top: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.02);
  padding: 14px 16px;
}
.ax-tc-chat__closed {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(242,242,242,0.30);
  font-family: var(--f-h);
  letter-spacing: 0.05em;
  padding: 4px 0;
}
.ax-tc-chat__closed svg { width: 15px; height: 15px; flex-shrink: 0; }

/* Reply form */
.ax-tc-reply {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  position: relative;
}
.ax-tc-reply__input {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  color: #f2f2f2;
  font-size: 13px;
  font-family: var(--f-b);
  padding: 10px 14px;
  resize: none;
  max-height: 120px;
  overflow-y: auto;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.ax-tc-reply__input:focus {
  border-color: rgba(var(--r-lo, 180,30,30), 0.50);
  box-shadow: 0 0 0 3px rgba(var(--r-lo, 180,30,30), 0.10);
}
.ax-tc-reply__input::placeholder { color: rgba(242,242,242,0.20); }
.ax-tc-reply__input:disabled { opacity: 0.45; }
.ax-tc-reply__send {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  height: 42px;
  background: var(--r);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 10px;
  color: #fff;
  font-family: var(--f-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, box-shadow 0.15s;
  flex-shrink: 0;
}
.ax-tc-reply__send:hover {
  background: var(--r-hi, var(--r));
  box-shadow: 0 4px 14px rgba(var(--r-lo,180,30,30),0.35);
}
.ax-tc-reply__send:disabled { opacity: 0.5; pointer-events: none; }
.ax-tc-reply__send svg { width: 15px; height: 15px; flex-shrink: 0; }
.ax-tc-reply__error {
  position: absolute;
  bottom: calc(100% + 6px);
  left: 0;
  font-size: 11px;
  color: #f87171;
}


/* ═══════════════════════════════════════════════════════════════
   CUSTOMER BALANCE  (ax-bal__*)
   ═══════════════════════════════════════════════════════════════ */

.ax-bal-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
@media (max-width: 640px) {
  .ax-bal-top { grid-template-columns: 1fr; }
}

.ax-bal-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 22px 22px 20px;
  position: relative;
  overflow: hidden;
}
.ax-bal-card__top-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,0.10), transparent 70%);
}
.ax-bal-card__top-line--accent {
  background: linear-gradient(90deg, var(--r), transparent 70%);
}
.ax-bal-card__label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--f-h);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242,242,242,0.30);
  margin-bottom: 14px;
}
.ax-bal-card__label svg { width: 14px; height: 14px; flex-shrink: 0; }
.ax-bal-card__amount {
  font-family: var(--f-h);
  font-size: 32px;
  font-weight: 900;
  color: #f2f2f2;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.ax-bal-card__hint {
  font-size: 11px;
  color: rgba(242,242,242,0.25);
  line-height: 1.4;
}

/* Top-up form */
.ax-bal-topup { margin-top: 0; }
.ax-bal-topup__hint {
  font-size: 11px;
  color: rgba(242,242,242,0.30);
  margin-bottom: 12px;
}
.ax-bal-topup__altcha { margin-bottom: 10px; }
.ax-bal-topup__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ax-bal-topup__btn {
  position: relative;
  padding: 8px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 8px;
  color: rgba(242,242,242,0.70);
  font-family: var(--f-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.ax-bal-topup__btn:hover:not(:disabled) {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.16);
  color: #f2f2f2;
}
.ax-bal-topup__btn--loading {
  border-color: rgba(var(--r-lo,180,30,30),0.30);
  background: rgba(var(--r-lo,180,30,30),0.08);
}
.ax-bal-topup__spin-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--r);
}

/* Transaction history card */
.ax-bal-history {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}
.ax-bal-history__top-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,0.08), transparent 70%);
}
.ax-bal-history__header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 20px 14px;
  font-family: var(--f-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(242,242,242,0.35);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.ax-bal-history__header svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Table */
.ax-bal-table-wrap { overflow-x: auto; }
.ax-bal-table {
  width: 100%;
  border-collapse: collapse;
}
.ax-bal-table__head { background: rgba(255,255,255,0.02); }
.ax-bal-table__th {
  padding: 11px 18px;
  text-align: left;
  font-family: var(--f-h);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(242,242,242,0.25);
  white-space: nowrap;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.ax-bal-table__th--num  { text-align: right; }
.ax-bal-table__th--date { width: 160px; }
.ax-bal-table__row {
  border-bottom: 1px solid rgba(255,255,255,0.03);
  transition: background 0.12s;
}
.ax-bal-table__row:last-child { border-bottom: none; }
.ax-bal-table__row:hover { background: rgba(255,255,255,0.025); }
.ax-bal-table__td {
  padding: 12px 18px;
  font-size: 12px;
  color: rgba(242,242,242,0.55);
  vertical-align: middle;
}
.ax-bal-table__td--id   { font-family: var(--f-h); font-size: 10px; color: rgba(242,242,242,0.25); }
.ax-bal-table__td--num  { text-align: right; font-family: var(--f-h); font-weight: 600; color: rgba(242,242,242,0.70); }
.ax-bal-table__td--date { white-space: nowrap; font-size: 11px; }
.ax-bal-table__link { color: var(--r); text-decoration: none; }
.ax-bal-table__link:hover { text-decoration: underline; }
.ax-bal-type {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-family: var(--f-h);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: capitalize;
  background: rgba(255,255,255,0.05);
  color: rgba(242,242,242,0.40);
  border: 1px solid rgba(255,255,255,0.07);
}
.ax-bal-history__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 50px 20px;
  color: rgba(242,242,242,0.20);
  text-align: center;
  font-size: 13px;
}
.ax-bal-history__empty svg { width: 36px; height: 36px; }


/* ═══════════════════════════════════════════════════════════════
   AFFILIATE PAGE  (ax-aff__*)
   ═══════════════════════════════════════════════════════════════ */

.ax-aff-top {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 16px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .ax-aff-top { grid-template-columns: 1fr; }
}

/* Affiliate link card */
.ax-aff-link-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 22px;
  position: relative;
  overflow: hidden;
  grid-column: 1 / -1;
}
@media (min-width: 769px) {
  .ax-aff-link-card { grid-column: 1; }
}
.ax-aff-link-card__top-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--r), transparent 70%);
}
.ax-aff-link-card__label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--f-h);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242,242,242,0.30);
  margin-bottom: 14px;
}
.ax-aff-link-card__label svg { width: 13px; height: 13px; flex-shrink: 0; }
.ax-aff-link-card__row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 10px;
}
.ax-aff-link-card__url {
  flex: 1;
  font-size: 12px;
  font-family: var(--f-h);
  color: rgba(242,242,242,0.55);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ax-aff-link-card__actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.ax-aff-link-card__btn {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 7px;
  color: rgba(242,242,242,0.35);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.ax-aff-link-card__btn:hover {
  background: rgba(255,255,255,0.07);
  color: #f2f2f2;
  border-color: rgba(255,255,255,0.15);
}
.ax-aff-link-card__btn svg { width: 14px; height: 14px; }
.ax-aff-link-card__hint {
  font-size: 11px;
  color: rgba(242,242,242,0.25);
}

/* Commission stat card */
.ax-aff-stat-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 22px;
  position: relative;
  overflow: hidden;
}
.ax-aff-stat-card__top-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(74,222,128,0.60), transparent 70%);
}
.ax-aff-stat-card__label {
  font-family: var(--f-h);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242,242,242,0.30);
  margin-bottom: 14px;
}
.ax-aff-stat-card__value {
  font-family: var(--f-h);
  font-size: 40px;
  font-weight: 900;
  color: #4ade80;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.ax-aff-stat-card__unit {
  font-size: 22px;
  vertical-align: top;
  margin-left: 2px;
}
.ax-aff-stat-card__hint {
  font-size: 11px;
  color: rgba(242,242,242,0.25);
}

/* Quick link tile */
.ax-aff-quick {
  grid-column: 1 / -1;
}
@media (min-width: 769px) {
  .ax-aff-quick { grid-column: auto; }
}
.ax-aff-quick__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
  height: 100%;
}
.ax-aff-quick__item:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.10);
}
.ax-aff-quick__icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 9px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(242,242,242,0.30);
  flex-shrink: 0;
}
.ax-aff-quick__icon svg { width: 15px; height: 15px; }
.ax-aff-quick__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ax-aff-quick__name {
  font-size: 13px;
  font-weight: 500;
  color: rgba(242,242,242,0.70);
}
.ax-aff-quick__sub {
  font-size: 11px;
  color: rgba(242,242,242,0.25);
}
.ax-aff-quick__arrow {
  width: 14px;
  height: 14px;
  color: rgba(242,242,242,0.20);
  flex-shrink: 0;
  transition: transform 0.15s, color 0.15s;
}
.ax-aff-quick__item:hover .ax-aff-quick__arrow {
  color: rgba(242,242,242,0.45);
  transform: translateX(2px);
}

/* Referred customers card */
.ax-aff-referred {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}
.ax-aff-referred__top-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,0.08), transparent 70%);
}
.ax-aff-referred__header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 20px 14px;
  font-family: var(--f-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(242,242,242,0.30);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.ax-aff-referred__header svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Table */
.ax-aff-table-wrap { overflow-x: auto; }
.ax-aff-table {
  width: 100%;
  border-collapse: collapse;
}
.ax-aff-table__head { background: rgba(255,255,255,0.02); }
.ax-aff-table__th {
  padding: 11px 18px;
  text-align: left;
  font-family: var(--f-h);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(242,242,242,0.25);
  white-space: nowrap;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.ax-aff-table__th--num  { text-align: right; }
.ax-aff-table__th--date { width: 160px; }
.ax-aff-table__row {
  border-bottom: 1px solid rgba(255,255,255,0.03);
  transition: background 0.12s;
}
.ax-aff-table__row:last-child { border-bottom: none; }
.ax-aff-table__row:hover { background: rgba(255,255,255,0.025); }
.ax-aff-table__td {
  padding: 12px 18px;
  font-size: 12px;
  color: rgba(242,242,242,0.55);
  vertical-align: middle;
}
.ax-aff-table__td--num  { text-align: right; font-family: var(--f-h); font-weight: 600; color: #4ade80; }
.ax-aff-table__td--date { white-space: nowrap; font-size: 11px; }
.ax-aff-referred__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 50px 20px;
  color: rgba(242,242,242,0.20);
  text-align: center;
  font-size: 13px;
}
.ax-aff-referred__empty svg { width: 36px; height: 36px; }

/* Not enrolled state */
.ax-aff-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 64px 24px;
  text-align: center;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 14px;
}
.ax-aff-empty__icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(242,242,242,0.20);
  margin-bottom: 4px;
}
.ax-aff-empty__icon svg { width: 26px; height: 26px; }
.ax-aff-empty__title {
  font-family: var(--f-h);
  font-size: 18px;
  font-weight: 800;
  color: rgba(242,242,242,0.65);
  margin: 0;
}
.ax-aff-empty__sub {
  font-size: 13px;
  color: rgba(242,242,242,0.30);
  max-width: 380px;
  line-height: 1.55;
  margin: 0;
}
.ax-aff-empty__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  margin-top: 8px;
  background: var(--r);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 9px;
  color: #fff;
  font-family: var(--f-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.15s, box-shadow 0.15s;
}
.ax-aff-empty__cta:hover {
  box-shadow: 0 4px 16px rgba(var(--r-lo,180,30,30),0.35);
}


/* ═══════════════════════════════════════════════════════════════
   HERO v3  — no custom background, full finishing touches
   Overrides the earlier ax-hero__* rules
   ═══════════════════════════════════════════════════════════════ */

/* Remove old background layers */
.ax-hero__bg,
.ax-hero__grid,
.ax-hero__glow-left,
.ax-hero__glow-right,
.ax-hero__scan-line { display: none !important; }

/* Section base */
.ax-hero {
  position: relative;
  width: 100%;
  padding: 88px 24px 100px;
  overflow: hidden;
  background: transparent;
}

/* Bottom separator line */
.ax-hero__sep {
  position: absolute;
  bottom: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07) 30%, rgba(255,255,255,0.07) 70%, transparent);
}

/* Inner content */
.ax-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}

/* Logo */
.ax-hero__logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 4px;
  flex-shrink: 0;
}
.ax-hero__logo-ring {
  position: absolute;
  inset: -5px;
  border-radius: 25px;
  border: 1px dashed rgba(255,255,255,0.07);
  pointer-events: none;
}
.ax-hero__logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 10px;
}
.ax-hero__logo--text {
  color: var(--r);
}

/* Eyebrow */
.ax-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-h);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(242,242,242,0.40);
}
.ax-hero__eyebrow-text { color: rgba(242,242,242,0.50); }
.ax-hero__eyebrow-bar {
  display: inline-block;
  width: 24px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* Headline */
.ax-hero__headline {
  font-family: var(--f-h);
  font-size: clamp(32px, 5.5vw, 58px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: #f2f2f2;
  margin: 0;
  max-width: 700px;
}
.ax-hero__headline mark,
.ax-hero__headline .ax-hl {
  color: var(--r);
  background: none;
  font-style: normal;
}

/* Subheadline */
.ax-hero__sub {
  font-size: clamp(14px, 1.8vw, 16px);
  color: rgba(242,242,242,0.40);
  line-height: 1.70;
  max-width: 560px;
  margin: 0;
}

/* CTA row */
.ax-hero__ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4px;
}
.ax-hero__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 28px;
  height: 48px;
  border-radius: 12px;
  font-family: var(--f-h);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.15s, box-shadow 0.20s;
  white-space: nowrap;
}
.ax-hero__cta:hover { transform: translateY(-2px); }
.ax-hero__cta svg { width: 15px; height: 15px; flex-shrink: 0; }

/* Shimmer overlay for primary CTA */
.ax-hero__cta-shimmer {
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
  pointer-events: none;
}
.ax-hero__cta--primary:hover .ax-hero__cta-shimmer { left: 160%; }

.ax-hero__cta--primary {
  background: var(--r);
  border: 1px solid rgba(255,255,255,0.10);
  color: #fff;
  box-shadow: 0 4px 20px rgba(var(--r-lo,180,30,30),0.30);
}
.ax-hero__cta--primary:hover {
  box-shadow: 0 8px 36px rgba(var(--r-lo,180,30,30),0.45);
}

.ax-hero__cta--secondary {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  color: rgba(242,242,242,0.65);
}
.ax-hero__cta--secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: #f2f2f2;
  box-shadow: 0 4px 16px rgba(0,0,0,0.20);
}

/* Trust strip */
.ax-hero__trust {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4px;
}
.ax-hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(242,242,242,0.35);
  font-family: var(--f-h);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.ax-hero__trust-item svg { width: 13px; height: 13px; color: var(--r); flex-shrink: 0; }
.ax-hero__trust-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* Stats row */
.ax-hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 8px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  overflow: hidden;
}
.ax-hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 18px 36px;
  flex: 1;
}
.ax-hero__stat-num {
  font-family: var(--f-h);
  font-size: 26px;
  font-weight: 900;
  color: #f2f2f2;
  letter-spacing: -0.03em;
  line-height: 1;
}
.ax-hero__stat-unit {
  font-size: 14px;
  color: rgba(242,242,242,0.35);
  font-weight: 500;
}
.ax-hero__stat-lbl {
  font-family: var(--f-h);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(242,242,242,0.30);
}
.ax-hero__stat-div {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.06);
  flex-shrink: 0;
}

/* Mobile */
@media (max-width: 640px) {
  .ax-hero { padding: 60px 20px 72px; }
  .ax-hero__inner { gap: 18px; }
  .ax-hero__trust { flex-direction: column; gap: 8px; }
  .ax-hero__trust-dot { display: none; }
  .ax-hero__stats { flex-direction: column; width: 100%; border-radius: 12px; }
  .ax-hero__stat-div { width: 80%; height: 1px; }
  .ax-hero__stat { padding: 14px 20px; width: 100%; }
  .ax-hero__ctas { flex-direction: column; width: 100%; }
  .ax-hero__cta { width: 100%; justify-content: center; }
}


/* ═══════════════════════════════════════════════════════════════
   STATUS PAGE v2  — banner + redesigned cards
   ═══════════════════════════════════════════════════════════════ */

/* Overall status banner */
.ax-sp__banner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.025);
  margin-bottom: 28px;
}
.ax-sp__banner--ok  { border-color: rgba(74,222,128,0.20); background: rgba(74,222,128,0.06); }
.ax-sp__banner--warn { border-color: rgba(250,204,21,0.20); background: rgba(250,204,21,0.05); }

.ax-sp__banner-dot {
  position: relative;
  width: 12px;
  height: 12px;
  min-width: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ax-sp__banner-dot--ok   { background: #4ade80; }
.ax-sp__banner-dot--warn { background: #facc15; }
.ax-sp__banner-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  animation: ax-sp-pulse 2.4s ease-out infinite;
}
.ax-sp__banner-dot--ok   .ax-sp__banner-pulse { background: rgba(74,222,128,0.30); }
.ax-sp__banner-dot--warn .ax-sp__banner-pulse { background: rgba(250,204,21,0.25); }
@keyframes ax-sp-pulse {
  0%   { transform: scale(1);   opacity: 1; }
  70%  { transform: scale(2.2); opacity: 0; }
  100% { transform: scale(2.2); opacity: 0; }
}

.ax-sp__banner-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ax-sp__banner-text strong {
  font-family: var(--f-h);
  font-size: 13px;
  font-weight: 700;
  color: #f2f2f2;
}
.ax-sp__banner-text span {
  font-size: 12px;
  color: rgba(242,242,242,0.40);
}

/* Page header */
.ax-sp__header {
  margin-bottom: 24px;
}
.ax-sp__header-title {
  font-family: var(--f-h);
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 900;
  color: #f2f2f2;
  letter-spacing: -0.025em;
  margin: 0 0 4px;
}
.ax-sp__header-sub {
  font-size: 13px;
  color: rgba(242,242,242,0.35);
  margin: 0;
}

/* Body */
.ax-sp__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

/* Group */
.ax-sp__group {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  overflow: hidden;
}
.ax-sp__group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.02);
}
.ax-sp__group-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ax-sp__group-bar {
  width: 3px;
  height: 14px;
  border-radius: 2px;
  background: var(--r);
  flex-shrink: 0;
}
.ax-sp__group-name {
  font-family: var(--f-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242,242,242,0.50);
  margin: 0;
}
.ax-sp__group-count {
  font-size: 10px;
  color: rgba(242,242,242,0.20);
  font-family: var(--f-h);
  letter-spacing: 0.07em;
}
.ax-sp__group-cards { display: flex; flex-direction: column; }

/* Status card */
.ax-sc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  text-decoration: none;
  transition: background 0.12s;
}
.ax-sc:last-child { border-bottom: none; }
.ax-sc:hover { background: rgba(255,255,255,0.03); }

/* Top-level card */
.ax-sp__body > .ax-sc {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
}
.ax-sp__body > .ax-sc:hover { background: rgba(255,255,255,0.04); }

.ax-sc__left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}
.ax-sc__icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(242,242,242,0.25);
  flex-shrink: 0;
}
.ax-sc__icon svg { width: 14px; height: 14px; }
.ax-sc__name {
  font-size: 13px;
  font-weight: 500;
  color: rgba(242,242,242,0.75);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ax-sc__right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.ax-sc__indicator {
  position: relative;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
}
.ax-sc__dot {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}
.ax-sc__pulse {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  opacity: 0.25;
  animation: ax-sc-pulse 2.4s ease-out infinite;
}
@keyframes ax-sc-pulse {
  0%   { transform: scale(1);   opacity: 0.25; }
  70%  { transform: scale(2.0); opacity: 0; }
  100% { transform: scale(2.0); opacity: 0; }
}
.ax-sc__label {
  font-family: var(--f-h);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.ax-sc__chevron {
  width: 13px;
  height: 13px;
  color: rgba(242,242,242,0.18);
  transition: color 0.12s, transform 0.12s;
}
.ax-sc:hover .ax-sc__chevron {
  color: rgba(242,242,242,0.45);
  transform: translateX(2px);
}

/* Empty */
.ax-sp__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 60px 20px;
  color: rgba(242,242,242,0.22);
  text-align: center;
  font-size: 13px;
}
.ax-sp__empty svg { width: 40px; height: 40px; }

/* Legend */
.ax-sp__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  padding: 16px 0 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.ax-sp__legend-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: rgba(242,242,242,0.30);
  font-family: var(--f-h);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.ax-sp__legend-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════════
   CART PAGE v3
   ═══════════════════════════════════════════════════════════════ */

.ax-cart-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 36px 20px 60px;
}

/* Flash alert */
.ax-cart-alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  margin-bottom: 20px;
  background: rgba(var(--r-lo,180,30,30),0.10);
  border: 1px solid rgba(var(--r-lo,180,30,30),0.25);
  border-radius: 10px;
  font-size: 13px;
  color: rgba(242,242,242,0.70);
  line-height: 1.5;
}
.ax-cart-alert__icon { width: 15px; height: 15px; flex-shrink: 0; margin-top: 1px; color: var(--r); }
.ax-cart-alert__line { margin: 0; }

/* Layout */
.ax-cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  align-items: start;
}
@media (max-width: 860px) {
  .ax-cart-layout { grid-template-columns: 1fr; }
}

/* Page heading */
.ax-cart-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.ax-cart-heading__title {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--f-h);
  font-size: 20px;
  font-weight: 900;
  color: #f2f2f2;
  letter-spacing: -0.02em;
  margin: 0;
}
.ax-cart-heading__title svg { width: 20px; height: 20px; color: rgba(242,242,242,0.35); flex-shrink: 0; }
.ax-cart-heading__count {
  font-family: var(--f-h);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(242,242,242,0.25);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 3px 9px;
}

/* Loading */
.ax-cart-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  color: rgba(242,242,242,0.25);
}
.ax-cart-loading__spin { width: 28px; height: 28px; }

/* Empty */
.ax-cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 64px 24px;
  text-align: center;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
}
.ax-cart-empty__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(242,242,242,0.20);
}
.ax-cart-empty__icon svg { width: 24px; height: 24px; }
.ax-cart-empty__title {
  font-family: var(--f-h);
  font-size: 16px;
  font-weight: 800;
  color: rgba(242,242,242,0.65);
  margin: 0;
}
.ax-cart-empty__sub {
  font-size: 13px;
  color: rgba(242,242,242,0.25);
  margin: 0;
}
.ax-cart-empty__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 8px;
  padding: 9px 20px;
  background: var(--r);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 9px;
  color: #fff;
  font-family: var(--f-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: box-shadow 0.15s;
}
.ax-cart-empty__cta:hover { box-shadow: 0 4px 18px rgba(var(--r-lo,180,30,30),0.40); }

/* Items list */
.ax-cart-items {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  overflow: hidden;
}

/* Single item row */
.ax-cart-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.12s;
}
.ax-cart-item:last-child { border-bottom: none; }
.ax-cart-item:hover { background: rgba(255,255,255,0.02); }

/* Thumbnail */
.ax-cart-item__thumb {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}
.ax-cart-item__thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ax-cart-item__thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(242,242,242,0.18);
}
.ax-cart-item__thumb-placeholder svg { width: 22px; height: 22px; }

/* Info */
.ax-cart-item__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.ax-cart-item__name {
  font-size: 13px;
  font-weight: 500;
  color: #f2f2f2;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.12s;
}
.ax-cart-item__name:hover { color: var(--r); }
.ax-cart-item__variant {
  font-size: 11px;
  color: rgba(242,242,242,0.30);
  font-family: var(--f-h);
  margin: 0;
}
.ax-cart-item__volume-hint {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  color: #4ade80;
  font-family: var(--f-h);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.ax-cart-item__addons { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 3px; }
.ax-cart-item__addon-tag {
  display: inline-block;
  padding: 1px 7px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  font-size: 10px;
  color: rgba(242,242,242,0.35);
  font-family: var(--f-h);
}

/* Controls */
.ax-cart-item__controls {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

/* Qty stepper */
.ax-qty {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  overflow: hidden;
}
.ax-qty__btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: rgba(242,242,242,0.45);
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
  flex-shrink: 0;
}
.ax-qty__btn:hover:not(:disabled) { background: rgba(255,255,255,0.07); color: #f2f2f2; }
.ax-qty__btn:disabled { opacity: 0.30; cursor: default; }
.ax-qty__input {
  width: 34px;
  height: 28px;
  text-align: center;
  background: transparent;
  border: none;
  border-left: 1px solid rgba(255,255,255,0.06);
  border-right: 1px solid rgba(255,255,255,0.06);
  color: #f2f2f2;
  font-family: var(--f-h);
  font-size: 12px;
  font-weight: 600;
  outline: none;
  -moz-appearance: textfield;
}
.ax-qty__input::-webkit-outer-spin-button,
.ax-qty__input::-webkit-inner-spin-button { -webkit-appearance: none; }

/* Price */
.ax-cart-item__price {
  font-family: var(--f-h);
  font-size: 14px;
  font-weight: 700;
  color: #f2f2f2;
  white-space: nowrap;
  min-width: 60px;
  text-align: right;
}

/* Remove */
.ax-cart-item__remove {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 7px;
  color: rgba(242,242,242,0.25);
  cursor: pointer;
  transition: background 0.12s, color 0.12s, border-color 0.12s;
  flex-shrink: 0;
}
.ax-cart-item__remove:hover {
  background: rgba(239,68,68,0.12);
  color: #f87171;
  border-color: rgba(239,68,68,0.25);
}

/* ── Summary sidebar ── */
.ax-cart-col-summary { position: sticky; top: 20px; }

.ax-cart-summary {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.ax-cart-summary__top-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--r), transparent 70%);
}
.ax-cart-summary__head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 20px 14px;
  font-family: var(--f-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242,242,242,0.35);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.ax-cart-summary__head svg { width: 14px; height: 14px; flex-shrink: 0; }

.ax-cart-summary__form { padding: 18px 20px 20px; }

.ax-cart-summary__lines {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.ax-cart-summary__line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.ax-cart-summary__line-label {
  font-size: 12px;
  color: rgba(242,242,242,0.40);
}
.ax-cart-summary__line-value {
  font-size: 13px;
  font-family: var(--f-h);
  font-weight: 600;
  color: rgba(242,242,242,0.70);
}
.ax-cart-summary__line-value--dim {
  font-size: 11px;
  font-weight: 400;
  color: rgba(242,242,242,0.25);
  font-family: var(--f-b);
}

.ax-cart-summary__divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 4px 0;
}

.ax-cart-summary__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ax-cart-summary__total-label {
  font-family: var(--f-h);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(242,242,242,0.55);
}
.ax-cart-summary__total-price {
  font-family: var(--f-h);
  font-size: 22px;
  font-weight: 900;
  color: #f2f2f2;
  letter-spacing: -0.02em;
}

.ax-cart-summary__altcha { margin-bottom: 14px; }

.ax-cart-summary__error {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  padding: 9px 12px;
  margin-bottom: 12px;
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.20);
  border-radius: 8px;
  font-size: 12px;
  color: #f87171;
  line-height: 1.5;
}

/* Checkout button */
.ax-cart-checkout-btn {
  width: 100%;
  height: 50px;
  margin-bottom: 14px;
  background: var(--r);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  color: #fff;
  font-family: var(--f-h);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.18s, background 0.15s;
}
.ax-cart-checkout-btn:hover:not(:disabled) {
  box-shadow: 0 6px 28px rgba(var(--r-lo,180,30,30),0.45);
}
.ax-cart-checkout-btn:disabled { opacity: 0.40; cursor: not-allowed; }

/* Trust strip */
.ax-cart-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.ax-cart-trust__item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  color: rgba(242,242,242,0.25);
  font-family: var(--f-h);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.ax-cart-trust__item svg { width: 11px; height: 11px; color: rgba(242,242,242,0.20); flex-shrink: 0; }
.ax-cart-trust__sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* ============================================================
   AX REVIEW CARD — Fixed styles
   Drop this into your custom.css (or wherever your theme CSS lives)
   ============================================================ */

/* ── Card shell ─────────────────────────────────────────── */
.ax-review-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #111318;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.ax-review-card:hover {
  border-color: rgba(255, 60, 60, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

/* ── Top accent line ────────────────────────────────────── */
.ax-review-card__top-line {
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, #e02020 0%, #ff4444 60%, transparent 100%);
  flex-shrink: 0;
}

/* ── Body ───────────────────────────────────────────────── */
.ax-review-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 16px 18px 14px;
  gap: 10px;
}

/* ── Meta row: stars + verified + date ──────────────────── */
.ax-review-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.ax-review-card__stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

.ax-review-card__star-filled {
  width: 13px;
  height: 13px;
  color: #e02020;
  flex-shrink: 0;
}

.ax-review-card__star-empty {
  width: 13px;
  height: 13px;
  color: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.ax-review-card__meta-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.ax-review-card__verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(224, 32, 32, 0.12);
  border: 1px solid rgba(224, 32, 32, 0.3);
  color: #e02020;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 3px 7px;
  border-radius: 100px;
  line-height: 1;
}

.ax-review-card__verified svg {
  /* size is set inline in template — this just ensures alignment */
  flex-shrink: 0;
}

.ax-review-card__date {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  white-space: nowrap;
}

/* ── Review message ─────────────────────────────────────── */
.ax-review-card__message {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin: 0;
  word-break: break-word;
}

/* Truncated state — clamp to 3 lines */
.ax-review-card__message--truncated {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Read more / Show less toggle ───────────────────────── */
.ax-review-card__toggle {
  /* Reset button defaults */
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font-family: inherit;

  /* Layout */
  display: inline-flex;
  align-items: center;
  gap: 4px;
  align-self: flex-start;

  /* Typography */
  font-size: 0.78rem;
  font-weight: 600;
  color: #e02020;
  line-height: 1;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(224, 32, 32, 0.4);

  transition: color 0.2s, text-decoration-color 0.2s;
}

.ax-review-card__toggle:hover {
  color: #ff5555;
  text-decoration-color: rgba(255, 85, 85, 0.6);
}

/* The SVG chevron inside the toggle button */
.ax-review-card__toggle svg {
  /* These dimensions are set inline in the template (12×12) — 
     but if they're being overridden anywhere, lock them here */
  width: 12px !important;
  height: 12px !important;
  flex-shrink: 0;
}

/* ── Shop reply block ───────────────────────────────────── */
.ax-review-card__reply {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-left: 2px solid rgba(224, 32, 32, 0.5);
  border-radius: 8px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ax-review-card__reply-header {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  flex-wrap: wrap;
}

.ax-review-card__reply-header svg {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.3);
}

.ax-review-card__reply-header strong {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.ax-review-card__reply-text {
  font-size: 0.825rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin: 0;
}

/* ── Footer — product name ──────────────────────────────── */
.ax-review-card__footer {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
}

.ax-review-card__product-icon {
  width: 11px;
  height: 11px;
  color: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

.ax-review-card__product {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.01em;
}
/* ✨ Safe Animated Gold Text (Visible Everywhere) ✨ */
@keyframes gold-glow {
  0% { color: #d4af37; text-shadow: 0 0 5px #d4af37, 0 0 10px #b8860b; }
  25% { color: #f5d77a; text-shadow: 0 0 10px #f5d77a, 0 0 20px #d4af37; }
  50% { color: #ffd700; text-shadow: 0 0 15px #ffd700, 0 0 30px #b8860b; }
  75% { color: #f5d77a; text-shadow: 0 0 10px #f5d77a, 0 0 20px #d4af37; }
  100% { color: #d4af37; text-shadow: 0 0 5px #d4af37, 0 0 10px #b8860b; }
}

/* Apply shimmer to all text you want glowing */
body, h1, h2, h3, h4, h5, h6, p, span, a, label, .product-title, .product-price {
  animation: gold-glow 3s ease-in-out infinite;
}