/* ================================================
   ASTROCORE — custom.css
   SECTION 1: Tokens + Base + Header + Nav
   ================================================ */

@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:        #2D5BFF;
  --r-hi:     #2D5BFF;
  --r-lo:     rgba(37, 70, 217, 0.1);
  --r-mid:    rgba(37, 94, 217, 0.18);
  --r-glow:   rgba(37, 94, 217, 0.28);
  --r-border: rgba(37, 85, 217, 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:      'DM Sans', sans-serif;
  --f-b:      'DM Sans', sans-serif;
  --topbar-h: 30px;
  --nav-h:    60px;
  --ribbon-h: 34px;
  --total-h:  124px;
  --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;
}

.ax-spacer { display: block; width: 100%; height: var(--total-h); pointer-events: none; }
.ax-spacer--no-ribbon { height: calc(var(--topbar-h) + var(--nav-h)); }

/* ── Header ── */
.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;
  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;
  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);
}
.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); }

.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; }
.ax-topbar__set { display: flex; align-items: center; flex-shrink: 0; }

@keyframes ax-ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.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;
}
.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; }
.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;
}
.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;
}
.ax-nav-shell--scrolled {
  box-shadow: 0 4px 30px rgba(45,91,255,0.1), 0 1px 0 rgba(45,91,255,0.18);
  border-bottom-color: rgba(45,91,255,0.18);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.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; }

/* ── Nav 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; }
}


























/* ================================================
   ASTROCORE — custom.css
   SECTION 2: Footer + Products Grid + Cards
   ================================================ */

/* ── Footer ── */
.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;
}

.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;
}

.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;
}

.ax-footer__main {
  position: relative; z-index: 1; width: 100%;
  padding: 56px 48px 48px;
  display: flex; align-items: flex-start; gap: 0;
}

.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; }

.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);    }

.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;
}

.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; }

.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; }

@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; }
}

/* ================================================
   Products Grid + Card
   ================================================ */

.ax-products { width: 100%; padding: 48px 0 64px; }

.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; }

.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 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); }

.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;
  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 { cursor: default; }
.ax-card__nav { cursor: pointer; }
.ax-card__cta-btn { cursor: pointer; }
.ax-card.ax-card--resetting { transition: transform 0.35s cubic-bezier(0.23,1,0.32,1), box-shadow 0.2s ease; }

.ax-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.45), 0 0 0 1px var(--r-border), 0 0 40px var(--r-lo) !important;
}

.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) !important; }
.ax-card__shine { display: none !important; }

.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; }
.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; }

.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; }

.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; }

.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; }

.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:hover .ax-card__cta-btn { background: var(--r-hi) !important; color: #fff !important; }
.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:hover .ax-card__cta-btn--ghost { 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%); }

/* ── 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; }

@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; }
  .ax-modal-backdrop { align-items: flex-start; padding-top: 120px; }
  .ax-modal { animation: modalSlideIn 0.3s cubic-bezier(0.23,1,0.32,1) forwards; }
  @keyframes modalSlideIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
}
@media (max-width: 480px) {
  .ax-products__grid { grid-template-columns: 1fr; }
  .ax-modal__grid { grid-template-columns: 1fr; }
}





































/* ================================================
   ASTROCORE — custom.css
   SECTION 3: Hero + Features
   ================================================ */

/* ================================================
   Hero
   ================================================ */

.ax-hero {
  position: relative;
  width: 100%;
  padding: 88px 24px 100px;
  overflow: hidden;
  background: transparent;
}

.ax-hero__bg,
.ax-hero__grid,
.ax-hero__glow-left,
.ax-hero__glow-right,
.ax-hero__scan-line { display: none !important; }

.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);
}

/* Ambient blobs */
.ax-hero::before {
  content: '';
  position: absolute; top: -20px; left: -60px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, var(--r-lo) 0%, transparent 70%);
  filter: blur(80px); pointer-events: none;
  animation: blobFloat 6s ease-in-out infinite;
}
.ax-hero::after {
  content: '';
  position: absolute; bottom: -20px; right: -60px;
  width: 660px; height: 660px; border-radius: 50%;
  background: radial-gradient(circle, rgba(110,163,255,0.08) 0%, transparent 70%);
  filter: blur(90px); pointer-events: none;
  animation: blobFloat 8s ease-in-out infinite reverse;
}

/* ── Inner ── */
.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); }
.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 var(--r-lo); }
.ax-hero__logo-img  { width: 100%; height: 100%; object-fit: cover; }
.ax-hero__logo-wrap--placeholder { background: var(--r-lo); border-color: var(--r-border); color: var(--r-hi); }

/* ── 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; }
.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(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 {
  background-image: linear-gradient(90deg, var(--r), #6b8fff, var(--r)) !important;
  background-size: 200% auto !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  animation: gradientShimmer 3s linear infinite;
}

/* ── Sub ── */
.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;
}

/* ── CTAs ── */
.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; }

.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 var(--r-glow);
}
.ax-hero__cta--primary:hover { background: var(--r-hi); box-shadow: 0 8px 36px var(--r-glow); }

.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);
  position: relative; overflow: hidden;
}
.ax-hero__cta--secondary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, var(--r-lo), transparent);
  opacity: 0; transition: opacity 0.2s;
}
.ax-hero__cta--secondary:hover::before { opacity: 1; }
.ax-hero__cta--secondary:hover { background: rgba(255,255,255,0.08); border-color: var(--r-border); color: #f2f2f2; box-shadow: 0 4px 16px rgba(0,0,0,0.20); }

/* ── Trust ── */
.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; }
.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;
  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: var(--r-hi); letter-spacing: -0.03em; line-height: 1;
  animation: statFadeIn 1s ease forwards; opacity: 0;
}
.ax-hero__stat:nth-child(1) .ax-hero__stat-num { animation-delay: 0.2s; }
.ax-hero__stat:nth-child(3) .ax-hero__stat-num { animation-delay: 0.4s; }
.ax-hero__stat:nth-child(5) .ax-hero__stat-num { animation-delay: 0.6s; }
.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; }

@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, .ax-hero__trust-sep { 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; }
}

/* ================================================
   Features
   ================================================ */

.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; }

.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); }

.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);
}

.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; }

.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; }

.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; }

@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; }
}














/* ============================================================
   ASTROCORE HERO — Layout Safe Animated Glow
   ============================================================ */

.ax-hero {
  position: relative;
  overflow: hidden;
}


/* Main glow */
.ax-hero::before {
  content: "";
  position: absolute;

  top: 45%;
  left: 50%;

  width: 850px;
  height: 450px;

  transform: translate3d(-50%, -50%, 0);

  background: radial-gradient(
    ellipse,
    rgba(45, 91, 255, 0.22) 0%,
    rgba(107, 124, 255, 0.12) 38%,
    transparent 72%
  );

  filter: blur(70px);

  opacity: 0.8;

  pointer-events: none;

  z-index: 0;

  animation: astroGlowPulse 8s ease-in-out infinite;
}


/* Outer soft glow */
.ax-hero::after {
  content: "";
  position: absolute;

  top: 45%;
  left: 50%;

  width: 1100px;
  height: 600px;

  transform: translate3d(-50%, -50%, 0);

  background: radial-gradient(
    ellipse,
    rgba(45, 91, 255, 0.08),
    transparent 70%
  );

  filter: blur(100px);

  opacity: 0.7;

  pointer-events: none;

  z-index: 0;

  animation: astroGlowOuter 10s ease-in-out infinite;
}


/* Smooth breathing animation */
@keyframes astroGlowPulse {

  0%, 100% {
    opacity: .65;
    transform: translate3d(-50%, -50%, 0) scale(1);
  }

  50% {
    opacity: .9;
    transform: translate3d(-50%, -50%, 0) scale(1.06);
  }

}


@keyframes astroGlowOuter {

  0%, 100% {
    opacity: .45;
    transform: translate3d(-50%, -50%, 0) scale(1);
  }

  50% {
    opacity: .65;
    transform: translate3d(-50%, -50%, 0) scale(1.08);
  }

}








/* ============================================================
   ASTROCORE HERO GLOW — Mobile Optimization
   ============================================================ */

@media (max-width: 768px) {

  .ax-hero::before {
    top: 42%;
    left: 50%;

    width: 520px;
    height: 320px;

    filter: blur(55px);

    animation-duration: 9s;
  }


  .ax-hero::after {
    top: 42%;
    left: 50%;

    width: 700px;
    height: 420px;

    filter: blur(80px);

    opacity: 0.45;

    animation-duration: 11s;
  }

}


/* Smaller phones */
@media (max-width: 480px) {

  .ax-hero::before {
    width: 430px;
    height: 260px;

    filter: blur(45px);

    opacity: 0.75;
  }


  .ax-hero::after {
    width: 560px;
    height: 340px;

    filter: blur(70px);

    opacity: 0.35;
  }

}
































































/* ================================================
   ASTROCORE — custom.css
   SECTION 4: Reviews + FAQ + Text Block
   ================================================ */

/* ================================================
   Reviews
   ================================================ */

.ax-reviews { padding: 48px 0 64px; width: 100%; }

.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; }

.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; }

/* ── 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; text-transform: uppercase; letter-spacing: 0.08em; }
.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; }

/* ── Grid ── */
.ax-reviews__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; width: 100%; }

/* ── Empty ── */
.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; }

/* ── View all ── */
.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; }

/* ── Review card ── */
.ax-review-card {
  position: relative; display: flex; flex-direction: column;
  background: #111318; border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px; overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.ax-review-card:hover { border-color: var(--r-border); box-shadow: 0 8px 32px rgba(0,0,0,0.729), 0 0 20px var(--r-lo); }

.ax-review-card__top-line { height: 2px; width: 100%; background: linear-gradient(90deg, transparent, var(--r), var(--r-hi), transparent); flex-shrink: 0; }

.ax-review-card__body { flex: 1; display: flex; flex-direction: column; padding: 16px 18px 14px; gap: 10px; }

.ax-review-card__meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.ax-review-card__meta-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.ax-review-card__stars { display: flex; align-items: center; gap: 2px; }
.ax-review-card__star-filled { width: 13px; height: 13px; color: var(--r-hi); 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__verified {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--r-lo); border: 1px solid var(--r-border); color: var(--r-hi);
  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 { flex-shrink: 0; }

.ax-review-card__date { font-size: 0.72rem; color: rgba(255,255,255,0.3); white-space: nowrap; }

.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; }
.ax-review-card__message--truncated { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

.ax-review-card__toggle {
  appearance: none; background: none; border: none; padding: 0; margin: 0;
  cursor: pointer; font-family: inherit;
  display: inline-flex; align-items: center; gap: 4px; align-self: flex-start;
  font-size: 0.78rem; font-weight: 600; color: var(--r-hi); line-height: 1;
  text-decoration: underline; text-underline-offset: 2px;
  text-decoration-color: var(--r-border);
  transition: color 0.2s, text-decoration-color 0.2s;
}
.ax-review-card__toggle:hover { color: var(--r-hi); text-decoration-color: var(--r); }
.ax-review-card__toggle svg { width: 12px !important; height: 12px !important; flex-shrink: 0; }

.ax-review-card__reply {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-left: 2px solid var(--r); 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.6); flex-wrap: wrap; }
.ax-review-card__reply-header svg { flex-shrink: 0; color: var(--r-hi); }
.ax-review-card__reply-header strong { color: var(--r-hi); 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; }

.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: var(--r); 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; }

[x-cloak] { display: none !important; }

/* ================================================
   FAQ
   ================================================ */

.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-wrap { display: flex; align-items: center; gap: 14px; }
.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-h) !important; font-size: 22px !important; font-weight: 800 !important; letter-spacing: -0.02em !important; margin: 0; color: var(--t1); }
.ax-faq__subtitle { font-size: 13px; color: var(--t3); margin: 0 0 24px 18px; line-height: 1.6; font-family: var(--f-b); }

.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: var(--r-lo); border-color: var(--r-border); color: var(--r-hi); }

.ax-faq__list { display: flex; flex-direction: column; gap: 8px; }
.ax-faq__list--page { max-width: 800px; margin: 0 auto; }

.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: var(--r-border); }
.ax-faq-item--open { box-shadow: 0 4px 20px rgba(0,0,0,.25); }

.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; }

.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: var(--r-lo); 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; }

.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); padding-top: 16px; margin-top: -1px; }
.ax-faq-item__a { font-size: 13.5px; color: var(--t2); line-height: 1.75; margin: 14px 0 0; }

.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: 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-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; white-space: nowrap;
  transition: background .18s, box-shadow .18s;
}
.ax-faq__cta-btn:hover { background: var(--r-hi); box-shadow: 0 6px 20px var(--r-glow); }

@media (max-width: 640px) {
  .ax-faq-item__answer-inner { padding: 0 16px 16px 16px; }
}

/* ================================================
   Text Block
   ================================================ */

.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; }













































































/* ================================================
   ASTROCORE — custom.css
   SECTION 5: Product Page + Login Modal
   ================================================ */

/* ================================================
   Product Page
   ================================================ */

.ax-product-page { padding: 32px 0 64px; width: 100%; }

.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); }

.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); }

.ax-product-page__card { background: var(--s1); border: 1px solid var(--b1); border-radius: 14px; overflow: hidden; }

.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; }

.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; }

.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); }

.ax-product-page__desc { padding: 24px; }

.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); }

.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; }

.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); }

@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; }
}

/* ================================================
   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: row; align-items: center; gap: 14px; padding: 28px 32px 0; 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); }

.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__field       { display: flex; flex-direction: column; gap: 5px; }
.ax-login-modal__label       { font-size: 13px; font-weight: 600; color: var(--t2); }
.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__email-highlight { color: var(--r-hi); font-weight: 700; }

.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__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); } }

.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); }

.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); }

.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; }











































/* ================================================
   ASTROCORE — custom.css
   SECTION 6: Cart Page + Order Summary
   ================================================ */

.ax-cart-page { max-width: 1100px; margin: 0 auto; padding: 36px 20px 60px; }

.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-h); font-size: 22px; font-weight: 800; color: var(--t1); letter-spacing: -0.02em; margin: 0; }
.ax-cart-page__count { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--t3); background: var(--s2); border: 1px solid var(--b1); padding: 3px 10px; border-radius: 99px; font-family: var(--f-h); }

/* ── Flash alert ── */
.ax-cart-alert { display: flex; align-items: flex-start; gap: 10px; padding: 12px 16px; margin-bottom: 20px; background: var(--r-lo); border: 1px solid var(--r-border); 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; }

/* ── 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; }
.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; }

/* ── 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 var(--r-glow); }

.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); }

/* ── Items ── */
.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; }
.ax-cart-page__list { display: flex; flex-direction: column; gap: 12px; }

.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; }

.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; }

/* 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; }
.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; }
}

/* 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: var(--r-lo); color: var(--r-hi); }
.ax-qty__btn:disabled { opacity: 0.30; cursor: default; }
.ax-qty__btn svg { width: 13px; height: 13px; }
.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 + Remove */
.ax-cart-item__price  { font-family: var(--f-h); font-size: 14px; font-weight: 700; color: var(--r-hi); white-space: nowrap; min-width: 60px; text-align: right; }
.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); }
.ax-cart-item__remove svg { width: 12px; height: 12px; }

/* ── Summary sidebar ── */
.ax-cart-col-summary  { position: sticky; top: 20px; }
.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 { 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__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__form  { padding: 18px 20px 20px; }
.ax-cart-summary__body  { padding: 16px 20px; display: flex; flex-direction: column; gap: 10px; }
.ax-cart-summary__lines { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.ax-cart-summary__rows  { display: flex; flex-direction: column; gap: 8px; margin-bottom: 10px; }

.ax-cart-summary__line        { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.ax-cart-summary__row         { 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__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__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__divider { height: 1px; background: rgba(255,255,255,0.06); margin: 4px 0; border: none; border-top: 1px solid var(--b1); }

.ax-cart-summary__total       { display: flex; align-items: center; justify-content: space-between; }
.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: 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: var(--r-hi); letter-spacing: -0.02em; }
.ax-cart-summary__total-value { font-family: var(--f-h); font-size: 18px; font-weight: 800; color: var(--r-hi); }

.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; }
.ax-cart-summary__altcha  { margin: 10px 0; }
.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-summary__footer { padding: 0 20px 20px; }

/* ── 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;
  position: relative; overflow: hidden;
  transition: background 0.2s, box-shadow 0.18s;
}
.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 28px var(--r-glow); }
.ax-cart-checkout-btn:disabled { opacity: 0.40; cursor: not-allowed; }
.ax-cart-checkout-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.ax-cart-checkout-btn__inner { display: flex; align-items: center; justify-content: center; gap: 8px; pointer-events: none; }

/* ── 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-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); }

.ax-cart-page__messages { background: var(--r-lo); border: 1px solid var(--r-border); color: var(--r-hi); border-radius: 10px; padding: 12px 16px; font-size: 13.5px; margin-bottom: 16px; }

@media (max-width: 860px) { .ax-cart-layout { grid-template-columns: 1fr; } }
@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; }
  .ax-cart-col-summary { width: 100%; }
}
@media (max-width: 768px) {
  .ax-cart-page { overflow-x: hidden; width: 100%; }
  .ax-cart-layout { display: flex; flex-direction: column; width: 100%; overflow-x: hidden; }
  .ax-cart-item { display: flex; flex-wrap: wrap; gap: 12px; width: 100%; overflow: hidden; }
  .ax-cart-item__controls { width: 100%; display: flex; align-items: center; justify-content: space-between; }
  .ax-cart-item__thumb { width: 64px; height: 64px; flex-shrink: 0; }
  .ax-cart-item__info  { flex: 1; min-width: 0; overflow: hidden; }
  .ax-cart-item__name  { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }
}















































































































/* ================================================
   ASTROCORE — custom.css
   SECTION 7: Blog + Customer Dashboard Sidebar
   ================================================ */

/* ================================================
   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__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.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__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__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__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); font-weight: 500; }
.ax-blog-card__date svg { width: 12px; height: 12px; color: var(--r); flex-shrink: 0; }

.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__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; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; flex: 1; margin: 0; }

.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); }

.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; }

.ax-blog-card__meta-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding-top: 10px; border-top: 1px solid var(--b1); margin-top: 4px; }

/* ── 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 ── */
.ax-blog-post { padding: 40px 0 80px; width: 100%; }
.ax-blog-post__container { max-width: 780px; margin: 0 auto; padding: 40px 0 80px; }

.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__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; max-width: 860px; margin: 0 auto; }
.ax-blog-post__card-top-line { height: 3px; background: linear-gradient(90deg, var(--r) 0%, var(--r-hi) 60%, transparent 100%); }

.ax-blog-post__hero { width: 100%; aspect-ratio: 21/9; object-fit: cover; display: block; border-bottom: 1px solid var(--b1); }
.ax-blog-post__cover     { line-height: 0; }
.ax-blog-post__cover-img { width: 100%; max-height: 420px; object-fit: cover; }

.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__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-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__date { font-size: 11px; color: var(--t3); font-family: var(--f-b); }

.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__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; margin: 0 0 10px; }
.ax-blog-post__summary { font-size: 14.5px; color: var(--t2); line-height: 1.65; margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--b1); margin: 0; }
.ax-blog-post__body    { padding: 32px 36px 40px; }
.ax-blog-post__content { font-size: 14.5px; color: var(--t2); line-height: 1.8; }

.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: 640px) {
  .ax-blog-post__body { padding: 20px 20px 28px; }
  .ax-blog-post__meta-bar { padding: 12px 20px; }
  .ax-blog-post__header { padding: 20px 20px 18px; }
  .ax-blog-post__footer { padding: 14px 20px; }
  .ax-blog-post__title  { font-size: 22px; }
  .ax-blog__grid { grid-template-columns: 1fr; }
}

/* ================================================
   Customer Dashboard 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-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-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__profile { display: flex; align-items: center; gap: 12px; padding: 18px 18px 16px; 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 var(--r-glow); }
.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__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__link-icon  { width: 14px; height: 14px; flex-shrink: 0; color: var(--t3); transition: color 0.18s; position: relative; z-index: 1; }
.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-hi); border-radius: 50%; box-shadow: 0 0 6px var(--r-glow); flex-shrink: 0; position: relative; z-index: 1; }
.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__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); }
.ax-sidebar__divider { height: 1px; background: var(--b1); margin: 4px 8px; }

.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); }

@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; }
}





































































































/* ================================================
   ASTROCORE — custom.css
   SECTION 8: Customer Dashboard Stats + Orders + Downloads
   ================================================ */

/* ================================================
   Dashboard Stats
   ================================================ */

.ax-dash-grid          { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 20px; }
.ax-dash-grid--3       { grid-template-columns: repeat(3, 1fr); }
.ax-dash-grid--latest  { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.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); }
.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; }
.ax-stat-card--wide  { grid-column: span 1; }

/* ── 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, var(--r-glow) 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: var(--r-lo); border: 1px solid var(--r-border); border-radius: 99px; font-family: var(--f-h); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--r-hi); flex-shrink: 0; }

/* ── Stat cards v2 ── */
.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, #718af8, #445eef); box-shadow: 0 0 8px rgba(68,71,239,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-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-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); }

.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 ── */
.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); }

/* ── Action row ── */
.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; }

.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: 700px) { .ax-db__stats { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .ax-dash-grid { grid-template-columns: 1fr 1fr; } .ax-dash-grid--3 { grid-template-columns: 1fr; } .ax-dash-grid--latest { grid-template-columns: 1fr; } }
@media (max-width: 400px) { .ax-dash-grid { grid-template-columns: 1fr; } .ax-db__welcome { padding: 20px 18px; } .ax-db__welcome-badge { display: none; } .ax-db__stats { grid-template-columns: 1fr; } }

/* ================================================
   Orders Table
   ================================================ */

.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__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; }
.ax-orders-table-wrap { overflow-x: auto; }

.ax-orders-table { width: 100%; border-collapse: collapse; }
.ax-orders-table__head { background: rgba(255,255,255,0.03); }
.ax-orders-table__th, .ax-orders-table th { padding: 12px 16px; text-align: left; font-family: var(--f-h); font-size: 9px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--t3); white-space: nowrap; border-bottom: 1px solid var(--b1); background: rgba(0,0,0,0.15); }
.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, .ax-orders-table tr:hover td { background: rgba(255,255,255,0.02); }
.ax-orders-table__td, .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__invoice-link, .ax-orders-table__id { color: var(--r-hi); font-weight: 700; text-decoration: none; font-family: var(--f-h); font-size: 13px; }
.ax-orders-table__invoice-link:hover, .ax-orders-table__id: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__product      { font-weight: 600; color: var(--t1); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 200px; }
.ax-orders-table__variant      { color: var(--t3); font-size: 11.5px; }
.ax-orders-table__price        { font-family: var(--f-h); font-size: 13px; font-weight: 700; color: var(--r-hi); white-space: nowrap; }
.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, .ax-orders-table__td--actions { white-space: nowrap; }

.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-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__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); }
.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); }

@media (max-width: 640px) {
  .ax-orders-table th:nth-child(4), .ax-orders-table td:nth-child(4) { display: none; }
}

/* ================================================
   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; }
.ax-downloads__grid       { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }

.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-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); }

/* ── Download 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__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 svg { width: 44px; height: 44px; }

.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__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__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 { 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; margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.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; 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-card__footer { padding: 12px 18px; border-top: 1px solid var(--b1); display: flex; gap: 8px; }
.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; }

.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; border: 1px solid; transition: background 0.2s, box-shadow 0.2s, border-color 0.2s; position: relative; overflow: hidden; white-space: nowrap; flex-shrink: 0; }
.ax-dl-btn svg { width: 14px; height: 14px; flex-shrink: 0; }
.ax-dl-btn--primary { background: var(--r); border-color: 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-color: var(--r-border); color: var(--r-hi); }
.ax-dl-btn--ghost:hover { background: var(--r-lo); }
.ax-dl-btn--locked { background: var(--s2); border-color: var(--b1); color: var(--t3); cursor: not-allowed; pointer-events: none; }
.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-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; }

























/* ================================================
   ASTROCORE — custom.css
   SECTION 9: Customer Dashboard Mobile Fixes + UI Polish
   ================================================ */

/* ── Layout overflow prevention ── */
.ax-orders { overflow: visible !important; }
.ax-orders__card { overflow: hidden !important; }
.ax-orders-table-wrap { overflow-x: visible !important; -webkit-overflow-scrolling: touch; max-width: 100%; }
.ax-orders-table__product, .ax-orders-table__product-name { white-space: normal !important; word-break: break-word; }
.ax-dl-card__name { white-space: normal !important; }
.ax-downloads__grid { grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr)) !important; }

/* ── Sign Out Other Devices button ── */
.ax-db__action-btn:not(.ax-db__action-btn--danger) { border-color: rgba(248,113,113,0.25); color: #f87171; }
.ax-db__action-btn:not(.ax-db__action-btn--danger):hover { background: rgba(248,113,113,0.08); border-color: rgba(248,113,113,0.45); color: #f87171; }
.ax-db__action-btn span { display: inline-flex; align-items: center; gap: 7px; }
.ax-db__action-btn span svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ── Mobile: general ── */
@media (max-width: 800px) {
  .ax-dash { overflow: hidden; }
  .ax-db__welcome-title { white-space: normal !important; word-break: break-word; }
  .ax-db__order-name, .ax-dash-order__name { white-space: normal !important; word-break: break-word; }
  .ax-db__stat-label { white-space: normal !important; }
}

@media (max-width: 540px) {
  .ax-db__stats { grid-template-columns: 1fr 1fr !important; }
  .ax-db__welcome-content { flex-direction: column; align-items: flex-start; }
  .ax-db__welcome-badge { display: none !important; }
}

@media (max-width: 400px) {
  .ax-db__stats { grid-template-columns: 1fr !important; }
}

/* ── Mobile: orders table ── */
@media (max-width: 768px) {
  .ax-orders-table,
  .ax-orders-table tbody,
  .ax-orders-table tr,
  .ax-orders-table td,
  .ax-orders-table thead { display: revert !important; }

  .ax-orders-table th,
  .ax-orders-table td { padding: 8px 6px !important; font-size: 11px !important; }

  .ax-orders-table__invoice-link { display: block; max-width: 80px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 11px; }
  .ax-orders-table__date { font-size: 10px; }

  .ax-status-badge { font-size: 8px !important; padding: 2px 6px !important; letter-spacing: 0.04em !important; }

  .ax-orders-table__action-btn { font-size: 10px !important; padding: 4px 7px !important; gap: 3px !important; }
  .ax-orders-table__action-btn svg { width: 11px !important; height: 11px !important; }

  .ax-orders-table th:nth-child(3), .ax-orders-table td:nth-child(3),
  .ax-orders-table th:nth-child(4), .ax-orders-table td:nth-child(4) { display: none !important; }

  .ax-orders-table { table-layout: fixed; width: 100%; }
  .ax-orders-table th:nth-child(1), .ax-orders-table td:nth-child(1) { width: 38%; }
  .ax-orders-table th:nth-child(2), .ax-orders-table td:nth-child(2) { width: 28%; }
  .ax-orders-table th:nth-child(5), .ax-orders-table td:nth-child(5) { width: 34%; }
}

/* ── Mobile: balance table ── */
@media (max-width: 768px) {
  .ax-bal-topup__grid { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 8px !important; }
  .ax-bal-topup__btn { font-size: 12px !important; padding: 8px 4px !important; width: 100% !important; }

  .ax-bal-table-wrap { overflow-x: visible !important; }
  .ax-bal-table { table-layout: fixed; width: 100%; min-width: unset !important; }
  .ax-bal-table th, .ax-bal-table td { padding: 8px 6px !important; font-size: 11px !important; }

  .ax-bal-table th:nth-child(3), .ax-bal-table td:nth-child(3) { display: none !important; }

  .ax-bal-table__td--id { max-width: 80px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .ax-bal-type { font-size: 9px !important; padding: 2px 6px !important; }

  .ax-bal-table th:nth-child(1), .ax-bal-table td:nth-child(1) { width: 35%; }
  .ax-bal-table th:nth-child(2), .ax-bal-table td:nth-child(2) { width: 25%; }
  .ax-bal-table th:nth-child(4), .ax-bal-table td:nth-child(4) { width: 20%; }
  .ax-bal-table th:nth-child(5), .ax-bal-table td:nth-child(5) { width: 20%; }
}





























/* ================================================
   ASTROCORE — custom.css
   SECTION 9: Products Page + Status Page + Policy Pages
   ================================================ */

/* ================================================
   Products Page
   ================================================ */

.ax-products-page { padding: 48px 0 80px; }

.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; }

.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; }

.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; } }

.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; }

.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; }

.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: var(--r-lo); 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; }

.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-lo); }
.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; }

.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; }

.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); }

.ax-products-page__main       { min-width: 0; }
.ax-products-page__pagination { margin-top: 40px; }

.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; }

.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); }

.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; }

/* ================================================
   Status Page
   ================================================ */

.ax-sp { max-width: 860px; margin: 0 auto; padding: 40px 20px 60px; }

.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; }
.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: var(--r-lo); border: 1px solid var(--r-border); display: flex; align-items: center; justify-content: center; color: var(--r); }
.ax-sp__header-icon svg { width: 22px; height: 22px; }

.ax-sp__container { display: flex; flex-direction: column; gap: 24px; }

.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); }

.ax-sp__body  { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.ax-sp__list  { display: flex; flex-direction: column; gap: 20px; }

.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; }
.ax-sp__group-accent { position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--r), transparent); }

.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; }

.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; }

/* ── 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); }
.ax-sp__body > .ax-sc, .ax-sp__list > .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, .ax-sp__list > .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__info  { 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__status    { 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-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__chevron { width: 13px; height: 13px; color: rgba(242,242,242,0.18); transition: color 0.12s, transform 0.12s; }
.ax-sc__arrow   { width: 14px; height: 14px; color: rgba(242,242,242,0.20); transition: transform .15s, color .15s; }
.ax-sc:hover .ax-sc__chevron { color: rgba(242,242,242,0.45); transform: translateX(2px); }
.ax-sc:hover .ax-sc__arrow   { color: rgba(242,242,242,0.50); transform: translateX(3px); }

/* ================================================
   Policy Pages
   ================================================ */

.ax-policy-page { width: 100%; padding: 48px 0 64px; min-height: 60vh; }

.ax-policy-page__hero { position: relative; width: 100%; padding: 64px 32px; text-align: center; overflow: hidden; margin-bottom: 40px; border-bottom: 1px solid var(--b1); }
.ax-policy-page__hero-bg, .ax-policy-page__hero-bg::after { display: none !important; }
.ax-policy-page__hero-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 16px; }

.ax-policy-page__hero-icon { width: 56px; height: 56px; background: var(--r-lo); border: 1px solid var(--r-border); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: var(--r-hi); box-shadow: 0 0 20px var(--r-glow); margin-bottom: 4px; }

.ax-policy-page__hero-title { font-family: var(--f-h); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: var(--t1); letter-spacing: -0.03em; margin: 0; line-height: 1.1; }
.ax-policy-page__hero-sub   { font-size: 14px; color: var(--t3); line-height: 1.6; margin: 0; font-family: var(--f-b); max-width: 480px; }

.ax-policy-page__hero-meta      { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: center; padding: 8px 20px; background: var(--s1); border: 1px solid var(--b2); border-radius: 99px; margin-top: 4px; }
.ax-policy-page__hero-meta-item { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; color: var(--t3); font-family: var(--f-h); letter-spacing: 0.06em; text-transform: uppercase; }
.ax-policy-page__hero-meta-item svg { color: var(--r); }
.ax-policy-page__hero-sep       { width: 1px; height: 12px; background: var(--b2); flex-shrink: 0; }

.ax-policy-page__wrap { max-width: 800px; margin: 0 auto; padding: 0 32px; display: flex; flex-direction: column; gap: 24px; }

.ax-policy-page__card { position: relative; background: var(--s1); border: 1px solid var(--b2); border-radius: 16px; overflow: hidden; transition: border-color 0.2s, box-shadow 0.2s; }
.ax-policy-page__card:hover { border-color: var(--r-border); box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 0 1px var(--r-border); }
.ax-policy-page__card-accent { height: 2px; background: linear-gradient(90deg, transparent, var(--r), var(--r-hi), transparent); }

.ax-policy-content { padding: 32px; font-family: var(--f-b); font-size: 14px; color: var(--t2); 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 { margin-bottom: 8px; }
.ax-policy-content li::marker { color: var(--r-hi); }
.ax-policy-content a  { color: var(--r-hi); text-decoration: underline; transition: color 0.2s; }
.ax-policy-content a:hover { color: var(--r); }
.ax-policy-content strong { color: var(--t1); font-weight: 700; }
.ax-policy-content hr { border: none; border-top: 1px solid var(--b2); margin: 24px 0; }
.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); }

.ax-policy-page__footer { display: flex !important; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; background: var(--s1); border: 1px solid var(--b2); border-radius: 12px; font-family: var(--f-b); font-size: 13px; color: var(--t3); flex-wrap: wrap; transition: border-color 0.2s; }
.ax-policy-page__footer:hover { border-color: var(--r-border); }
.ax-policy-page__footer p { margin: 0; }
.ax-policy-page__footer-link { display: inline-flex; align-items: center; gap: 8px; padding: 9px 18px; background: var(--r); border-radius: 9px; font-family: var(--f-h); font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: #fff; text-decoration: none; transition: background 0.2s, box-shadow 0.2s; }
.ax-policy-page__footer-link:hover { background: var(--r-hi); box-shadow: 0 0 20px var(--r-glow); }

@media (max-width: 640px) {
  .ax-policy-page__hero { padding: 48px 20px; }
  .ax-policy-page__wrap { padding: 0 16px; }
  .ax-policy-content    { padding: 20px; }
  .ax-policy-page__footer { flex-direction: column; align-items: flex-start; }
  .ax-policy-page__footer-link { width: 100%; justify-content: center; }
}





















































































/* ================================================
   ASTROCORE — custom.css
   SECTION 10: Tickets + Balance + Affiliate + Delete Modal
   ================================================ */

/* ================================================
   Customer Tickets
   ================================================ */

.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; }

.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%); }

.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; }

.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); }

.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); }

.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); }

.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-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; }

.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); }

.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; }
.ax-tc-chat__messages { height: calc(100vh - 420px); min-height: 320px; overflow-y: auto; padding: 24px 20px; 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; }

.ax-tc-msg { display: flex; align-items: flex-start; gap: 10px; }
.ax-tc-msg--mine { flex-direction: row-reverse; }
.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: var(--r-lo); border-color: var(--r-border); color: var(--r); }
.ax-tc-msg__avatar-icon svg { width: 16px; height: 16px; }

.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); }

.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; }

.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; }

.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: var(--r-border); box-shadow: 0 0 0 3px var(--r-lo); }
.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); box-shadow: 0 4px 14px var(--r-glow); }
.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-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; }

.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__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: var(--r-border); background: var(--r-lo); }
.ax-bal-topup__spin-wrap { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--r); }

.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; }

.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-top { display: grid; grid-template-columns: 1fr 220px; gap: 16px; margin-bottom: 20px; }
@media (max-width: 768px) { .ax-aff-top { grid-template-columns: 1fr; } }

.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); }

.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); }

.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); }

.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; }

.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; }

.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 { background: var(--r-hi); box-shadow: 0 4px 16px var(--r-glow); }

/* ================================================
   Delete Account Modal
   ================================================ */

.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); }

/* ── Del modal (legacy) ── */
.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(113,248,120,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; }















































/* ================================================
   ASTROCORE — custom.css
   SECTION 11: Marquee + Payments + How It Works + Discord
             + Free Section + Loader + Animations + Keyframes
   ================================================ */

/* ================================================
   Page Loader
   ================================================ */

.ax-loader { position: fixed; inset: 0; z-index: 99999; background: var(--bg); display: flex; align-items: center; justify-content: center; transition: opacity 0.5s ease, visibility 0.5s ease; }
.ax-loader.hidden { opacity: 0; visibility: hidden; }
.ax-loader__inner { position: relative; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; }
.ax-loader__ring  { position: absolute; inset: 0; border-radius: 50%; border: 2px solid rgba(45,91,255,0.15); border-top-color: var(--r); animation: loaderSpin 0.8s linear infinite; }
.ax-loader__dot   { width: 8px; height: 8px; border-radius: 50%; background: var(--r); box-shadow: 0 0 12px var(--r-glow); animation: dotPulse 0.8s ease-in-out infinite; }

/* ================================================
   Marquee — Feature Ticker
   ================================================ */

.ax-marquee { width: 100%; overflow: hidden; padding: 16px 0; margin-bottom: 50px; border-top: 1px solid var(--b1); border-bottom: 1px solid var(--b1); background: var(--s1); mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent); }
.ax-marquee__track { display: flex; width: 100%; overflow: hidden; }
.ax-marquee__list  { display: flex; align-items: center; gap: 48px; animation: marqueeScroll 20s linear infinite; white-space: nowrap; will-change: transform; }
.ax-marquee__item  { display: inline-flex; align-items: center; gap: 10px; font-family: var(--f-h); font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--t3); transition: color 0.2s; }
.ax-marquee__item:hover { color: var(--r-hi); }
.ax-marquee__item svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ================================================
   Payment Icons Strip
   ================================================ */

.ax-payments { width: 100%; padding: 22px 0; border-top: 1px solid var(--b1); border-bottom: 1px solid var(--b1); background: var(--s1); border-radius: 14px; }
.ax-payments__inner { max-width: 950px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 18px; padding: 0 20px; }
.ax-payments__label { font-family: var(--f-h); font-size: 13px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--t3); }

.ax-payments__marquee { width: 100%; position: relative; overflow: hidden; }
.ax-payments__marquee::before, .ax-payments__marquee::after { content: ""; position: absolute; top: 0; width: 120px; height: 100%; z-index: 5; pointer-events: none; }
.ax-payments__marquee::before { left: 0;  background: linear-gradient(to right, var(--s1) 70%, transparent); }
.ax-payments__marquee::after  { right: 0; background: linear-gradient(to left,  var(--s1) 70%, transparent); }

.ax-payments__track { display: flex; width: max-content; animation: scroll 16s linear infinite; will-change: transform; }
.ax-payments__icon  { flex: 0 0 auto; margin-right: 18px; }
.ax-payments__iconInner { display: flex; align-items: center; justify-content: center; padding: 8px 12px; border-radius: 999px; background: var(--s2); border: 1px solid var(--b2); }
.ax-payments__iconInner img { width: 26px; display: block; }

@media (max-width: 640px) {
  .ax-payments__track       { animation-duration: 12s; }
  .ax-payments__iconInner   { padding: 6px 10px; }
  .ax-payments__iconInner img { width: 22px; }
}

/* ================================================
   How It Works
   ================================================ */

.ax-hiw { width: 100%; padding: 64px 0; }
.ax-hiw__inner  { max-width: 1200px; margin: 0 auto; }
.ax-hiw__header { display: flex; align-items: center; gap: 14px; margin-bottom: 40px; }
.ax-hiw__accent { display: block; width: 4px; height: 28px; background: linear-gradient(180deg, var(--r), var(--r-hi)); border-radius: 4px; flex-shrink: 0; box-shadow: 0 0 12px var(--r-glow); }
.ax-hiw__title  { font-family: var(--f-h); font-size: 22px; font-weight: 800; color: var(--t1); letter-spacing: -0.02em; margin: 0; }

.ax-hiw__grid      { display: flex; align-items: stretch; gap: 0; }
.ax-hiw__connector { width: 40px; height: 1px; background: linear-gradient(90deg, var(--r-border), var(--r-lo)); flex-shrink: 0; align-self: center; }

.ax-hiw__card { flex: 1; 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-hiw__card:hover { border-color: var(--r-border); box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 0 1px var(--r-border), 0 0 28px var(--r-lo); transform: translateY(-2px); }
.ax-hiw__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-hiw__card:hover .ax-hiw__card-line { opacity: 1; }

.ax-hiw__num  { font-family: var(--f-h); font-size: 11px; font-weight: 800; letter-spacing: 0.12em; color: var(--r); opacity: 0.7; }
.ax-hiw__icon { width: 46px; height: 46px; background: var(--r-lo); border: 1px solid var(--r-border); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--r-hi); flex-shrink: 0; transition: background 0.2s, box-shadow 0.2s; }
.ax-hiw__card:hover .ax-hiw__icon { background: var(--r-mid); box-shadow: 0 0 20px var(--r-glow); }
.ax-hiw__icon svg { width: 20px; height: 20px; }
.ax-hiw__card-title { font-family: var(--f-h); font-size: 15px; font-weight: 700; color: var(--t1); margin: 0; letter-spacing: -0.01em; line-height: 1.25; }
.ax-hiw__card-desc  { font-size: 13px; color: var(--t3); margin: 0; line-height: 1.6; }

@media (max-width: 900px) { .ax-hiw__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; } .ax-hiw__connector { display: none; } }
@media (max-width: 560px)  { .ax-hiw__grid { grid-template-columns: 1fr; } }

/* ================================================
   Discord / Community Banner
   ================================================ */

.ax-discord { width: 100%; padding: 24px 0; position: relative; overflow: hidden; }
.ax-discord::before { display: none !important; }

.ax-discord__inner { max-width: 1200px; margin: 0 auto; padding: 20px 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; background: var(--s1); border: 1px solid var(--b2); border-radius: 16px; transition: border-color 0.2s, box-shadow 0.2s; }
.ax-discord__inner:hover { border-color: var(--r); box-shadow: 0 0 20px var(--r-lo); }

.ax-discord__left  { display: flex; align-items: center; gap: 16px; }
.ax-discord__icon  { width: 52px; height: 52px; background: rgba(88,101,242,0.15); border: 1px solid rgba(88,101,242,0.3); border-radius: 16px; display: flex; align-items: center; justify-content: center; color: #5865f2; flex-shrink: 0; transition: background 0.2s, box-shadow 0.2s; }
.ax-discord__inner:hover .ax-discord__icon { background: rgba(88,101,242,0.25); box-shadow: 0 0 16px rgba(88,101,242,0.3); }
.ax-discord__icon svg { width: 30px; height: 30px; filter: drop-shadow(0 0 6px rgba(88,101,242,0.6)); }
.ax-discord__title { font-family: var(--f-h); font-size: 16px; font-weight: 800; color: var(--t1); letter-spacing: -0.01em; margin: 0 0 4px; }
.ax-discord__desc  { font-size: 12px; color: var(--t3); margin: 0; font-family: var(--f-b); }

.ax-discord__right  { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.ax-discord__badges { display: flex; gap: 8px; flex-wrap: wrap; }
.ax-discord__badge  { padding: 4px 10px; background: var(--s2); border: 1px solid var(--b2); border-radius: 99px; font-size: 11px; font-weight: 600; color: var(--t2); font-family: var(--f-h); }

.ax-discord__btn { display: inline-flex; align-items: center; gap: 8px; height: 40px; padding: 0 20px; background: #5865f2; border-radius: 10px; font-family: var(--f-h); font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: #fff; text-decoration: none; transition: background 0.2s, box-shadow 0.2s, transform 0.18s; }
.ax-discord__btn:hover { background: #4752c4; box-shadow: 0 0 20px rgba(88,101,242,0.4); transform: translateY(-1px); }
.ax-discord__btn svg { width: 16px; height: 16px; }

@media (max-width: 768px) {
  .ax-discord__inner  { flex-direction: column; align-items: flex-start; padding: 20px; }
  .ax-discord__right  { width: 100%; flex-direction: column; align-items: flex-start; }
  .ax-discord__btn    { width: 100%; justify-content: center; }
}

/* ================================================
   Free Followers Banner
   ================================================ */

.ax-free-banner { width: 100%; padding: 12px 0; background: var(--r-lo); border-top: 1px solid var(--r-border); border-bottom: 1px solid var(--r-border); margin-bottom: 32px; }
.ax-free-banner__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.ax-free-banner__left  { display: flex; align-items: center; gap: 10px; }
.ax-free-banner__dot   { width: 7px; height: 7px; border-radius: 50%; background: var(--r); box-shadow: 0 0 8px var(--r-glow); animation: dotPulse 2s ease-in-out infinite; flex-shrink: 0; }
.ax-free-banner__text  { font-family: var(--f-h); font-size: 13px; font-weight: 600; color: var(--t2); letter-spacing: 0.02em; }
.ax-free-banner__text strong { color: var(--r-hi); font-weight: 800; }
.ax-free-banner__btn { display: inline-flex; align-items: center; gap: 7px; padding: 7px 16px; background: #5865f2; border-radius: 8px; font-family: var(--f-h); font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: #fff; text-decoration: none; flex-shrink: 0; transition: background 0.2s, box-shadow 0.2s; }
.ax-free-banner__btn:hover { background: #4752c4; box-shadow: 0 0 16px rgba(88,101,242,0.4); }

@media (max-width: 640px) {
  .ax-free-banner__inner { flex-direction: column; align-items: flex-start; }
  .ax-free-banner__btn   { width: 100%; justify-content: center; }
}

/* ================================================
   Free Followers Section
   ================================================ */

.ax-free-section { width: 100%; padding: 64px 0; background: none; border: none; }
.ax-free-section__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

.ax-free-section__left { display: flex; flex-direction: column; gap: 24px; background: var(--s1); border: 1px solid var(--b2); border-radius: 16px; padding: 36px 32px; position: relative; overflow: hidden; transition: border-color 0.2s, box-shadow 0.2s; }
.ax-free-section__left::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--r), var(--r-hi), transparent); pointer-events: none; }
.ax-free-section__left:hover   { border-color: var(--r-border); box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 0 1px var(--r-border); }

.ax-free-section__eyebrow     { display: inline-flex; align-items: center; gap: 8px; font-family: var(--f-h); font-size: 10px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--r); }
.ax-free-section__eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--r); box-shadow: 0 0 8px var(--r-glow); animation: dotPulse 2s ease-in-out infinite; flex-shrink: 0; }

.ax-free-section__title { font-family: var(--f-h); font-size: clamp(28px, 4vw, 40px); font-weight: 800; color: var(--t1); letter-spacing: -0.03em; margin: 0; line-height: 1.15; }
.ax-free-section__hl    { background-image: linear-gradient(90deg, var(--r), var(--r-hi), var(--r)); background-size: 200% auto; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: gradientShimmer 3s linear infinite; }
.ax-free-section__sub   { font-size: 14px; color: var(--t3); line-height: 1.7; margin: 0; font-family: var(--f-b); }

.ax-free-section__perks     { display: flex; flex-direction: column; gap: 12px; }
.ax-free-section__perk      { display: flex; align-items: center; gap: 12px; font-family: var(--f-h); font-size: 13px; font-weight: 600; color: var(--t2); }
.ax-free-section__perk-icon { width: 28px; height: 28px; background: var(--r-lo); border: 1px solid var(--r-border); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--r); flex-shrink: 0; }

.ax-free-section__btn { display: inline-flex; align-items: center; gap: 9px; height: 48px; padding: 0 28px; background: var(--r); border-radius: 12px; font-family: var(--f-h); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; text-decoration: none; width: fit-content; position: relative; overflow: hidden; transition: background 0.2s, box-shadow 0.2s, transform 0.18s; }
.ax-free-section__btn:hover { background: var(--r-hi); box-shadow: 0 0 28px var(--r-glow); transform: translateY(-2px); }
.ax-free-section__btn-shimmer { position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent); transform: translateX(-100%); transition: transform 0.5s ease; }
.ax-free-section__btn:hover .ax-free-section__btn-shimmer { transform: translateX(100%); }

.ax-free-section__right { position: relative; display: flex; justify-content: center; }
.ax-free-section__glow  { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, var(--r-glow) 0%, transparent 70%); filter: blur(40px); pointer-events: none; animation: blobFloat 6s ease-in-out infinite; }

.ax-free-section__card { width: 100%; max-width: 360px; background: var(--s1); border: 1px solid var(--r-border); border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px var(--r-lo); transform: rotate(-1.5deg); transition: transform 0.3s ease, border-color 0.2s, box-shadow 0.2s; }
.ax-free-section__card:hover { transform: rotate(0deg) translateY(-4px); border-color: var(--r-border); box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 60px var(--r-lo); }
.ax-free-section__card-top  { height: 3px; background: linear-gradient(90deg, transparent, var(--r), var(--r-hi), transparent); }
.ax-free-section__card-body { padding: 24px; display: flex; flex-direction: column; gap: 16px; }

.ax-free-section__card-header { display: flex; align-items: center; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid var(--b1); }
.ax-free-section__card-icon   { width: 40px; height: 40px; background: rgba(225,48,108,0.12); border: 1px solid rgba(225,48,108,0.3); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #e1306c; flex-shrink: 0; }
.ax-free-section__card-title  { font-family: var(--f-h); font-size: 14px; font-weight: 800; color: var(--t1); margin: 0; letter-spacing: -0.01em; }
.ax-free-section__card-online { display: flex; align-items: center; gap: 5px; font-size: 11px; color: #4ade80; font-family: var(--f-h); font-weight: 600; margin: 2px 0 0; }
.ax-free-section__card-dot    { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 6px rgba(74,222,128,0.6); animation: dotPulse 2s ease-in-out infinite; flex-shrink: 0; }

.ax-free-section__chat { display: flex; flex-direction: column; gap: 10px; background: var(--s2); border: 1px solid var(--b1); border-radius: 12px; padding: 14px; }
.ax-free-section__msg  { display: flex; align-items: flex-start; gap: 8px; }
.ax-free-section__msg--user { flex-direction: row-reverse; }
.ax-free-section__msg-avatar { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--f-h); font-size: 11px; font-weight: 800; flex-shrink: 0; }
.ax-free-section__msg-avatar--user { background: rgba(88,101,242,0.2); border: 1px solid rgba(88,101,242,0.3); color: #5865f2; }
.ax-free-section__msg-avatar--bot  { background: rgba(225,48,108,0.15); border: 1px solid rgba(225,48,108,0.3); color: #e1306c; }
.ax-free-section__msg-bubble { padding: 8px 12px; border-radius: 10px; font-size: 12px; line-height: 1.5; max-width: 80%; }
.ax-free-section__msg-bubble--user { background: var(--r-lo); border: 1px solid var(--r-border); color: var(--t2); font-family: var(--f-h); font-weight: 600; border-top-right-radius: 3px; }
.ax-free-section__msg-bubble--bot  { background: var(--s1); border: 1px solid var(--b2); color: var(--t2); font-family: var(--f-b); border-top-left-radius: 3px; }
.ax-free-section__msg-bubble--bot strong { color: var(--r-hi); font-weight: 700; }

.ax-free-section__counter     { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 14px; background: var(--r-lo); border: 1px solid var(--r-border); border-radius: 12px; }
.ax-free-section__counter-num { font-family: var(--f-h); font-size: 28px; font-weight: 900; color: var(--r-hi); letter-spacing: -0.02em; line-height: 1; }
.ax-free-section__counter-lbl { font-family: var(--f-h); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--t3); }
.ax-free-section__embed-btn   { display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; padding: 6px 12px; background: #e1306c; border-radius: 6px; font-family: var(--f-h); font-size: 11px; font-weight: 700; color: #fff; letter-spacing: 0.04em; cursor: default; }

@media (max-width: 768px) {
  .ax-free-section { overflow-x: hidden; }
  .ax-free-section__inner { grid-template-columns: 1fr; gap: 40px; }
  .ax-free-section__right { order: -1; overflow: hidden; }
  .ax-free-section__card  { transform: rotate(0deg); max-width: 320px; }
  .ax-free-section__card-body { padding: 16px; }
  .ax-free-section__counter-num { font-size: 22px; }
  .ax-free-section__left { padding: 24px 20px; }
}

/* ================================================
   Back To Top
   ================================================ */

.ax-backtotop { position: fixed; bottom: 32px; right: 32px; width: 44px; height: 44px; background: var(--s2); border: 1px solid var(--r-border); border-radius: 99px; display: flex; align-items: center; justify-content: center; color: var(--r); cursor: pointer; z-index: 999; opacity: 0; transform: translateY(16px); transition: opacity 0.3s, transform 0.3s, box-shadow 0.2s, background 0.2s; pointer-events: none; }
.ax-backtotop.visible { opacity: 1 !important; transform: translateY(0) !important; pointer-events: all !important; }
.ax-backtotop:hover   { background: var(--r-lo); box-shadow: 0 0 20px var(--r-glow), 0 0 0 1px var(--r-border); }
.ax-backtotop svg { width: 18px; height: 18px; }
@media (max-width: 640px) { .ax-backtotop { bottom: 20px; right: 20px; } }

/* ================================================
   Global Utilities
   ================================================ */

* { -webkit-tap-highlight-color: transparent; }

/* ================================================
   Scroll Animations
   ================================================ */

.ax-hero__logo,
.ax-hero__eyebrow,
.ax-hero__headline,
.ax-hero__sub,
.ax-hero__ctas,
.ax-hero__trust,
.ax-hero__stats,
.ax-feat-card,
.ax-hiw__card,
.ax-hiw__header,
.ax-review-card,
.ax-faq-item,
.ax-card,
.ax-discord__inner,
.ax-payments__inner,
.ax-free-section__left > *,
.ax-free-section__card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.ax-hero__logo.ax-animate-in,
.ax-hero__eyebrow.ax-animate-in,
.ax-hero__headline.ax-animate-in,
.ax-hero__sub.ax-animate-in,
.ax-hero__ctas.ax-animate-in,
.ax-hero__trust.ax-animate-in,
.ax-hero__stats.ax-animate-in,
.ax-feat-card.ax-animate-in,
.ax-hiw__card.ax-animate-in,
.ax-hiw__header.ax-animate-in,
.ax-review-card.ax-animate-in,
.ax-faq-item.ax-animate-in,
.ax-card.ax-animate-in,
.ax-discord__inner.ax-animate-in,
.ax-payments__inner.ax-animate-in,
.ax-free-section__left > *.ax-animate-in,
.ax-free-section__card.ax-animate-in {
  opacity: 1;
  transform: translateY(0);
}

.ax-free-section__card              { transform: translateY(20px) rotate(-1.5deg) !important; }
.ax-free-section__card.ax-animate-in { transform: translateY(0)  rotate(-1.5deg) !important; }
.ax-free-section__card:hover          { transform: translateY(-4px) rotate(0deg)  !important; }

/* ================================================
   Keyframes
   ================================================ */

@keyframes loaderSpin {
  to { transform: rotate(360deg); }
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.85); }
}
@keyframes gradientShimmer {
  0%   { background-position: 0%   center; }
  100% { background-position: 200% center; }
}
@keyframes blobFloat {
  0%, 100% { transform: translateY(0px)   scale(1);    opacity: 0.7; }
  50%       { transform: translateY(-30px) scale(1.08); opacity: 0.95; }
}
@keyframes statFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}
@keyframes ax-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}







































































































/* ================================================
   ASTROCORE — All Fixes Combined
   ================================================ */

/* ── Fix 1: Hero logo — restored to original size ── */
.ax-hero__logo {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: none;
}

.ax-hero__logo-img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
}

.ax-hero__logo-ring {
  display: block;
  position: absolute;
  inset: -5px;
  border-radius: 25px;
  border: 1px dashed rgba(255,255,255,0.07);
  pointer-events: none;
}

/* ── Fix 2: Eyebrow trust strip — pill with shield icon ── */
.ax-hero__eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 7px 16px !important;
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 99px !important;
  margin-top: 0 !important;
  position: relative !important;
}

/* Hide the bars */
.ax-hero__eyebrow-bar {
  display: none !important;
}

/* Shield icon before the text */
.ax-hero__eyebrow-text {
  font-family: var(--f-h) !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: rgba(242,242,242,0.50) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
}

/* Inject shield icon via pseudo element */
.ax-hero__eyebrow-text::before {
  content: '';
  display: inline-block;
  width: 13px;
  height: 13px;
  background-color: var(--r);
  flex-shrink: 0;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

/* ── Fix 3: FAQ — subtitle below title with more space ── */
.ax-faq__header-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.ax-faq__title-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ax-faq__subtitle {
  font-size: 13px;
  color: var(--t3);
  line-height: 1.6;
  margin: 0 0 28px 18px;
  font-family: var(--f-b);
  display: block;
  width: 100%;
}

















































/* ================================================
   ASTROCORE — Payments Hover Effects
   ================================================ */

/* ── Container hover ── */
.ax-payments {
  transition: border-color 0.2s, box-shadow 0.2s;
  border: 1px solid var(--b1) !important;
  cursor: default;
}

.ax-payments:hover {
  border-color: var(--r-border) !important;
  box-shadow: 0 0 0 1px var(--r-border), 0 0 32px var(--r-lo) !important;
}

/* ── Label glow on hover ── */
.ax-payments__label {
  transition: color 0.2s;
}

.ax-payments:hover .ax-payments__label {
  color: var(--r-hi) !important;
}

/* ── Each icon pill hover ── */
.ax-payments__iconInner {
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  cursor: default;
}

.ax-payments__iconInner:hover {
  background: var(--s3) !important;
  border-color: var(--r-border) !important;
  box-shadow: 0 0 14px var(--r-lo) !important;
  transform: translateY(-2px) scale(1.08) !important;
}













/* ================================================
   ASTROCORE — Footer Fix + Mobile Overflow Fix
   ================================================ */

html,
body {
  overflow-x: hidden !important;
  max-width: 100% !important;
}

/* Catch overflow on sections without breaking footer */
.ax-hero,
.ax-marquee,
.ax-payments,
.ax-discord,
.ax-free-section,
.ax-hiw,
.ax-features,
.ax-reviews,
.ax-products,
.ax-blog,
.ax-faq {
  overflow-x: hidden !important;
  max-width: 100vw !important;
}

/* ── Restore footer full bleed ── */
.ax-footer {
  position: relative !important;
  width: 100vw !important;
  max-width: 100vw !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  overflow-x: hidden !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* ── Remove gap below footer ── */
body {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.ax-footer__bottom {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* Make sure nothing sits below footer */
.ax-footer:last-child {
  margin-bottom: 0 !important;
}













































/* ================================================
   ASTROCORE — Footer Badge Text Update
   Add these to your custom.css
   ================================================ */

.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-text {
  color: #4ade80;
  font-weight: 700;
}





























/* ── Refined Modern Status Badge ── */
.ax-footer__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  padding: 5px 11px;
  border-radius: 999px;

  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;

  color: #86efac;

  background: linear-gradient(
    180deg,
    rgba(34,197,94,0.08),
    rgba(34,197,94,0.02)
  );

  border: 1px solid rgba(34,197,94,0.18);

  box-shadow:
    inset 0 0 6px rgba(34,197,94,0.08),
    0 0 10px rgba(34,197,94,0.05);
}

/* dot */
.ax-footer__badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #22c55e;

  box-shadow:
    0 0 6px rgba(34,197,94,0.7),
    0 0 12px rgba(34,197,94,0.4);

  animation: ax-dot-pulse 2.2s ease-in-out infinite;
}

/* text */
.ax-footer__badge-text {
  color: #4ade80;
  font-weight: 600;
}

/* smoother pulse */
@keyframes ax-dot-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.25);
    opacity: 0.7;
  }
}




















/* ── Force show Designed by on mobile ── */
@media (max-width: 560px) {
  .ax-footer__made {
    display: inline !important;
    opacity: 0.6;
    font-size: 10px;
  }
}












/* ── Clean Mobile Footer Bottom Layout ── */
@media (max-width: 560px) {

  .ax-footer__bottom-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    text-align: center;
  }

  /* Top row: status badge */
  .ax-footer__bottom-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  /* Copyright cleaner */
  .ax-footer__copy {
    font-size: 10px;
    opacity: 0.5;
  }

  /* Designed by */
  .ax-footer__bottom-right {
    display: block;
  }

  .ax-footer__made {
    display: block !important;
    font-size: 10px;
    opacity: 0.6;
  }

  .ax-footer__made-link {
    font-weight: 600;
  }
}





























.ax-products,
.ax-faq,
.ax-blog,
.ax-reviews,
.ax-features {
  margin-bottom: 0 !important;
}






































































/* ================================================
   ASTROCORE — custom.css
   SECTION 10: Discord Card
   ================================================ */

@keyframes ax-discord-in { 0%{opacity:0;transform:translateY(16px)} 100%{opacity:1;transform:translateY(0)} }
@keyframes ax-discord-up { 0%{opacity:0;transform:translateY(10px)} 100%{opacity:1;transform:translateY(0)} }
@keyframes ax-discord-ring { 0%,100%{opacity:0.5;transform:scale(1)} 50%{opacity:1;transform:scale(1.05)} }

.ax-discord {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 0;
}

.ax-discord__card {
  position: relative;
  background: var(--s1);
  border: 1px solid var(--b1);
  border-radius: 20px;
  padding: 56px 40px 48px;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: ax-discord-in 0.6s cubic-bezier(0.22,1,0.36,1) both;
}

.ax-discord__glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(45,91,255,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.ax-discord__visual {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  animation: ax-discord-up 0.6s 0.15s cubic-bezier(0.22,1,0.36,1) both;
}
.ax-discord__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(45,91,255,0.15);
  animation: ax-discord-ring 3s ease-in-out infinite;
}
.ax-discord__ring:nth-child(1) { inset: -20px; border-color: rgba(45,91,255,0.08); animation-delay: 0s; }
.ax-discord__ring:nth-child(2) { inset: -10px; border-color: rgba(45,91,255,0.15); animation-delay: 0.4s; }
.ax-discord__ring:nth-child(3) { inset: 0; border-color: rgba(45,91,255,0.25); animation-delay: 0.8s; }

.ax-discord__icon {
  position: relative;
  z-index: 1;
  width: 88px;
  height: 88px;
  border-radius: 22px;
  background: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px var(--r-glow), 0 0 0 8px rgba(45,91,255,0.08);
}
.ax-discord__icon svg { width: 42px; height: 33px; }

.ax-discord__eyebrow {
  font-family: var(--f-h);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--r-hi);
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  animation: ax-discord-up 0.6s 0.25s cubic-bezier(0.22,1,0.36,1) both;
}
.ax-discord__pulse {
  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;
}

.ax-discord__title {
  font-family: var(--f-h);
  font-size: 38px;
  font-weight: 800;
  color: var(--t1);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 14px;
  animation: ax-discord-up 0.6s 0.3s cubic-bezier(0.22,1,0.36,1) both;
}
.ax-discord__title em { color: var(--r-hi); font-style: normal; }

.ax-discord__desc {
  font-family: var(--f-b);
  font-size: 14px;
  color: var(--t2);
  line-height: 1.65;
  max-width: 480px;
  margin: 0 0 24px;
  animation: ax-discord-up 0.6s 0.35s cubic-bezier(0.22,1,0.36,1) both;
}

.ax-discord__stats {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 10px 20px;
  background: var(--s2);
  border: 1px solid var(--b1);
  border-radius: 99px;
  margin-bottom: 28px;
  animation: ax-discord-up 0.6s 0.4s cubic-bezier(0.22,1,0.36,1) both;
}
.ax-discord__stat {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--f-h);
  font-size: 12px;
  font-weight: 700;
  color: var(--t1);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.ax-discord__stat-num { font-family: var(--f-h); }
.ax-discord__stat-label {
  color: var(--t3);
  font-weight: 500;
  font-size: 11px;
  margin-left: 1px;
}
.ax-discord__dot-on {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34,197,94,0.9);
  animation: ax-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
.ax-discord__dot-off {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--r-hi);
  box-shadow: 0 0 6px var(--r-glow);
  flex-shrink: 0;
}
.ax-discord__stat-sep {
  width: 1px;
  height: 14px;
  background: var(--b1);
}

.ax-discord__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 32px;
  background: var(--r);
  border: 1px solid var(--r-hi);
  border-radius: 99px;
  font-family: var(--f-h);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
  animation: ax-discord-up 0.6s 0.45s cubic-bezier(0.22,1,0.36,1) both;
}
.ax-discord__btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: translateX(-100%);
  transition: transform 0.55s;
}
.ax-discord__btn:hover::before { transform: translateX(100%); }
.ax-discord__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px var(--r-glow);
}
.ax-discord__btn svg { width: 18px; height: 14px; flex-shrink: 0; }

@media (max-width: 640px) {
  .ax-discord__card { padding: 40px 24px 36px; }
  .ax-discord__title { font-size: 28px; }
  .ax-discord__desc { font-size: 13px; }
}