/* ============================================
   v3.4 — MINI-CART OVERLAY + KILL DUPLICATES
   ============================================ */

/* The drawer SCREEN OVERLAY — semi-transparent dark cosmic
   so the page behind stays visible (like a real overlay) */
.wc-block-components-drawer__screen-overlay,
.wc-block-components-drawer__screen-overlay--with-slide-in,
.wc-block-components-drawer__screen-overlay--with-slide-out {
  background: rgba(10, 1, 24, 0.65) !important;
  background-color: rgba(10, 1, 24, 0.65) !important;
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
}

/* The actual drawer panel — solid so it stands out clearly */
.wc-block-components-drawer,
.wc-block-mini-cart__drawer .wc-block-components-drawer,
.wc-block-components-drawer__content {
  background: #0A0118 !important;
  background-color: #0A0118 !important;
  box-shadow: -20px 0 80px rgba(0, 0, 0, 0.7) !important;
  border-left: 1px solid rgba(176, 38, 255, 0.3) !important;
}

/* ============================================
   KILL the ghost / duplicate cart content on the left
   This is the mini-cart contents that bleeds outside the drawer.
   ============================================ */

/* When the drawer is CLOSED, hide the contents wrapper completely */
.wc-block-mini-cart__contents-wrapper:not(.is-loading):not([style*="opacity: 1"]):not(.wc-block-components-drawer__content) {
  display: none !important;
}

/* Force the mini-cart parent in the header to NOT overflow / spill its contents */
.wc-block-mini-cart {
  position: relative !important;
  overflow: visible !important;
  width: auto !important;
  height: auto !important;
}

/* The cart-icon button itself: keep it small + tight in the header */
.wc-block-mini-cart__button {
  width: 40px !important;
  height: 40px !important;
  padding: 8px !important;
  margin: 0 !important;
  position: relative !important;
  z-index: 1 !important;
}

/* When the drawer IS open, override the contents-wrapper position so it appears
   ONLY where the drawer renders it — never inline in the header area */
.wc-block-mini-cart__contents,
.wc-block-mini-cart__contents-wrapper {
  position: fixed !important;
  pointer-events: auto;
}

/* When the drawer is rendered inline (closed state), force it to be invisible */
body:not(.wc-block-components-drawer__open) .wc-block-mini-cart__contents-wrapper > div:not(.wc-block-components-drawer):not(.wc-block-components-drawer__screen-overlay) {
  display: none !important;
}

/* Hide any plain (un-drawered) cart line items that appear at the page level —
   only show line items that are inside the actual drawer */
body > .wc-block-cart-items,
body > .wc-block-cart-item,
main > .wc-block-cart-items,
.wp-site-blocks > .wc-block-cart-items,
.wp-block-post-content > .wc-block-cart-items {
  display: none !important;
}

/* The mini-cart contents-wrapper that’s NOT inside a drawer overlay — hide it */
.wc-block-mini-cart__contents-wrapper:not(:has(.wc-block-components-drawer)) {
  display: none !important;
}

/* Ensure proper stacking when drawer is open */
.wc-block-components-drawer__screen-overlay {
  z-index: 100000 !important;
}
.wc-block-components-drawer {
  z-index: 100001 !important;
}

/* The drawer should not let any orphan elements escape its bounds */
.wc-block-components-drawer * {
  position: relative;
}
.wc-block-components-drawer .wc-block-components-drawer__close,
.wc-block-components-drawer .wc-block-mini-cart__close-button {
  position: absolute !important;
  top: 20px !important;
  right: 20px !important;
  z-index: 100002 !important;
}

/* Hide any rogue/orphaned cart price / details that appear outside drawer */
.aa-home .wc-block-cart-item,
.aa-home .wc-block-components-product-price,
main.wp-block-group .wc-block-mini-cart__contents .wc-block-cart-items {
  /* leave alone if inside drawer, hide if floating in homepage */
}
body.home > .wc-block-mini-cart__contents,
body.home main > .wc-block-mini-cart__contents,
body.home .wp-block-post-content > .wc-block-mini-cart__contents {
  display: none !important;
}

/* ============================================
   v3.3 — MINI-CART DRAWER FIX
   ============================================ */

/* Drawer container */
.wc-block-mini-cart__drawer,
.wc-block-components-drawer__screen-overlay,
.wc-block-mini-cart__contents-wrapper {
  background: #0A0118 !important;
  color: #F0E9FF !important;
}

.wc-block-mini-cart__title,
.wc-block-components-drawer__title {
  font-family: 'Cinzel', serif !important;
  font-size: 24px !important;
  font-weight: 600 !important;
  color: #F0E9FF !important;
  padding: 24px !important;
  margin: 0 !important;
  border-bottom: 1px solid rgba(176, 38, 255, 0.2);
}

/* Close button (X) — clean */
.wc-block-mini-cart__close-button,
.wc-block-components-drawer__close {
  background: transparent !important;
  border: 1px solid rgba(0, 240, 255, 0.3) !important;
  color: #00F0FF !important;
  width: 44px !important;
  height: 44px !important;
  padding: 0 !important;
  border-radius: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.wc-block-mini-cart__close-button:hover,
.wc-block-components-drawer__close:hover {
  background: rgba(0, 240, 255, 0.1) !important;
  border-color: #00F0FF !important;
}
.wc-block-mini-cart__close-button svg,
.wc-block-components-drawer__close svg {
  fill: #00F0FF !important;
  stroke: #00F0FF !important;
  width: 20px !important;
  height: 20px !important;
}

/* ============================================
   PRICE — only show one price (kill duplicates)
   ============================================ */
.wc-block-cart-item__prices .wc-block-components-product-price {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Hide the regular price when there's a sale price */
.wc-block-components-product-price__regular {
  display: none !important;
}

/* Show only the main price */
.wc-block-components-product-price__value {
  font-family: 'Space Mono', monospace !important;
  color: #00F0FF !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  text-decoration: none !important;
}

/* If there's no sale, show just regular */
.wc-block-components-product-price:not(.is-discounted) .wc-block-components-product-price__regular {
  display: inline !important;
  color: #00F0FF !important;
  text-decoration: none !important;
}

/* Kill duplicate price displays in mini-cart line items */
.wc-block-cart-item .wc-block-components-product-price > * + .wc-block-components-product-price__value,
.wc-block-cart-item .wc-block-components-product-price__value ~ .wc-block-components-product-price__value {
  display: none !important;
}

/* ============================================
   QUANTITY SELECTOR — clean horizontal layout
   ============================================ */
.wc-block-cart-item__quantity,
.wc-block-components-quantity-selector,
.wc-block-cart-item__wrap .wc-block-components-quantity-selector {
  display: flex !important;
  align-items: center !important;
  gap: 0 !important;
  border: 1px solid rgba(176, 38, 255, 0.3) !important;
  border-radius: 0 !important;
  width: fit-content !important;
  max-width: 140px !important;
  background: rgba(10, 1, 24, 0.5) !important;
  margin: 12px 0 !important;
  overflow: hidden !important;
  position: relative !important;
}

.wc-block-components-quantity-selector__button,
button.wc-block-components-quantity-selector__button {
  background: transparent !important;
  border: none !important;
  color: #00F0FF !important;
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  padding: 0 !important;
  font-family: 'Space Mono', monospace !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  letter-spacing: 0 !important;
  position: static !important;
  margin: 0 !important;
  box-shadow: none !important;
}
.wc-block-components-quantity-selector__button:hover {
  background: rgba(0, 240, 255, 0.1) !important;
  color: #00F0FF !important;
  transform: none !important;
  box-shadow: none !important;
}

.wc-block-components-quantity-selector__input,
input.wc-block-components-quantity-selector__input {
  background: transparent !important;
  border: none !important;
  border-left: 1px solid rgba(176, 38, 255, 0.3) !important;
  border-right: 1px solid rgba(176, 38, 255, 0.3) !important;
  color: #F0E9FF !important;
  width: 50px !important;
  height: 36px !important;
  text-align: center !important;
  padding: 0 !important;
  font-family: 'Space Mono', monospace !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  -moz-appearance: textfield !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.wc-block-components-quantity-selector__input::-webkit-inner-spin-button,
.wc-block-components-quantity-selector__input::-webkit-outer-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}

/* ============================================
   REMOVE (TRASH) BUTTON — separate from quantity
   ============================================ */
.wc-block-cart-item__remove-link,
button.wc-block-cart-item__remove-link,
.wc-block-cart-items__remove-link {
  background: transparent !important;
  border: none !important;
  color: #C7B8E8 !important;
  font-family: 'Space Mono', monospace !important;
  font-size: 11px !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  padding: 8px 12px !important;
  margin: 8px 0 0 16px !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  text-decoration: underline !important;
  text-decoration-color: rgba(199, 184, 232, 0.3) !important;
  text-underline-offset: 3px !important;
  position: static !important;
  width: auto !important;
  height: auto !important;
  letter-spacing: 0.15em !important;
}
.wc-block-cart-item__remove-link:hover {
  color: #ff3264 !important;
  text-decoration-color: #ff3264 !important;
  background: transparent !important;
  transform: none !important;
  box-shadow: none !important;
}

/* ============================================
   CART ITEM LAYOUT
   ============================================ */
.wc-block-cart-items,
.wc-block-mini-cart__items {
  padding: 0 24px !important;
  background: transparent !important;
}

.wc-block-cart-items__row,
.wc-block-cart-item {
  background: transparent !important;
  border-bottom: 1px solid rgba(176, 38, 255, 0.15) !important;
  padding: 20px 0 !important;
  display: grid !important;
  grid-template-columns: 80px 1fr auto !important;
  gap: 16px !important;
  align-items: start !important;
}

.wc-block-cart-item__image {
  grid-column: 1 !important;
  width: 80px !important;
  height: 80px !important;
}
.wc-block-cart-item__image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 0 !important;
  border: 1px solid rgba(176, 38, 255, 0.2) !important;
}

.wc-block-cart-item__product {
  grid-column: 2 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
}
.wc-block-cart-item__product-name,
a.wc-block-components-product-name {
  font-family: 'Cinzel', serif !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  color: #00F0FF !important;
  line-height: 1.3 !important;
  text-decoration: none !important;
}
.wc-block-cart-item__product-name:hover { color: #B026FF !important; }

.wc-block-components-product-details,
.wc-block-components-product-metadata {
  color: #C7B8E8 !important;
  font-size: 12px !important;
  font-family: 'Space Mono', monospace !important;
  margin: 4px 0 !important;
}

/* Price on the right side of the row */
.wc-block-cart-item__prices,
.wc-block-cart-item__total-price {
  grid-column: 3 !important;
  text-align: right !important;
  font-family: 'Space Mono', monospace !important;
  color: #00F0FF !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  white-space: nowrap !important;
}

/* Hide duplicate "total" if it's redundant */
.wc-block-cart-item__total .wc-block-components-product-price__regular + .wc-block-components-product-price__value {
  display: none !important;
}

/* ============================================
   MINI-CART FOOTER (subtotal + checkout button)
   ============================================ */
.wc-block-mini-cart__footer,
.wc-block-mini-cart__footer-subtotal,
.wc-block-mini-cart__footer-actions {
  background: rgba(26, 11, 46, 0.6) !important;
  border-top: 1px solid rgba(176, 38, 255, 0.2) !important;
  padding: 20px 24px !important;
  color: #F0E9FF !important;
}
.wc-block-mini-cart__footer-subtotal {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  font-family: 'Space Mono', monospace !important;
  font-size: 13px !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  border-top: none !important;
}
.wc-block-mini-cart__footer-subtotal .wc-block-components-totals-item__value {
  color: #00F0FF !important;
  font-size: 18px !important;
  font-weight: 700 !important;
}

.wc-block-mini-cart__footer-actions a,
.wc-block-mini-cart__footer-actions .wc-block-components-button {
  font-family: 'Space Mono', monospace !important;
  font-size: 12px !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  padding: 16px 24px !important;
  border-radius: 0 !important;
  text-align: center !important;
  display: block !important;
  width: 100% !important;
  margin: 8px 0 !important;
  box-sizing: border-box !important;
}

/* View cart — ghost */
.wc-block-mini-cart__footer-actions a:first-child {
  background: transparent !important;
  border: 1px solid rgba(176, 38, 255, 0.3) !important;
  color: #C7B8E8 !important;
}
.wc-block-mini-cart__footer-actions a:first-child:hover {
  border-color: #B026FF !important;
  color: #F0E9FF !important;
}

/* Checkout — primary plasma */
.wc-block-mini-cart__footer-actions a:last-child,
.wc-block-mini-cart__footer-actions .wp-block-button__link {
  background: #B026FF !important;
  color: #F0E9FF !important;
  border: 1px solid #B026FF !important;
}
.wc-block-mini-cart__footer-actions a:last-child:hover,
.wc-block-mini-cart__footer-actions .wp-block-button__link:hover {
  background: #00F0FF !important;
  color: #0A0118 !important;
  border-color: #00F0FF !important;
}

/* Empty cart state */
.wc-block-mini-cart__empty-cart {
  text-align: center !important;
  padding: 60px 24px !important;
  color: #C7B8E8 !important;
  font-family: 'Space Mono', monospace !important;
}

/* ============================================
   v3.2 — HERO PERFECT CENTERING
   ============================================ */

/* Break out of any theme container constraints on the homepage */
body.home main,
body.home .wp-block-post-content,
body.home .entry-content,
body.home .wp-block-group.is-layout-constrained,
body.page-id-402 main,
body.page-id-402 .wp-block-post-content {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

.aa-home {
  width: 100%;
  display: block;
  text-align: center;
  margin: 0 auto !important;
}

.aa-home .aa-container {
  max-width: 1320px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 0 32px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* HERO — truly centered */
.aa-hero {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

.aa-hero-stack {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  max-width: 1100px !important;
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}

/* The eyebrow line was offsetting the row. Make it symmetric with a line on BOTH sides */
.aa-hero-stack .aa-eyebrow {
  display: inline-flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 16px !important;
  margin: 0 auto 28px !important;
  width: auto !important;
}
.aa-hero-stack .aa-eyebrow::before {
  content: '' !important;
  display: inline-block !important;
  width: 40px !important;
  height: 1px !important;
  background: #00F0FF !important;
}
.aa-hero-stack .aa-eyebrow::after {
  content: '' !important;
  display: inline-block !important;
  width: 40px !important;
  height: 1px !important;
  background: #00F0FF !important;
}

/* Title — truly centered, balanced sizing */
.aa-hero-stack h1 {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  width: 100% !important;
  max-width: 100% !important;
  display: block !important;
}

/* Description — centered with proper max-width */
.aa-hero-stack p {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 600px !important;
  width: 100% !important;
}

/* CTA buttons row — perfectly centered */
.aa-hero-stack .aa-cta-row {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  width: auto !important;
  max-width: 100% !important;
  flex-wrap: wrap !important;
  gap: 16px !important;
}

/* Hero visual centered */
.aa-hero-stack .aa-hero-visual-centered {
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
}

/* Belt and suspenders — reset any inherited float/text-align oddities */
.aa-hero,
.aa-hero *,
.aa-hero-stack,
.aa-hero-stack * {
  float: none !important;
}

/* ============================================
   v3.1 — HEADER STICKY FIX + KILL HAMBURGER
   ============================================ */

/* Solid sticky header — no content bleeding through */
.hostinger-ai-menu,
.aa-sticky-header,
header.wp-block-template-part,
.wp-block-template-part[data-block-type="header"] {
  position: sticky !important;
  top: 0 !important;
  z-index: 9999 !important;
  background: #0A0118 !important;
  background-color: #0A0118 !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  border-bottom: 1px solid rgba(176, 38, 255, 0.25) !important;
  box-shadow: 0 4px 30px rgba(10, 1, 24, 0.8) !important;
}

/* Inner wrapper also solid */
.hostinger-ai-menu-wrapper {
  background: transparent !important;
  align-items: center !important;
}

/* Header actions group (account + cart) */
.aa-header-actions {
  align-items: center !important;
  gap: 16px !important;
}

/* KILL the hamburger / overlay menu opener — we never want it on this site */
.wp-block-navigation__responsive-container-open,
.wp-block-navigation__responsive-container,
.wp-block-navigation__responsive-container-close,
.wp-block-navigation__responsive-dialog,
.aa-no-hamburger .wp-block-navigation__responsive-container-open,
button.wp-block-navigation__responsive-container-open {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 0 !important;
  height: 0 !important;
  position: absolute !important;
  left: -9999px !important;
}

/* Force nav to render inline always */
.hostinger-ai-site-navigation,
.wp-block-navigation.aa-no-hamburger {
  display: flex !important;
  flex-wrap: nowrap !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 36px !important;
}
.hostinger-ai-site-navigation .wp-block-navigation__container,
.hostinger-ai-site-navigation ul,
.wp-block-navigation.aa-no-hamburger .wp-block-navigation__container {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 36px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.hostinger-ai-site-navigation li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Make sure mini-cart and customer-account icons stay clean */
.wc-block-mini-cart, .wc-block-customer-account {
  margin: 0 !important;
}
.wc-block-mini-cart__button {
  background: transparent !important;
  border: none !important;
  padding: 8px !important;
  color: #F0E9FF !important;
}
.wc-block-mini-cart__button:hover { color: #00F0FF !important; }
.wc-block-mini-cart__quantity-badge {
  background: #B026FF !important;
  color: #0A0118 !important;
  font-family: 'Space Mono', monospace !important;
  font-size: 10px !important;
  font-weight: 700 !important;
}

/* Mobile — stack header items, still no hamburger */
@media (max-width: 768px) {
  .hostinger-ai-menu-wrapper {
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 12px !important;
    padding: 14px 16px !important;
  }
  .hostinger-ai-site-title {
    flex: 1 1 auto;
    text-align: left;
  }
  .hostinger-ai-site-navigation,
  .hostinger-ai-site-navigation .wp-block-navigation__container {
    flex-basis: 100%;
    justify-content: center !important;
    gap: 18px !important;
    flex-wrap: wrap !important;
  }
  .hostinger-ai-site-navigation a {
    font-size: 11px !important;
    letter-spacing: 0.12em !important;
  }
  .aa-header-actions {
    order: 2;
  }
}

@media (max-width: 480px) {
  .hostinger-ai-site-navigation a {
    font-size: 10px !important;
    letter-spacing: 0.1em !important;
  }
  .hostinger-ai-site-navigation,
  .hostinger-ai-site-navigation .wp-block-navigation__container {
    gap: 12px !important;
  }
}

/* ============================================
   ALIEN ANCIENT — Cosmic Design Tokens (v3.0)
   ============================================ */
:root {
  --aa-void: #0A0118;
  --aa-cosmic: #1A0B2E;
  --aa-cosmic-2: #251339;
  --aa-nebula: #6B2FBF;
  --aa-plasma: #B026FF;
  --aa-teal: #00F0FF;
  --aa-aurora: #2DD4BF;
  --aa-star: #F0E9FF;
  --aa-moon: #C7B8E8;
  --aa-dim: rgba(240, 233, 255, 0.6);
  --aa-hairline: rgba(176, 38, 255, 0.2);
  --aa-hairline-bright: rgba(0, 240, 255, 0.3);

  --aa-font-display: 'Cinzel', Georgia, serif;
  --aa-font-mono: 'Space Mono', 'Courier New', monospace;
  --aa-font-body: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

/* ============================================
   THEME PALETTE OVERRIDES (Hostinger AI theme)
   ============================================ */
.has-color-1-background-color,
.wp-block-group.has-color-1-background-color,
[class*="has-color-1-background"] {
  background-color: transparent !important;
  background: transparent !important;
}
.has-color-2-background-color,
.wp-block-group.has-color-2-background-color {
  background-color: #0A0118 !important;
}
.has-color-3-background-color { background-color: #B026FF !important; }
.has-color-1-color { color: #F0E9FF !important; }
.has-color-2-color { color: #F0E9FF !important; }
.has-color-3-color { color: #00F0FF !important; }
.has-dark-color { color: #F0E9FF !important; }
.has-light-color { color: #F0E9FF !important; }

.hostinger-locale {
  font-family: 'Space Mono', monospace !important;
  font-size: 11px !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase !important;
  color: #00F0FF !important;
  font-weight: 400 !important;
}

/* ============================================
   Global body & cosmic backdrop
   ============================================ */
html, body {
  background: #0A0118 !important;
  color: #F0E9FF;
  font-family: var(--aa-font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(107, 47, 191, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 60%, rgba(0, 240, 255, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(176, 38, 255, 0.18) 0%, transparent 60%);
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 23% 17%, white, transparent),
    radial-gradient(1px 1px at 67% 43%, white, transparent),
    radial-gradient(1px 1px at 89% 12%, white, transparent),
    radial-gradient(2px 2px at 41% 71%, white, transparent),
    radial-gradient(1px 1px at 11% 89%, white, transparent),
    radial-gradient(1px 1px at 78% 78%, white, transparent),
    radial-gradient(1px 1px at 52% 23%, white, transparent),
    radial-gradient(2px 2px at 33% 51%, white, transparent),
    radial-gradient(1px 1px at 95% 35%, white, transparent),
    radial-gradient(1px 1px at 7% 31%, white, transparent),
    radial-gradient(1px 1px at 61% 91%, white, transparent),
    radial-gradient(2px 2px at 84% 67%, white, transparent);
  opacity: 0.55;
  animation: aa-twinkle 8s ease-in-out infinite;
}
@keyframes aa-twinkle {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 0.85; }
}

#page, .site, main, header, footer,
.elementor-section, .woocommerce,
.site-content, .entry-content, .site-header, .site-footer,
.wp-site-blocks, .wp-block-template-part {
  position: relative;
  z-index: 1;
}

/* ============================================
   Theme-specific header (Hostinger AI)
   ============================================ */
.hostinger-ai-menu {
  background: rgba(10, 1, 24, 0.85) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid rgba(176, 38, 255, 0.2) !important;
}
.hostinger-ai-site-title,
.hostinger-ai-site-title a {
  font-family: 'Cinzel', Georgia, serif !important;
  letter-spacing: 0.25em !important;
  color: #F0E9FF !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}
.hostinger-ai-site-navigation a {
  font-family: 'Space Mono', monospace !important;
  font-size: 12px !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: #C7B8E8 !important;
}
.hostinger-ai-site-navigation a:hover { color: #00F0FF !important; }

.wc-block-customer-account svg,
.wc-block-mini-cart__button svg {
  fill: #F0E9FF !important;
  color: #F0E9FF !important;
}
.wc-block-mini-cart__button { color: #F0E9FF !important; background: transparent !important; }
.wc-block-mini-cart__amount { color: #00F0FF !important; font-family: 'Space Mono', monospace !important; }

/* Breadcrumb */
.woocommerce-breadcrumb,
.wc-block-breadcrumbs,
.wc-block-breadcrumbs__link {
  font-family: 'Space Mono', monospace !important;
  font-size: 11px !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: #C7B8E8 !important;
}
.woocommerce-breadcrumb a, .wc-block-breadcrumbs a { color: #00F0FF !important; }

/* Nuke the beige page header strip on Shop / Single product */
.wp-block-post-title,
.wc-block-page-content-wrapper .wp-block-group:first-child,
body.archive .wp-block-group.has-color-1-background-color,
body.single-product .wp-block-group.has-color-1-background-color {
  background: transparent !important;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6,
.site-title, .product_title, .entry-title,
.woocommerce-loop-product__title,
.wc-block-grid__product-title,
.elementor-heading-title,
.wp-block-heading {
  font-family: 'Cinzel', Georgia, serif !important;
  color: #F0E9FF !important;
  letter-spacing: -0.01em;
  font-weight: 600;
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
}

p, li, label, span { color: #F0E9FF; }
p { color: rgba(240, 233, 255, 0.7); line-height: 1.6; }

/* Prices in mono teal — ALWAYS visible */
.woocommerce-Price-amount,
.wc-block-grid__product-price,
.price,
.amount,
.woocommerce-Price-currencySymbol,
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .price .amount,
.woocommerce ul.products li.product .price ins,
.woocommerce ul.products li.product .price del {
  font-family: 'Space Mono', monospace !important;
  color: #00F0FF !important;
  font-weight: 700 !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: inline-block !important;
}
.woocommerce ul.products li.product .price {
  display: block !important;
}

/* ============================================
   Links & buttons — cosmic styled by default
   ============================================ */
a { color: #00F0FF; text-decoration: none; transition: color 0.2s ease; }
a:hover { color: #B026FF; }

/* Default "primary" button — cosmic teal background, dark text */
.button, button:not(.elementor-button):not(.wc-block-customer-account):not(.wc-block-mini-cart__button), input[type="submit"],
.wp-block-button__link, .wp-element-button,
.woocommerce a.button, .woocommerce button.button,
.woocommerce input.button, .woocommerce #respond input#submit,
.add_to_cart_button, .single_add_to_cart_button,
.wc-block-grid__product-add-to-cart .wp-block-button__link {
  font-family: 'Space Mono', monospace !important;
  font-size: 12px !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  padding: 14px 24px !important;
  border: 1px solid #00F0FF !important;
  background: rgba(0, 240, 255, 0.08) !important;
  color: #00F0FF !important;
  border-radius: 0 !important;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none !important;
  display: inline-block;
  font-weight: 700;
  line-height: 1.4 !important;
  box-shadow: 0 0 0 0 rgba(0, 240, 255, 0);
}

.button:hover, button:not(.elementor-button):hover,
.wp-block-button__link:hover, .wp-element-button:hover,
.woocommerce a.button:hover, .woocommerce button.button:hover,
.add_to_cart_button:hover, .single_add_to_cart_button:hover,
.wc-block-grid__product-add-to-cart .wp-block-button__link:hover {
  background: #00F0FF !important;
  color: #0A0118 !important;
  border-color: #00F0FF !important;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.4) !important;
  transform: translateY(-2px);
}

/* Primary CTA buttons (Add to Cart on single product) get plasma color */
.single_add_to_cart_button {
  background: #B026FF !important;
  color: #F0E9FF !important;
  border-color: #B026FF !important;
  padding: 18px 36px !important;
  font-size: 13px !important;
}
.single_add_to_cart_button:hover {
  background: #00F0FF !important;
  color: #0A0118 !important;
  border-color: #00F0FF !important;
}

/* ============================================
   WooCommerce — Product grid
   ============================================ */
.woocommerce ul.products,
.wc-block-grid__products {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)) !important;
  gap: 24px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.woocommerce ul.products li.product,
.wc-block-grid__product {
  background: rgba(26, 11, 46, 0.4) !important;
  border: 1px solid rgba(176, 38, 255, 0.2) !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  float: none !important;
  transition: all 0.3s ease;
  overflow: hidden;
  list-style: none;
  display: flex !important;
  flex-direction: column !important;
}

.woocommerce ul.products li.product:hover,
.wc-block-grid__product:hover {
  border-color: #B026FF !important;
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(176, 38, 255, 0.15);
}

.woocommerce ul.products li.product a img,
.wc-block-grid__product-image img {
  border-radius: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  height: auto !important;
  display: block !important;
  aspect-ratio: 1 !important;
  object-fit: cover !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.wc-block-grid__product-title {
  padding: 20px 20px 8px !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  color: #F0E9FF !important;
  line-height: 1.35 !important;
  letter-spacing: 0.01em !important;
  text-transform: none !important;
  margin: 0 !important;
  min-height: 3.5em;
}

.woocommerce ul.products li.product .price,
.wc-block-grid__product-price {
  padding: 0 20px 16px !important;
  font-size: 15px !important;
  display: block !important;
  margin: 0 !important;
  opacity: 1 !important;
}

.woocommerce ul.products li.product .button,
.wc-block-grid__product-add-to-cart .wp-block-button__link,
.wc-block-grid__product-add-to-cart {
  margin: auto 20px 20px !important;
  display: block !important;
  text-align: center !important;
  width: calc(100% - 40px) !important;
  box-sizing: border-box !important;
}

.wc-block-grid__product-onsale, .onsale {
  background: #B026FF !important;
  color: #0A0118 !important;
  font-family: 'Space Mono', monospace !important;
  font-size: 10px !important;
  letter-spacing: 0.2em !important;
  border-radius: 0 !important;
  padding: 4px 10px !important;
  border: none !important;
  min-height: auto !important;
  min-width: auto !important;
  line-height: 1.2 !important;
}

/* ============================================
   FORMS — inputs, selects, textareas (visible!)
   ============================================ */
input[type="text"], input[type="email"], input[type="password"],
input[type="tel"], input[type="number"], input[type="search"],
input[type="url"], textarea, select {
  background: rgba(10, 1, 24, 0.8) !important;
  border: 1px solid rgba(176, 38, 255, 0.4) !important;
  color: #F0E9FF !important;
  font-family: 'Space Mono', monospace !important;
  font-size: 14px !important;
  padding: 14px 18px !important;
  border-radius: 0 !important;
  transition: border-color 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}

/* Select dropdown — needs special handling for visibility */
select {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300F0FF' stroke-width='2'%3e%3cpath d='M6 9l6 6 6-6'/%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  background-size: 14px !important;
  padding-right: 44px !important;
  cursor: pointer;
  color: #F0E9FF !important;
  min-height: 48px !important;
}
select option {
  background: #1A0B2E !important;
  color: #F0E9FF !important;
  padding: 12px !important;
  font-family: 'Space Mono', monospace !important;
}
select:focus { border-color: #00F0FF !important; }

input:focus, textarea:focus, select:focus {
  border-color: #00F0FF !important;
  outline: none !important;
  box-shadow: 0 0 0 1px #00F0FF !important;
}
input::placeholder, textarea::placeholder { color: #C7B8E8; opacity: 0.5; }

/* Quantity input (number) on product page */
.woocommerce .quantity input[type="number"],
.woocommerce div.product form.cart .quantity input.qty {
  width: 80px !important;
  text-align: center;
  background: rgba(10, 1, 24, 0.8) !important;
  border: 1px solid rgba(176, 38, 255, 0.4) !important;
  color: #F0E9FF !important;
}

/* ============================================
   Single product page — variations table
   ============================================ */
.woocommerce div.product .product_title {
  font-size: clamp(32px, 4vw, 44px) !important;
  margin-bottom: 16px !important;
  line-height: 1.1 !important;
}
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  font-size: 22px !important;
  margin-bottom: 24px !important;
  color: #00F0FF !important;
}
.woocommerce div.product .woocommerce-product-details__short-description {
  color: rgba(240, 233, 255, 0.7);
  margin-bottom: 24px;
}

/* Variations form (Size/Color labels) */
.woocommerce div.product form.cart .variations {
  width: 100% !important;
}
.woocommerce div.product form.cart .variations tr,
.woocommerce div.product form.cart .variations td {
  display: block !important;
  width: 100% !important;
  padding: 0 0 16px 0 !important;
  background: transparent !important;
  border: none !important;
}
.woocommerce div.product form.cart .variations label {
  display: block !important;
  color: #00F0FF !important;
  font-family: 'Space Mono', monospace !important;
  font-size: 11px !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase !important;
  margin-bottom: 10px !important;
  font-weight: 400 !important;
}
.woocommerce div.product form.cart .reset_variations {
  color: #00F0FF !important;
  font-family: 'Space Mono', monospace !important;
  font-size: 11px !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  margin-top: 8px !important;
  display: inline-block !important;
}

/* Single product tabs */
.woocommerce div.product .woocommerce-tabs ul.tabs {
  border-bottom: 1px solid rgba(176, 38, 255, 0.2) !important;
  padding: 0 !important;
  margin: 40px 0 0 !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background: transparent !important;
  border: none !important;
  border-bottom: 2px solid transparent !important;
  border-radius: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  padding: 16px 24px !important;
  color: #C7B8E8 !important;
  font-family: 'Space Mono', monospace !important;
  font-size: 12px !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  border-bottom-color: #00F0FF !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: #00F0FF !important;
}
.woocommerce div.product .woocommerce-tabs .panel {
  background: transparent !important;
  color: #F0E9FF !important;
  padding-top: 32px !important;
}

/* Stock status */
.woocommerce div.product .stock {
  color: #2DD4BF !important;
  font-family: 'Space Mono', monospace !important;
  font-size: 11px !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
}
.woocommerce div.product .out-of-stock { color: #ff3264 !important; }

/* ============================================
   WooCommerce — Cart, Checkout, Tables
   ============================================ */
.woocommerce-cart, .woocommerce-checkout, .woocommerce-account { background: transparent; }

.woocommerce table.shop_table,
.wc-block-cart, .wc-block-checkout {
  background: rgba(26, 11, 46, 0.4) !important;
  border: 1px solid rgba(176, 38, 255, 0.2) !important;
  color: #F0E9FF !important;
  border-radius: 0 !important;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  color: #F0E9FF !important;
  border-color: rgba(176, 38, 255, 0.2) !important;
  background: transparent !important;
  padding: 16px !important;
}

.woocommerce-info, .woocommerce-message {
  background: rgba(176, 38, 255, 0.1) !important;
  border-top: 3px solid #B026FF !important;
  color: #F0E9FF !important;
}
.woocommerce-error {
  background: rgba(255, 50, 100, 0.1) !important;
  border-top: 3px solid #ff3264 !important;
  color: #F0E9FF !important;
}

/* ============================================
   HOMEPAGE HERO — centered stack layout
   ============================================ */
.aa-home { font-family: 'Inter', sans-serif; color: #F0E9FF; }
.aa-home .aa-container { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
.aa-home a { text-decoration: none; }

.aa-hero {
  padding: 80px 0 100px !important;
  display: flex !important;
  align-items: center !important;
  min-height: 80vh;
}
.aa-hero-stack {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  max-width: 1000px !important;
  margin: 0 auto !important;
  width: 100%;
}
.aa-hero-stack .aa-eyebrow {
  justify-content: center !important;
  margin-bottom: 28px !important;
}
.aa-hero-stack h1 {
  font-family: 'Cinzel', serif !important;
  font-weight: 900 !important;
  font-size: clamp(44px, 9vw, 128px) !important;
  line-height: 0.95 !important;
  letter-spacing: -0.02em !important;
  margin: 0 0 32px !important;
  color: #F0E9FF !important;
  text-align: center !important;
  word-break: keep-all !important;
  white-space: normal !important;
}
.aa-hero-stack h1 em {
  background: linear-gradient(135deg, #B026FF 0%, #00F0FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  font-weight: 500;
  white-space: nowrap;
}
.aa-hero-stack p {
  font-size: 17px !important;
  color: rgba(240, 233, 255, 0.65) !important;
  max-width: 560px !important;
  margin: 0 auto 40px !important;
  line-height: 1.6 !important;
  text-align: center !important;
}
.aa-hero-stack .aa-cta-row {
  justify-content: center !important;
  margin-bottom: 64px !important;
}
.aa-hero-visual-centered {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 1;
  margin: 0 auto;
  border: 1px solid rgba(176, 38, 255, 0.2);
  background:
    radial-gradient(circle at center, rgba(176, 38, 255, 0.18) 0%, transparent 70%),
    linear-gradient(180deg, #1A0B2E 0%, #0A0118 100%);
  position: relative;
  overflow: hidden;
}
.aa-hero-visual-centered::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0, transparent 40px, rgba(0, 240, 255, 0.05) 40px, rgba(0, 240, 255, 0.05) 41px),
    repeating-linear-gradient(90deg, transparent 0, transparent 40px, rgba(0, 240, 255, 0.05) 40px, rgba(0, 240, 255, 0.05) 41px);
}

/* Hero eyebrow */
.aa-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: #00F0FF;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 16px;
}
.aa-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: #00F0FF;
}
.aa-eyebrow .aa-dot { width: 8px; height: 8px; background: #00F0FF; border-radius: 50%; animation: aa-pulse 2s ease-in-out infinite; box-shadow: 0 0 12px #00F0FF; display: inline-block; }
@keyframes aa-pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.8); } }

/* CTA buttons */
.aa-cta-row { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.aa-btn { font-family: 'Space Mono', monospace !important; font-size: 12px !important; letter-spacing: 0.2em !important; text-transform: uppercase !important; padding: 18px 32px !important; display: inline-flex !important; align-items: center !important; gap: 12px !important; transition: all 0.25s !important; font-weight: 700 !important; border: 1px solid transparent !important; cursor: pointer; }
.aa-btn-primary { background: #F0E9FF !important; color: #0A0118 !important; border-color: #F0E9FF !important; }
.aa-btn-primary:hover { background: #00F0FF !important; box-shadow: 0 0 40px rgba(0, 240, 255, 0.4); transform: translateY(-2px); color: #0A0118 !important; border-color: #00F0FF !important; }
.aa-btn-ghost { background: transparent !important; color: #C7B8E8 !important; border-color: rgba(176, 38, 255, 0.3) !important; }
.aa-btn-ghost:hover { color: #F0E9FF !important; border-color: #B026FF !important; }
.aa-arrow { width: 12px; height: 12px; border-top: 1px solid currentColor; border-right: 1px solid currentColor; transform: rotate(45deg); transition: transform 0.2s; flex-shrink: 0; }
.aa-btn:hover .aa-arrow { transform: rotate(45deg) translate(2px, -2px); }

/* Hero scanner internals */
.aa-scanner-big {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 240, 255, 0.3) 50%, transparent 100%);
  height: 120px;
  animation: aa-scan 4s linear infinite;
}
@keyframes aa-scan { 0% { transform: translateY(-150px); } 100% { transform: translateY(100%); } }
.aa-rings-big { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 75%; aspect-ratio: 1; }
.aa-ring-big { position: absolute; inset: 0; border: 1px solid rgba(0, 240, 255, 0.3); border-radius: 50%; animation: aa-ring 3s ease-out infinite; }
.aa-ring-big:nth-child(2) { animation-delay: 1s; }
.aa-ring-big:nth-child(3) { animation-delay: 2s; }
@keyframes aa-ring { 0% { transform: scale(0.4); opacity: 1; } 100% { transform: scale(1.4); opacity: 0; } }
.aa-ufo-big { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-family: 'Space Mono', monospace; font-size: 12px; color: #00F0FF; text-align: center; letter-spacing: 0.25em; z-index: 2; }
.aa-ufo-big-glyph { font-family: 'Cinzel', serif; font-size: 88px; font-weight: 900; color: #F0E9FF; margin-bottom: 12px; filter: drop-shadow(0 0 30px #B026FF); }
.aa-cm-big { position: absolute; width: 20px; height: 20px; border-color: #00F0FF; }
.aa-cm-big-tl { top: 20px; left: 20px; border-top: 1px solid; border-left: 1px solid; }
.aa-cm-big-tr { top: 20px; right: 20px; border-top: 1px solid; border-right: 1px solid; }
.aa-cm-big-bl { bottom: 20px; left: 20px; border-bottom: 1px solid; border-left: 1px solid; }
.aa-cm-big-br { bottom: 20px; right: 20px; border-bottom: 1px solid; border-right: 1px solid; }
.aa-hero-meta-big { position: absolute; bottom: 28px; left: 28px; right: 28px; display: flex; justify-content: space-between; font-family: 'Space Mono', monospace; font-size: 10px; color: #C7B8E8; letter-spacing: 0.15em; z-index: 2; }

/* Transmission strip */
.aa-transmission { background: #B026FF; color: #0A0118; font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; padding: 10px 0; overflow: hidden; }
.aa-transmission-track { display: flex; gap: 48px; white-space: nowrap; animation: aa-scroll 30s linear infinite; width: max-content; }
.aa-transmission span { display: inline-flex; align-items: center; gap: 12px; }
.aa-transmission span::before { content: '▲'; font-size: 8px; color: #0A0118; }
@keyframes aa-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Section + general homepage styles */
.aa-section { padding: 100px 0; }
.aa-section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; gap: 40px; flex-wrap: wrap; }
.aa-eyebrow-num { font-family: 'Space Mono', monospace; font-size: 11px; color: #00F0FF; letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.aa-eyebrow-num::before { content: attr(data-num); color: #C7B8E8; border: 1px solid rgba(176, 38, 255, 0.2); padding: 2px 8px; font-size: 10px; }
.aa-section h2 { font-family: 'Cinzel', serif !important; font-weight: 600 !important; font-size: clamp(32px, 5vw, 56px) !important; line-height: 1.05 !important; margin: 0 !important; max-width: 600px; color: #F0E9FF !important; }
.aa-section h2 em { font-style: italic; font-weight: 400; background: linear-gradient(135deg, #B026FF 0%, #00F0FF 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.aa-section-link { font-family: 'Space Mono', monospace; font-size: 12px; color: #C7B8E8 !important; letter-spacing: 0.2em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 12px; padding-bottom: 4px; border-bottom: 1px solid rgba(176, 38, 255, 0.2); transition: all 0.2s; }
.aa-section-link:hover { color: #00F0FF !important; border-color: #00F0FF; }

/* Categories */
.aa-cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(176, 38, 255, 0.2); border: 1px solid rgba(176, 38, 255, 0.2); }
.aa-cat { background: #0A0118; padding: 56px 36px; position: relative; overflow: hidden; transition: background 0.3s; min-height: 360px; display: flex; flex-direction: column; justify-content: space-between; color: #F0E9FF !important; }
.aa-cat:hover { background: #1A0B2E; }
.aa-cat-num { font-family: 'Space Mono', monospace; font-size: 11px; color: #00F0FF; letter-spacing: 0.2em; margin-bottom: 24px; }
.aa-cat-glyph { font-family: 'Cinzel', serif; font-size: 96px; font-weight: 900; color: #C7B8E8; opacity: 0.15; line-height: 1; margin-bottom: 32px; transition: opacity 0.3s, color 0.3s; }
.aa-cat:hover .aa-cat-glyph { opacity: 0.4; color: #B026FF; }
.aa-cat-name { font-family: 'Cinzel', serif !important; font-size: 32px !important; font-weight: 600 !important; color: #F0E9FF !important; margin: 0 0 12px !important; }
.aa-cat-desc { font-size: 14px; color: rgba(240, 233, 255, 0.6) !important; margin: 0 0 32px !important; }
.aa-cat-foot { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid rgba(176, 38, 255, 0.2); }
.aa-cat-count { font-family: 'Space Mono', monospace; font-size: 11px; color: #C7B8E8; letter-spacing: 0.15em; }
.aa-cat-arrow { width: 28px; height: 28px; border: 1px solid rgba(176, 38, 255, 0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s; color: #C7B8E8; }
.aa-cat:hover .aa-cat-arrow { background: #00F0FF; border-color: #00F0FF; color: #0A0118; }

/* Manifesto */
.aa-manifesto { text-align: center; padding: 120px 0; position: relative; }
.aa-manifesto::before, .aa-manifesto::after { content: ''; position: absolute; left: 50%; width: 1px; height: 80px; background: linear-gradient(180deg, transparent, #B026FF, transparent); }
.aa-manifesto::before { top: 0; }
.aa-manifesto::after { bottom: 0; }
.aa-manifesto blockquote { font-family: 'Cinzel', serif; font-weight: 400; font-style: italic; font-size: clamp(26px, 4.5vw, 52px); line-height: 1.2; max-width: 900px; margin: 0 auto 40px; color: #F0E9FF; padding: 0 20px; }
.aa-manifesto blockquote span { background: linear-gradient(135deg, #B026FF 0%, #00F0FF 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-weight: 600; }
.aa-manifesto cite { font-family: 'Space Mono', monospace; font-size: 11px; color: #C7B8E8; letter-spacing: 0.3em; text-transform: uppercase; font-style: normal; }

/* Lore */
.aa-lore { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.aa-lore-visual { aspect-ratio: 4/5; background: radial-gradient(ellipse at center, rgba(107, 47, 191, 0.3) 0%, transparent 60%), linear-gradient(135deg, #251339 0%, #0A0118 100%); border: 1px solid rgba(176, 38, 255, 0.2); position: relative; overflow: hidden; }
.aa-lore-visual::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, transparent 0, transparent 24px, rgba(0, 240, 255, 0.05) 24px, rgba(0, 240, 255, 0.05) 25px); }
.aa-lore-g { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-family: 'Cinzel', serif; font-size: 240px; font-weight: 900; color: #B026FF; opacity: 0.3; text-shadow: 0 0 80px #B026FF; }
.aa-lore-meta { position: absolute; bottom: 24px; left: 24px; right: 24px; display: flex; justify-content: space-between; font-family: 'Space Mono', monospace; font-size: 10px; color: #C7B8E8; letter-spacing: 0.2em; text-transform: uppercase; }
.aa-lore-text h2 em { color: #00F0FF !important; background: none !important; -webkit-text-fill-color: #00F0FF !important; }
.aa-lore-text p { font-size: 16px; color: rgba(240, 233, 255, 0.7); margin-bottom: 24px; line-height: 1.7; }
.aa-lore-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; padding-top: 40px; border-top: 1px solid rgba(176, 38, 255, 0.2); }
.aa-stat-num { font-family: 'Cinzel', serif; font-size: 36px; font-weight: 700; color: #F0E9FF; line-height: 1; margin-bottom: 8px; }
.aa-stat-label { font-family: 'Space Mono', monospace; font-size: 10px; color: #C7B8E8; letter-spacing: 0.2em; text-transform: uppercase; }

/* Newsletter */
.aa-newsletter { background: radial-gradient(ellipse at top, rgba(176, 38, 255, 0.2) 0%, transparent 60%), #1A0B2E; border: 1px solid rgba(176, 38, 255, 0.2); padding: 64px 48px; text-align: center; position: relative; overflow: hidden; }
.aa-newsletter::before, .aa-newsletter::after { content: '◊'; position: absolute; font-family: 'Cinzel', serif; font-size: 24px; color: #B026FF; }
.aa-newsletter::before { top: 20px; left: 20px; }
.aa-newsletter::after { bottom: 20px; right: 20px; }
.aa-newsletter h2 { margin: 0 0 16px !important; }
.aa-newsletter p { color: rgba(240, 233, 255, 0.7); margin: 0 auto 32px; max-width: 500px; }
.aa-newsletter-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; }
.aa-newsletter input { flex: 1; background: rgba(10, 1, 24, 0.6) !important; border: 1px solid rgba(176, 38, 255, 0.3) !important; color: #F0E9FF !important; padding: 16px 20px !important; font-family: 'Space Mono', monospace !important; font-size: 13px !important; outline: none; }

/* ============================================
   MOBILE RESPONSIVE — phone friendly
   ============================================ */
@media (max-width: 1024px) {
  .aa-home .aa-container { padding: 0 24px !important; }
  .aa-hero { padding: 60px 0 80px !important; min-height: auto; }
  .aa-hero-visual-centered { max-width: 420px; }
  .aa-section { padding: 72px 0 !important; }
  .aa-manifesto { padding: 80px 0 !important; }
  .aa-lore { grid-template-columns: 1fr !important; gap: 48px !important; }
  .aa-cats { grid-template-columns: 1fr !important; }
}

@media (max-width: 768px) {
  .aa-home .aa-container { padding: 0 20px !important; }
  .aa-hero { padding: 48px 0 64px !important; }
  .aa-hero-stack h1 { font-size: clamp(36px, 11vw, 64px) !important; }
  .aa-hero-stack p { font-size: 15px !important; }
  .aa-hero-visual-centered { max-width: 340px; }
  .aa-ufo-big-glyph { font-size: 64px !important; }
  .aa-cta-row { width: 100%; justify-content: center !important; }
  .aa-btn { width: 100%; justify-content: center !important; }
  .aa-section-header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .aa-section h2 { font-size: clamp(28px, 7vw, 40px) !important; }
  .aa-newsletter { padding: 40px 24px !important; }
  .aa-newsletter-form { flex-direction: column; }
  .aa-lore-g { font-size: 160px !important; }
  .aa-cat { padding: 40px 28px; min-height: 280px; }
  .aa-cat-glyph { font-size: 72px !important; }
  .aa-cat-name { font-size: 26px !important; }
  .aa-manifesto blockquote { font-size: clamp(22px, 5.5vw, 36px) !important; padding: 0 16px; }
  .aa-lore-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .aa-stat-num { font-size: 24px !important; }

  /* WooCommerce mobile */
  .woocommerce ul.products,
  .wc-block-grid__products {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  .woocommerce ul.products li.product .woocommerce-loop-product__title,
  .wc-block-grid__product-title {
    padding: 14px 14px 4px !important;
    font-size: 13px !important;
  }
  .woocommerce ul.products li.product .price,
  .wc-block-grid__product-price {
    padding: 0 14px 12px !important;
    font-size: 13px !important;
  }
  .woocommerce ul.products li.product .button,
  .wc-block-grid__product-add-to-cart .wp-block-button__link {
    margin: auto 14px 14px !important;
    width: calc(100% - 28px) !important;
    padding: 12px 8px !important;
    font-size: 10px !important;
    letter-spacing: 0.15em !important;
  }

  /* Single product responsive */
  .woocommerce div.product .product_title { font-size: 26px !important; }
  .woocommerce div.product div.images, .woocommerce div.product div.summary {
    width: 100% !important;
    float: none !important;
    margin: 0 0 24px !important;
  }
}

@media (max-width: 480px) {
  .aa-hero-stack h1 { font-size: 38px !important; }
  .aa-hero-visual-centered { max-width: 280px; }
  .aa-ufo-big-glyph { font-size: 52px !important; }
  .aa-eyebrow { font-size: 10px; letter-spacing: 0.2em; }
  .aa-section { padding: 56px 0 !important; }
  .aa-manifesto { padding: 64px 0 !important; }
  .aa-cat-num, .aa-cat-count { font-size: 10px; }

  /* Header mobile — hide nav links, stack logo */
  .hostinger-ai-menu-wrapper {
    grid-template-columns: 1fr !important;
    text-align: center;
  }
  .hostinger-ai-site-navigation { display: none !important; }
  .hostinger-ai-site-navigation-wrapper { justify-content: center !important; }

  /* WooCommerce mobile single column */
  .woocommerce ul.products,
  .wc-block-grid__products {
    grid-template-columns: 1fr !important;
  }
  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 14px !important;
  }
}

/* ============================================
   Reduced motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
