:root {
  --store-ink: #f5f8ff;
  --store-muted: #9ca9bd;
  --store-line: rgba(155, 179, 214, .16);
  --store-line-strong: rgba(155, 179, 214, .28);
  --store-surface: rgba(11, 22, 40, .72);
  --store-surface-strong: #101e32;
  --store-blue: #4c8dff;
  --store-cyan: #62e7ff;
  --store-lime: #c1ff75;
}

.store-page {
  background: #050a12;
  color: var(--store-ink);
  overflow-x: clip;
}

.store-page .site-header {
  background: rgba(5, 10, 18, .8);
}

.store-page .brand-logo { width: min(190px, 30vw); }

.store-page .header-actions { gap: 12px; }

.store-cart-link,
.store-account-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #dce8fa;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-decoration: none;
}

.store-cart-link span,
.store-account-link span { color: var(--store-cyan); }

.store-cart-count {
  display: grid;
  place-items: center;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--store-cyan);
  color: #07101b;
  font-size: .68rem;
  line-height: 1;
}

.store-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(350px, .92fr);
  gap: clamp(42px, 8vw, 130px);
  align-items: center;
  min-height: min(700px, 78vh);
  padding-top: clamp(130px, 16vw, 190px);
  padding-bottom: clamp(75px, 10vw, 132px);
}

.store-hero::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 11%;
  left: 31%;
  width: min(660px, 55vw);
  aspect-ratio: 1;
  border: 1px solid rgba(76, 141, 255, .14);
  border-radius: 50%;
  box-shadow: 0 0 100px rgba(52, 118, 255, .1), inset 0 0 80px rgba(98, 231, 255, .04);
  animation: storeOrbit 13s linear infinite;
}

.store-hero::after {
  content: '';
  position: absolute;
  top: 17%;
  right: 3%;
  width: 18px;
  height: 18px;
  border: 1px solid var(--store-cyan);
  border-radius: 50%;
  box-shadow: 0 0 26px var(--store-cyan);
  animation: storeFloat 4s ease-in-out infinite;
}

.store-hero h1 {
  max-width: 780px;
  margin: 16px 0 22px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3rem, 6.3vw, 6.5rem);
  font-weight: 500;
  letter-spacing: -.08em;
  line-height: .89;
}

.store-hero h1 em {
  color: var(--store-cyan);
  font-style: normal;
}

.store-hero-copy > p:not(.eyebrow) {
  max-width: 580px;
  color: #becadd;
  font-size: clamp(1.02rem, 1.42vw, 1.25rem);
  line-height: 1.65;
}

.store-hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 34px; }

.store-hero-note { display: inline-flex; align-items: center; gap: 8px; color: var(--store-muted); font-size: .82rem; }

.store-hero-note i { width: 7px; height: 7px; border-radius: 50%; background: var(--store-lime); box-shadow: 0 0 16px var(--store-lime); }

.store-hero-visual {
  position: relative;
  min-height: 460px;
  border: 1px solid var(--store-line);
  background: linear-gradient(145deg, rgba(18, 34, 58, .94), rgba(6, 15, 29, .6));
  overflow: hidden;
}

.store-hero-visual::before,
.store-hero-visual::after {
  content: '';
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}

.store-hero-visual::before { inset: 13% 12%; border: 1px solid rgba(98, 231, 255, .2); animation: storeOrbit 10s linear infinite reverse; }
.store-hero-visual::after { inset: 26% 26%; background: radial-gradient(circle, rgba(76, 141, 255, .28), transparent 66%); filter: blur(11px); }

.store-visual-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(154, 184, 224, .07) 1px, transparent 1px), linear-gradient(90deg, rgba(154, 184, 224, .07) 1px, transparent 1px); background-size: 42px 42px; mask-image: linear-gradient(to bottom, transparent, black 20%, black 75%, transparent); }

.store-hero-dashboard { position: absolute; z-index: 1; inset: 13% 11%; display: flex; flex-direction: column; justify-content: space-between; padding: 24px; border: 1px solid rgba(204, 222, 255, .18); background: rgba(5, 12, 24, .74); box-shadow: 22px 24px 70px rgba(0, 0, 0, .26); transform: rotate(4deg); animation: storeDashboard 7s ease-in-out infinite; }

.store-dashboard-top { display: flex; justify-content: space-between; gap: 16px; color: var(--store-muted); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.store-dashboard-top strong { color: var(--store-cyan); font-weight: 600; }

.store-dashboard-main { display: grid; gap: 15px; }
.store-dashboard-main span { color: var(--store-muted); font-size: .8rem; }
.store-dashboard-main strong { max-width: 280px; color: #f4f7ff; font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.9rem, 3.2vw, 3.2rem); font-weight: 500; letter-spacing: -.08em; line-height: .95; }

.store-dashboard-bars { display: flex; align-items: end; gap: 8px; height: 88px; }
.store-dashboard-bars i { display: block; flex: 1; min-width: 8px; height: var(--height); background: linear-gradient(to top, var(--store-blue), var(--store-cyan)); transform-origin: bottom; animation: storeBar 3.8s ease-in-out infinite alternate; }
.store-dashboard-bars i:nth-child(2n) { animation-delay: -.8s; }

.store-section { padding-top: clamp(65px, 8vw, 108px); padding-bottom: clamp(65px, 8vw, 108px); }

.store-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 34px; }
.store-section-heading h2,
.store-info-band h2,
.store-order-summary h2,
.store-account-panel h2 { margin: 10px 0 0; font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.8rem, 3.2vw, 3.2rem); font-weight: 500; letter-spacing: -.065em; line-height: .98; }
.store-section-heading > p { max-width: 420px; margin: 0; color: var(--store-muted); font-size: .99rem; line-height: 1.6; }

.store-category-nav { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 30px; }
.store-category-nav a,
.store-category-nav button { display: inline-flex; align-items: center; min-height: 42px; padding: 0 17px; border: 1px solid var(--store-line); border-radius: 999px; background: rgba(11, 22, 40, .5); color: #c9d5e8; cursor: pointer; font: inherit; font-size: .82rem; font-weight: 700; text-decoration: none; transition: color .25s ease, border-color .25s ease, background .25s ease, transform .25s ease; }
.store-category-nav a:hover,
.store-category-nav button:hover,
.store-category-nav .is-active { border-color: rgba(98, 231, 255, .66); background: rgba(34, 87, 157, .25); color: var(--store-cyan); transform: translateY(-2px); }

.store-catalog { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.store-product-card { min-width: 0; border: 1px solid var(--store-line); background: rgba(11, 22, 40, .72); transition: border-color .3s ease, transform .35s cubic-bezier(.2, .75, .25, 1), box-shadow .35s ease; animation-delay: calc(var(--card-index) * 70ms); }
.store-product-card:hover { border-color: rgba(98, 231, 255, .5); box-shadow: 0 22px 54px rgba(0, 0, 0, .24); transform: translateY(-8px); }
.store-product-card-link { display: block; height: 100%; color: inherit; text-decoration: none; }
.store-product-media { position: relative; min-height: 236px; overflow: hidden; }
.store-product-media-image { display: grid; place-items: center; padding: 20px; background: #0a1423; }
.store-product-media-image img { width: 100%; height: 100%; max-height: 196px; object-fit: contain; transition: transform .6s cubic-bezier(.2, .75, .25, 1); }
.store-product-card:hover .store-product-media-image img { transform: scale(1.05) rotate(-1deg); }
.store-media-scan { position: absolute; inset: 0; background: linear-gradient(100deg, transparent 25%, rgba(98, 231, 255, .13) 50%, transparent 75%); transform: translateX(-120%); animation: storeScan 5.8s ease-in-out infinite; }

.store-product-art { display: flex; flex-direction: column; justify-content: space-between; padding: 22px; background: radial-gradient(circle at 80% 15%, rgba(98, 231, 255, .21), transparent 30%), linear-gradient(145deg, #132947, #081221 72%); }
.store-product-art::before { content: ''; position: absolute; inset: 18px; border: 1px solid rgba(194, 225, 255, .18); transform: rotate(-5deg); }
.store-product-art::after { content: ''; position: absolute; top: 52px; right: 35px; width: 84px; height: 84px; border: 1px solid rgba(98, 231, 255, .54); border-radius: 50%; box-shadow: 0 0 30px rgba(98, 231, 255, .22); animation: storeOrbit 8s linear infinite; }
.store-product-art span { position: relative; z-index: 1; color: var(--store-cyan); font-size: .7rem; letter-spacing: .13em; text-transform: uppercase; }
.store-product-art strong { position: relative; z-index: 1; max-width: 78%; font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.55rem, 3vw, 2.25rem); font-weight: 500; letter-spacing: -.06em; line-height: .98; }
.store-product-art i { position: absolute; right: 34px; bottom: 30px; width: 24px; height: 24px; border: 1px solid var(--store-lime); transform: rotate(45deg); box-shadow: 0 0 20px rgba(193, 255, 117, .25); }
.store-product-art b { position: absolute; right: 50px; bottom: 70px; width: 5px; height: 5px; border-radius: 50%; background: var(--store-lime); box-shadow: 0 0 14px var(--store-lime); }
.store-product-art-crm { background: radial-gradient(circle at 20% 80%, rgba(193, 255, 117, .16), transparent 32%), linear-gradient(145deg, #142e32, #08141c 72%); }
.store-product-art-skill { background: radial-gradient(circle at 80% 15%, rgba(173, 114, 255, .2), transparent 34%), linear-gradient(145deg, #202247, #0b1121 72%); }
.store-product-art-code { background: radial-gradient(circle at 20% 20%, rgba(76, 141, 255, .24), transparent 30%), linear-gradient(145deg, #19253f, #0a1220 72%); }
.store-product-art-app { background: radial-gradient(circle at 78% 78%, rgba(255, 159, 96, .18), transparent 32%), linear-gradient(145deg, #30243c, #111422 72%); }

.store-product-card-body { display: flex; min-height: 238px; flex-direction: column; padding: 21px 22px 19px; }
.store-product-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; color: var(--store-cyan); font-size: .71rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.store-product-meta small { color: var(--store-muted); font-size: .64rem; letter-spacing: .04em; text-align: right; text-transform: none; }
.store-product-card h3 { margin: 25px 0 10px; font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.35rem, 2.2vw, 1.72rem); font-weight: 500; letter-spacing: -.045em; line-height: 1.04; }
.store-product-card p { margin: 0; color: var(--store-muted); font-size: .89rem; line-height: 1.55; }
.store-product-footer { display: flex; align-items: end; justify-content: space-between; gap: 16px; margin-top: auto; padding-top: 24px; }
.store-product-footer .store-product-price { display: grid; gap: 3px; color: #edf4ff; font-weight: 400; }
.store-product-footer .store-product-price strong { color: var(--store-cyan); font-size: .88rem; }
.store-product-footer .store-product-price small { color: var(--store-muted); font-size: .68rem; line-height: 1.3; }
.store-product-footer .store-product-action { color: var(--store-cyan); font-size: .76rem; font-weight: 800; }
.store-product-footer b { display: inline-block; margin-left: 4px; transition: transform .25s ease; }
.store-product-card:hover .store-product-footer b { transform: translate(3px, -3px); }

.store-search-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(250px, .38fr); gap: 14px; margin-bottom: 30px; }
.store-search-field { position: relative; }
.store-search-field input { width: 100%; min-height: 52px; padding: 0 50px 0 17px; border: 1px solid var(--store-line); border-radius: 0; outline: 0; background: rgba(9, 19, 34, .75); color: var(--store-ink); font: inherit; }
.store-search-field input:focus { border-color: var(--store-cyan); box-shadow: 0 0 0 3px rgba(98, 231, 255, .1); }
.store-search-field span { position: absolute; top: 50%; right: 17px; color: var(--store-cyan); transform: translateY(-50%); }
.store-search-label { display: grid; align-content: center; min-height: 52px; padding: 0 17px; border-left: 2px solid var(--store-cyan); color: var(--store-muted); font-size: .77rem; line-height: 1.35; }
.store-search-label strong { color: #e6effc; font-size: .92rem; font-weight: 600; }

.store-info-band { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 70px; align-items: end; border-top: 1px solid var(--store-line); border-bottom: 1px solid var(--store-line); }
.store-info-band p { max-width: 600px; margin: 0; color: var(--store-muted); font-size: 1.03rem; line-height: 1.65; }
.store-info-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 27px; }

.store-page-hero { padding-top: clamp(130px, 15vw, 180px); padding-bottom: 48px; }
.store-page-hero h1 { max-width: 750px; margin: 13px 0 17px; font-family: 'Space Grotesk', sans-serif; font-size: clamp(2.5rem, 4.8vw, 5.2rem); font-weight: 500; letter-spacing: -.08em; line-height: .9; }
.store-page-hero p:not(.eyebrow) { max-width: 560px; margin: 0; color: var(--store-muted); font-size: 1.03rem; line-height: 1.6; }
.store-page-hero .eyebrow { color: var(--store-cyan); }

.store-breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 33px; color: var(--store-muted); font-size: .78rem; }
.store-breadcrumb a { color: var(--store-cyan); text-decoration: none; }
.store-breadcrumb strong { color: #dbe8fa; font-weight: 600; }
.store-product-detail-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, .85fr); gap: clamp(35px, 7vw, 110px); align-items: start; }
.store-product-detail-visual { position: relative; min-width: 0; }
.store-product-detail-visual .store-product-media { min-height: min(580px, 52vw); }
.store-product-detail-visual .store-product-media.is-detail { border: 1px solid var(--store-line-strong); }
.store-product-media-image.is-detail { padding: clamp(25px, 5vw, 70px); }
.store-product-media-image.is-detail img { max-height: 470px; }
.store-product-gallery { margin-top: 15px; }
.store-product-gallery > span { display: block; margin-bottom: 9px; color: var(--store-muted); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.store-gallery-track { display: flex; flex-wrap: wrap; gap: 9px; }
.store-gallery-thumb { width: 68px; height: 68px; padding: 4px; border: 1px solid var(--store-line); background: rgba(9, 19, 34, .72); cursor: pointer; transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease; }
.store-gallery-thumb img { display: block; width: 100%; height: 100%; object-fit: cover; }
.store-gallery-thumb:hover, .store-gallery-thumb:focus-visible, .store-gallery-thumb.is-active { border-color: var(--store-cyan); box-shadow: 0 0 18px rgba(98, 231, 255, .16); transform: translateY(-2px); }
.store-product-art.is-detail { min-height: min(580px, 52vw); padding: clamp(30px, 5vw, 65px); }
.store-product-art.is-detail strong { max-width: 65%; font-size: clamp(2.3rem, 4.2vw, 4.8rem); }
.store-product-art.is-detail::before { inset: 30px; }
.store-product-art.is-detail::after { top: 18%; right: 16%; width: 150px; height: 150px; }
.store-product-art.is-detail i { right: 14%; bottom: 17%; width: 40px; height: 40px; }
.store-product-art.is-detail b { right: 18%; bottom: 30%; }
.store-product-detail-stamp { position: absolute; right: -14px; bottom: 25px; display: grid; gap: 6px; min-width: 150px; padding: 14px; border: 1px solid rgba(98, 231, 255, .42); background: rgba(8, 17, 30, .86); box-shadow: 0 15px 35px rgba(0, 0, 0, .25); transform: rotate(-4deg); }
.store-product-detail-stamp span { color: var(--store-cyan); font-size: .68rem; letter-spacing: .11em; text-transform: uppercase; }
.store-product-detail-stamp strong { font-size: .8rem; }
.store-product-detail-copy h1 { margin: 17px 0 20px; font-family: 'Space Grotesk', sans-serif; font-size: clamp(2.5rem, 4.2vw, 4.8rem); font-weight: 500; letter-spacing: -.08em; line-height: .91; }
.store-product-lead { max-width: 570px; color: #c3d0e3; font-size: 1.08rem; line-height: 1.65; }
.store-purchase-panel { display: grid; gap: 15px; margin-top: 30px; padding: 20px; border: 1px solid var(--store-line-strong); background: rgba(13, 28, 48, .7); }
.store-price-label { display: block; margin-bottom: 5px; color: var(--store-muted); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.store-price { color: var(--store-cyan); font-family: 'Space Grotesk', sans-serif; font-size: 1.65rem; font-weight: 500; }
.store-price-installments { font-size: 1.72rem; }
.store-price-pix { display: block; margin-top: 4px; color: var(--store-muted); font-size: .72rem; line-height: 1.35; }
.store-buy-button { justify-content: center; width: 100%; }
.store-official-sales { justify-content: center; width: 100%; }
.store-purchase-note { color: var(--store-muted); font-size: .77rem; line-height: 1.5; }
.store-payment-trust { display: flex; align-items: center; gap: 10px; padding-top: 14px; border-top: 1px solid var(--store-line); }
.store-payment-mark { display: grid; flex: 0 0 auto; place-items: center; width: 28px; height: 20px; border: 1px solid rgba(98, 231, 255, .55); border-radius: 5px; color: var(--store-cyan); font-size: .62rem; font-weight: 800; letter-spacing: .03em; }
.store-payment-trust > span:last-child { display: grid; gap: 2px; }
.store-payment-trust strong { color: #e8f5ff; font-size: .76rem; }
.store-payment-trust small { color: var(--store-muted); font-size: .68rem; line-height: 1.4; }
.store-feature-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 24px; }
.store-feature-list span { display: flex; align-items: center; gap: 9px; color: #c9d5e7; font-size: .82rem; }
.store-feature-list i { display: grid; place-items: center; width: 20px; height: 20px; border: 1px solid rgba(98, 231, 255, .43); border-radius: 50%; color: var(--store-cyan); font-style: normal; }
.store-product-info { display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; margin-top: 86px; padding-top: 30px; border-top: 1px solid var(--store-line); }
.store-product-info h2 { margin-top: 15px; font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.8rem, 3.1vw, 3.4rem); font-weight: 500; letter-spacing: -.07em; line-height: .95; }
.store-product-info p { max-width: 620px; margin: 0; color: var(--store-muted); font-size: 1.02rem; line-height: 1.7; }

.store-empty-state { position: relative; display: grid; justify-items: start; min-height: 410px; align-content: center; padding: 60px; border: 1px solid var(--store-line); overflow: hidden; }
.store-empty-state h1 { max-width: 620px; margin: 13px 0 15px; font-family: 'Space Grotesk', sans-serif; font-size: clamp(2.2rem, 4.2vw, 4.5rem); font-weight: 500; letter-spacing: -.075em; line-height: .94; }
.store-empty-state > p:not(.eyebrow) { max-width: 470px; margin: 0 0 25px; color: var(--store-muted); line-height: 1.6; }
.store-empty-orbit { position: absolute; right: 12%; width: min(280px, 38vw); aspect-ratio: 1; border: 1px solid rgba(98, 231, 255, .35); border-radius: 50%; box-shadow: 0 0 70px rgba(76, 141, 255, .13); animation: storeOrbit 12s linear infinite; }
.store-empty-orbit::after { content: ''; position: absolute; top: -4px; left: 50%; width: 8px; height: 8px; border-radius: 50%; background: var(--store-cyan); box-shadow: 0 0 16px var(--store-cyan); }
.store-empty-state .eyebrow { color: var(--store-cyan); }

.store-cart-layout { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(290px, .6fr); gap: 40px; align-items: start; }
.store-page-kicker { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 15px; color: var(--store-muted); font-size: .78rem; }
.store-page-kicker span { color: var(--store-cyan); letter-spacing: .1em; text-transform: uppercase; }
.store-cart-item { display: grid; grid-template-columns: 140px minmax(0, 1fr) auto; gap: 18px; align-items: center; padding: 16px 0; border-top: 1px solid var(--store-line); }
.store-cart-item .store-product-media { min-height: 108px; }
.store-cart-item .store-product-art { padding: 13px; }
.store-cart-item .store-product-art::before { inset: 10px; }
.store-cart-item .store-product-art strong { font-size: 1rem; }
.store-cart-item .store-product-art span { font-size: .54rem; }
.store-cart-item-copy > span { color: var(--store-cyan); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.store-cart-item-copy h2 { margin: 9px 0 6px; font-family: 'Space Grotesk', sans-serif; font-size: 1.4rem; font-weight: 500; letter-spacing: -.04em; }
.store-cart-item-copy p { margin: 0; color: var(--store-muted); font-size: .83rem; }
.store-cart-actions { display: grid; justify-items: end; gap: 12px; }
.store-quantity { display: flex; align-items: center; border: 1px solid var(--store-line); }
.store-quantity button { width: 30px; height: 30px; border: 0; background: transparent; color: var(--store-cyan); cursor: pointer; font-size: 1rem; }
.store-quantity strong { min-width: 25px; color: #edf4ff; font-size: .8rem; text-align: center; }
.store-remove { border: 0; background: transparent; color: var(--store-muted); cursor: pointer; font: inherit; font-size: .72rem; }
.store-remove:hover { color: #ff8d9b; }
.store-order-summary { position: sticky; top: 110px; padding: 25px; border: 1px solid var(--store-line-strong); background: rgba(13, 28, 48, .75); }
.store-order-summary > div { display: flex; justify-content: space-between; gap: 20px; padding: 17px 0; border-bottom: 1px solid var(--store-line); color: var(--store-muted); font-size: .85rem; }
.store-order-summary > div strong { color: #f1f6ff; }
.store-order-summary .button { width: 100%; justify-content: center; margin-top: 22px; }
.store-order-summary small { display: block; margin-top: 17px; color: var(--store-muted); font-size: .73rem; line-height: 1.5; }

.store-checkout-layout { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, .55fr); gap: 40px; align-items: start; }
.store-checkout-shell { min-width: 0; }
.checkout-progress { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 31px; }
.checkout-progress-item { display: flex; align-items: center; gap: 9px; padding-bottom: 12px; border-bottom: 1px solid var(--store-line); color: var(--store-muted); font-size: .75rem; font-weight: 700; }
.checkout-progress-item b { display: grid; place-items: center; width: 25px; height: 25px; border: 1px solid var(--store-line-strong); border-radius: 50%; font-size: .7rem; }
.checkout-progress-item.is-active { border-color: var(--store-cyan); color: var(--store-cyan); }
.checkout-progress-item.is-active b { border-color: var(--store-cyan); background: rgba(98, 231, 255, .12); }
.checkout-progress-item.is-complete { border-color: rgba(193, 255, 117, .5); color: var(--store-lime); }
.checkout-panel { padding: clamp(22px, 4vw, 39px); border: 1px solid var(--store-line-strong); background: rgba(10, 21, 37, .72); }
.checkout-panel h1 { margin: 10px 0 9px; font-family: 'Space Grotesk', sans-serif; font-size: clamp(2rem, 4vw, 4rem); font-weight: 500; letter-spacing: -.07em; line-height: .95; }
.checkout-panel > p:not(.eyebrow) { max-width: 550px; margin: 0 0 28px; color: var(--store-muted); line-height: 1.6; }
.checkout-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 17px; }
.checkout-field { display: grid; gap: 7px; }
.checkout-field-full { grid-column: 1 / -1; }
.checkout-field label { color: #cedbef; font-size: .77rem; font-weight: 700; }
.checkout-field input { width: 100%; min-height: 48px; padding: 0 13px; border: 1px solid var(--store-line); outline: 0; background: #081321; color: var(--store-ink); font: inherit; }
.checkout-field input:focus { border-color: var(--store-cyan); box-shadow: 0 0 0 3px rgba(98, 231, 255, .1); }
.checkout-field input.has-error { border-color: #ff8d9b; }
.checkout-check { display: flex; gap: 9px; align-items: start; margin-top: 18px; color: var(--store-muted); font-size: .76rem; line-height: 1.45; }
.checkout-check input { margin-top: 2px; accent-color: var(--store-cyan); }
.checkout-step-actions { display: flex; justify-content: space-between; gap: 14px; margin-top: 29px; }
.checkout-step-actions .button { min-width: 150px; justify-content: center; }
.checkout-provider { display: grid; gap: 19px; padding: 21px; border: 1px solid rgba(98, 231, 255, .25); background: rgba(24, 55, 80, .35); }
.checkout-provider-head { display: flex; justify-content: space-between; gap: 20px; }
.checkout-provider-head strong { color: #eaf6ff; }
.checkout-provider-status { display: inline-flex; align-items: center; gap: 7px; color: #ffd48a; font-size: .73rem; }
.checkout-provider-status i { width: 7px; height: 7px; border-radius: 50%; background: #ffd48a; box-shadow: 0 0 13px #ffd48a; }
.checkout-provider p { margin: 0; color: var(--store-muted); font-size: .82rem; line-height: 1.55; }
.checkout-provider code { color: var(--store-cyan); font-size: .76rem; }
.checkout-review-list { display: grid; gap: 0; border-top: 1px solid var(--store-line); }
.checkout-review-item { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--store-line); }
.checkout-review-item > div { display: flex; align-items: center; gap: 13px; min-width: 0; }
.checkout-review-item .store-product-media { flex: 0 0 60px; min-height: 60px; }
.checkout-review-item .store-product-art { padding: 8px; }
.checkout-review-item .store-product-art::before { inset: 6px; }
.checkout-review-item .store-product-art strong { font-size: .72rem; }
.checkout-review-item .store-product-art span { display: none; }
.checkout-review-item > div > span { display: grid; gap: 5px; }
.checkout-review-item strong { color: #eff6ff; font-size: .82rem; }
.checkout-review-item small { color: var(--store-muted); font-size: .73rem; }
.checkout-review-list > p { color: var(--store-muted); font-size: .85rem; }
.checkout-summary { position: sticky; top: 110px; padding: 24px; border: 1px solid var(--store-line-strong); background: rgba(13, 28, 48, .76); }
.checkout-summary h2 { margin: 10px 0 20px; font-family: 'Space Grotesk', sans-serif; font-size: 2rem; font-weight: 500; letter-spacing: -.06em; }
.checkout-summary-item, .checkout-summary-total { display: flex; justify-content: space-between; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--store-line); color: var(--store-muted); font-size: .82rem; line-height: 1.4; }
.checkout-summary-item span { max-width: 68%; }
.checkout-summary-item b { color: var(--store-cyan); font-weight: 600; }
.checkout-summary-item strong, .checkout-summary-total strong { color: #eff6ff; white-space: nowrap; }
.checkout-summary-total { margin-top: 8px; border: 0; color: #eff6ff; font-size: .95rem; }
.checkout-summary > p { color: var(--store-muted); font-size: .82rem; }
.checkout-summary > .checkout-pix-note { margin: -7px 0 0; color: var(--store-muted); font-size: .72rem; }
[data-account-note] { margin: 15px 0 0; color: var(--store-lime); font-size: .75rem; }

.store-account-guest { display: grid; justify-items: start; max-width: 720px; min-height: 450px; align-content: center; }
.store-account-mark { display: grid; place-items: center; width: 62px; height: 62px; border: 1px solid var(--store-cyan); color: var(--store-cyan); font-family: 'Space Grotesk', sans-serif; font-size: 1.05rem; letter-spacing: -.06em; box-shadow: 0 0 25px rgba(98, 231, 255, .16); }
.store-account-guest h1, .store-account-head h1 { margin: 15px 0 13px; font-family: 'Space Grotesk', sans-serif; font-size: clamp(2.3rem, 4.2vw, 4.8rem); font-weight: 500; letter-spacing: -.08em; line-height: .92; }
.store-account-guest > p:not(.eyebrow), .store-account-head p { max-width: 550px; margin: 0 0 25px; color: var(--store-muted); font-size: 1rem; line-height: 1.65; }
.store-account-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 36px; }
.store-account-head p { margin: 0; }
.store-account-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(270px, .65fr); gap: 18px; }
.store-account-panel { min-height: 230px; padding: 25px; border: 1px solid var(--store-line-strong); background: rgba(12, 25, 43, .7); }
.store-account-panel h2 { font-size: clamp(1.8rem, 3vw, 3rem); }
.store-order-row { display: flex; justify-content: space-between; gap: 20px; padding: 16px 0; border-top: 1px solid var(--store-line); color: var(--store-muted); font-size: .8rem; }
.store-order-row div { display: grid; gap: 5px; }
.store-order-row div:last-child { text-align: right; }
.store-order-row strong { color: #edf5ff; }
.store-account-muted { color: var(--store-muted); font-size: .85rem; line-height: 1.6; }
.store-account-status { display: inline-flex; gap: 8px; align-items: center; margin-top: 18px; color: var(--store-lime); font-size: .75rem; }
.store-account-status i { width: 7px; height: 7px; border-radius: 50%; background: var(--store-lime); box-shadow: 0 0 12px var(--store-lime); }
.store-account-head { flex-wrap: wrap; }
.store-account-head > div { min-width: 0; }
.store-account-head > div > p { overflow-wrap: anywhere; }
.store-account-head > [data-account-logout], .store-account-head > [data-account-edit] { flex: 0 0 auto; }
.store-account-profile { display: grid; gap: 22px; margin: 0 0 18px; padding: 24px; border: 1px solid var(--store-line-strong); background: rgba(12, 25, 43, .58); }
.store-account-profile-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.store-account-profile label { display: grid; gap: 7px; color: #cedbef; font-size: .77rem; font-weight: 700; }
.store-account-profile input { width: 100%; min-height: 48px; padding: 0 13px; border: 1px solid var(--store-line); outline: 0; background: #081321; color: var(--store-ink); font: inherit; }
.store-account-profile input:focus { border-color: var(--store-cyan); box-shadow: 0 0 0 3px rgba(98, 231, 255, .1); }
.store-account-form-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.store-account-local-note { color: var(--store-muted); font-size: .73rem; line-height: 1.5; }
.store-library-list { display: grid; gap: 0; margin-top: 18px; border-top: 1px solid var(--store-line); }
.store-library-item { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 17px 0; border-bottom: 1px solid var(--store-line); }
.store-library-item-copy { display: grid; min-width: 0; gap: 5px; }
.store-library-item-copy > strong { color: #eff6ff; font-size: .96rem; overflow-wrap: anywhere; }
.store-library-item-copy > span, .store-library-item-copy > small { color: var(--store-muted); font-size: .75rem; line-height: 1.45; overflow-wrap: anywhere; }
.store-library-item-copy > small + small { color: #b7c7d9; }
.store-download-button { flex: 0 0 auto; white-space: nowrap; }
.store-download-button.is-disabled { opacity: .5; cursor: not-allowed; }
.store-account-auth-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; max-width: 980px; }
.store-account-auth-card { min-height: 340px; }
.store-account-auth-form { display: grid; gap: 14px; margin-top: 28px; }
.store-account-auth-form label { display: grid; gap: 7px; color: var(--store-muted); font-size: .77rem; font-weight: 700; }
.store-account-auth-form input { width: 100%; min-height: 48px; padding: 0 13px; border: 1px solid var(--store-line); outline: 0; background: #081321; color: var(--store-ink); font: inherit; }
.store-account-auth-form input:focus { border-color: var(--store-cyan); box-shadow: 0 0 0 3px rgba(98, 231, 255, .1); }
.store-account-head-actions { display: flex; flex-wrap: wrap; justify-content: end; gap: 9px; }

.store-toast { position: fixed; z-index: 100; right: 22px; bottom: 25px; max-width: min(370px, calc(100vw - 44px)); padding: 14px 17px; border: 1px solid rgba(98, 231, 255, .42); background: #0d2035; box-shadow: 0 18px 50px rgba(0, 0, 0, .35); color: #eef6ff; font-size: .82rem; line-height: 1.45; opacity: 0; pointer-events: none; transform: translateY(14px); transition: opacity .25s ease, transform .25s ease; }
.store-toast.is-visible { opacity: 1; transform: translateY(0); }
.store-toast[data-tone="success"] { border-color: rgba(193, 255, 117, .52); }
.store-toast[data-tone="notice"] { border-color: rgba(255, 212, 138, .52); }
.is-disabled { opacity: .48; pointer-events: none; }

@keyframes storeOrbit { to { transform: rotate(360deg); } }
@keyframes storeFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(15px); } }
@keyframes storeDashboard { 0%, 100% { transform: rotate(4deg) translateY(0); } 50% { transform: rotate(2deg) translateY(-9px); } }
@keyframes storeBar { from { transform: scaleY(.78); } to { transform: scaleY(1); } }
@keyframes storeScan { 0%, 45% { transform: translateX(-120%); } 65%, 100% { transform: translateX(120%); } }

@media (max-width: 1050px) {
  .store-page .desktop-nav { display: none; }
  .store-hero { grid-template-columns: minmax(0, 1fr) minmax(300px, .75fr); gap: 45px; }
  .store-catalog { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .store-page .header-actions .store-link { display: none; }
  .store-page .header-actions .store-account-link,
  .store-page .header-actions .store-cart-link { display: none; }
  .store-page .brand-logo { width: 155px; }
  .store-hero { display: block; min-height: 0; padding-top: 130px; }
  .store-hero::before { left: 20%; width: 95vw; }
  .store-hero h1 { max-width: 620px; font-size: clamp(2.9rem, 13vw, 5.2rem); }
  .store-hero-visual { min-height: 370px; margin-top: 48px; }
  .store-section-heading, .store-info-band, .store-product-info, .store-cart-layout, .store-checkout-layout, .store-account-grid { grid-template-columns: 1fr; display: grid; gap: 26px; }
  .store-section-heading { align-items: start; }
  .store-section-heading h2 { font-size: clamp(2rem, 8vw, 3.2rem); }
  .store-search-row { grid-template-columns: 1fr; }
  .store-catalog { grid-template-columns: 1fr; }
  .store-product-media { min-height: 250px; }
  .store-info-band { gap: 24px; }
  .store-product-detail-grid { grid-template-columns: 1fr; gap: 36px; }
  .store-product-detail-visual .store-product-media, .store-product-art.is-detail { min-height: 380px; }
  .store-product-detail-copy h1 { font-size: clamp(2.2rem, 10.5vw, 3.7rem); }
  .store-product-info { margin-top: 58px; }
  .store-empty-state { min-height: 390px; padding: 30px; }
  .store-empty-orbit { right: -10%; width: 240px; opacity: .6; }
  .store-cart-item { grid-template-columns: 96px minmax(0, 1fr); }
  .store-cart-item .store-product-media { min-height: 88px; }
  .store-cart-actions { grid-column: 2; display: flex; align-items: center; justify-content: space-between; }
  .store-order-summary, .checkout-summary { position: static; }
  .checkout-form-grid { grid-template-columns: 1fr; }
  .checkout-field-full { grid-column: auto; }
  .checkout-progress-item { display: grid; justify-items: start; gap: 6px; font-size: .67rem; }
  .checkout-step-actions { flex-direction: column-reverse; }
  .checkout-step-actions .button { width: 100%; }
  .store-account-head { align-items: start; flex-direction: column; }
  .store-account-head-actions { justify-content: start; }
  .store-account-auth-grid { grid-template-columns: 1fr; }
  .store-account-auth-card { min-height: 0; }
  .store-account-profile-grid { grid-template-columns: 1fr; }
  .store-library-item { align-items: stretch; flex-direction: column; gap: 14px; }
  .store-download-button { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .store-page *, .store-page *::before, .store-page *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
