:root {
  --red: #E8001A;
  --red-glow: #FF2235;
  --black: #080808;
  --black-2: #111111;
  --black-3: #181818;
  --white: #F5F0EB;
  --white-dim: #C8C0B8;
  --gold: #FFD166;
  --gray: #2A2A2A;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--white); font-family: var(--font-body); font-size: 15px; line-height: 1.6; overflow-x: hidden; cursor: none; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; border: none; background: none; cursor: none; }
ul { list-style: none; }

/* CURSOR */
.er-cursor { width: 12px; height: 12px; background: var(--red); border-radius: 50%; position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); transition: width .3s, height .3s; }
.er-cursor-ring { width: 36px; height: 36px; border: 1px solid rgba(232,0,26,.5); border-radius: 50%; position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9998; transform: translate(-50%,-50%); transition: width .3s, height .3s; }
.er-cursor.hover { width: 20px; height: 20px; }
.er-cursor-ring.hover { width: 50px; height: 50px; }

/* LAYOUT */
.er-container { width: 100%; max-width: 1600px; margin: 0 auto; padding: 0 80px; }
@media (max-width: 1200px) { .er-container { padding: 0 40px; } }
@media (max-width: 768px) { .er-container { padding: 0 24px; } }

/* NAV */
.er-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 500; height: 72px; display: flex; align-items: center; justify-content: space-between; padding: 0 80px; background: rgba(8,8,8,.9); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(232,0,26,.1); }
@media (max-width: 1024px) { .er-nav { padding: 0 24px; } }
.er-nav__logo { display: flex; align-items: center; gap: 12px; }
.er-nav__logo-mark { width: 36px; height: 36px; background: var(--red); border-radius: 50%; position: relative; flex-shrink: 0; box-shadow: 0 0 20px rgba(232,0,26,.4); }
.er-nav__logo-mark::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 36px; height: 2px; background: var(--black); }
.er-nav__logo-mark::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 12px; height: 12px; background: var(--black); border-radius: 50%; z-index: 1; }
.er-nav__logo-text { font-family: var(--font-display); font-size: 22px; letter-spacing: .08em; }
.er-nav__logo-text span { color: var(--red); }
.er-nav__links { display: flex; align-items: center; gap: 40px; }
.er-nav__links a { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--white-dim); position: relative; transition: color .2s; }
.er-nav__links a::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 1px; background: var(--red); transform: scaleX(0); transition: transform .3s; transform-origin: left; }
.er-nav__links a:hover { color: var(--white); }
.er-nav__links a:hover::after { transform: scaleX(1); }
.er-nav__actions { display: flex; align-items: center; gap: 12px; }
.er-nav__cart-btn { width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; transition: border-color .2s, background .2s; position: relative; }
.er-nav__cart-btn:hover { border-color: var(--red); background: rgba(232,0,26,.08); }
.er-nav__cart-btn svg { width: 18px; height: 18px; }
.er-nav__cart-count { position: absolute; top: -4px; right: -4px; min-width: 18px; height: 18px; background: var(--red); border-radius: 9px; font-family: var(--font-mono); font-size: 9px; display: flex; align-items: center; justify-content: center; padding: 0 4px; }
@media (max-width: 1024px) { .er-nav__links { display: none; } }

/* HERO */
.er-hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; position: relative; overflow: hidden; padding-top: 72px; }
@media (max-width: 1024px) { .er-hero { grid-template-columns: 1fr; } }
.er-hero__bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 100% 50%, rgba(232,0,26,.07) 0%, transparent 70%), radial-gradient(ellipse 40% 60% at 0% 80%, rgba(168,0,18,.05) 0%, transparent 60%); pointer-events: none; }
.er-hero__grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(232,0,26,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(232,0,26,.04) 1px, transparent 1px); background-size: 80px 80px; mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%); pointer-events: none; }
.er-hero__left { display: flex; flex-direction: column; justify-content: center; padding: 80px 48px 80px 80px; position: relative; z-index: 2; }
@media (max-width: 1024px) { .er-hero__left { padding: 80px 40px; } }
.er-hero__eyebrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--red); margin-bottom: 24px; display: flex; align-items: center; gap: 12px; animation: slideUp .8s var(--ease) .2s both; }
.er-hero__eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--red); }
.er-hero__title { font-family: var(--font-display); font-size: clamp(72px, 8vw, 120px); line-height: .9; letter-spacing: .02em; margin-bottom: 32px; }
.er-hero__title .line-1 { display: block; color: var(--white); animation: slideUp .8s var(--ease) .35s both; }
.er-hero__title .line-2 { display: block; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.25); animation: slideUp .8s var(--ease) .45s both; }
.er-hero__title .line-3 { display: block; color: var(--red); text-shadow: 0 0 60px rgba(232,0,26,.5); animation: slideUp .8s var(--ease) .55s both; }
.er-hero__desc { font-size: 16px; line-height: 1.7; font-weight: 300; color: var(--white-dim); max-width: 440px; margin-bottom: 48px; animation: slideUp .8s var(--ease) .65s both; }

/* SEARCH */
.er-hero__search { position: relative; max-width: 520px; animation: slideUp .8s var(--ease) .75s both; }
.er-search__wrap { display: flex; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: 4px; overflow: hidden; transition: border-color .3s, box-shadow .3s; }
.er-search__wrap:focus-within { border-color: var(--red); box-shadow: 0 0 0 3px rgba(232,0,26,.1); }
.er-search__input { flex: 1; background: transparent; border: none; outline: none; padding: 16px 20px; font-family: var(--font-body); font-size: 15px; color: var(--white); }
.er-search__input::placeholder { color: rgba(255,255,255,.3); }
.er-search__btn { padding: 16px 28px; background: var(--red); font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--white); display: flex; align-items: center; gap: 8px; transition: background .2s; flex-shrink: 0; }
.er-search__btn:hover { background: var(--red-glow); }
.er-search__btn svg { width: 14px; height: 14px; }
.er-search__tags { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.er-search__tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--white-dim); padding: 4px 10px; border: 1px solid rgba(255,255,255,.1); border-radius: 2px; transition: all .2s; background: transparent; }
.er-search__tag:hover { border-color: var(--red); color: var(--red); }
.er-search__results { position: absolute; top: calc(100% + 8px); left: 0; right: 0; background: var(--black-2); border: 1px solid rgba(255,255,255,.1); border-radius: 4px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.8); display: none; z-index: 100; }
.er-search__results.visible { display: block; }
.er-search__result { display: flex; align-items: center; gap: 14px; padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,.04); transition: background .15s; text-decoration: none; }
.er-search__result:last-child { border-bottom: none; }
.er-search__result:hover { background: rgba(232,0,26,.06); }
.er-search__result-img { width: 40px; height: 56px; background: var(--black-3); border-radius: 4px; overflow: hidden; flex-shrink: 0; }
.er-search__result-img img { width: 100%; height: 100%; object-fit: cover; }
.er-search__result-name { font-family: var(--font-display); font-size: 15px; color: var(--white); }
.er-search__result-meta { font-family: var(--font-mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.3); }
.er-search__result-price { font-family: var(--font-display); font-size: 18px; color: var(--white); margin-left: auto; }
.er-search__result-dot { width: 6px; height: 6px; border-radius: 50%; background: #00c864; flex-shrink: 0; }
.er-search__result-dot.out { background: var(--gray); }
.er-search__no-results { padding: 24px; text-align: center; font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,.3); text-transform: uppercase; }

/* STATS */
.er-hero__stats { display: flex; gap: 40px; margin-top: 56px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,.06); animation: slideUp .8s var(--ease) .85s both; }
.er-hero__stat-num { font-family: var(--font-display); font-size: 36px; color: var(--white); display: block; }
.er-hero__stat-num span { color: var(--red); }
.er-hero__stat-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--white-dim); }

/* HERO RIGHT */
.er-hero__right { display: flex; align-items: center; justify-content: center; position: relative; z-index: 2; padding: 80px 80px 80px 48px; }
@media (max-width: 1024px) { .er-hero__right { display: none; } }
.er-showcase { position: relative; width: 360px; height: 500px; }
.er-showcase__card { position: absolute; width: 210px; aspect-ratio: 63/88; border-radius: 12px; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,.8), 0 0 0 1px rgba(255,255,255,.08); transition: transform .5s var(--ease); }
.er-showcase__card:hover { z-index: 10 !important; box-shadow: 0 40px 100px rgba(0,0,0,.9), 0 0 40px rgba(232,0,26,.1); }
.er-showcase__card--1 { top: 0; left: 0; transform: rotate(-8deg); z-index: 1; animation: cardReveal 1s var(--ease) .4s both; }
.er-showcase__card--2 { top: 60px; left: 80px; transform: rotate(2deg); z-index: 2; animation: cardReveal 1s var(--ease) .6s both; }
.er-showcase__card--3 { top: 130px; left: 150px; transform: rotate(10deg); z-index: 3; animation: cardReveal 1s var(--ease) .8s both; }
.er-card-visual { width: 100%; height: 100%; display: flex; flex-direction: column; padding: 14px 12px; position: relative; overflow: hidden; }
.er-card-visual::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,.12) 0%, transparent 50%); pointer-events: none; z-index: 1; }
.er-card-visual__holo { position: absolute; inset: 0; background: linear-gradient(105deg, transparent 40%, rgba(255,209,102,.2) 50%, transparent 60%); animation: holo 3s ease-in-out infinite; }
.er-card-visual__name { font-family: var(--font-display); font-size: 13px; letter-spacing: .08em; color: rgba(255,255,255,.9); position: relative; z-index: 2; }
.er-card-visual__set { font-family: var(--font-mono); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); position: relative; z-index: 2; }
.er-card-visual__art { flex: 1; margin: 10px 0; background: rgba(0,0,0,.3); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 52px; position: relative; overflow: hidden; }
.er-card-visual__art img { width: 100%; height: 100%; object-fit: cover; }
.er-card-visual__footer { display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 2; }
.er-card-visual__hp { font-family: var(--font-mono); font-size: 9px; color: rgba(255,255,255,.5); }
.er-card-visual__rarity { display: flex; gap: 2px; }
.er-card-visual__rarity span { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }
.er-card-badge { position: absolute; top: -10px; right: -10px; background: var(--red); color: white; font-family: var(--font-mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; padding: 4px 10px; border-radius: 2px; box-shadow: 0 0 20px rgba(232,0,26,.5); z-index: 10; }

/* HERO SCROLL */
.er-hero__scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2; animation: bounce 2s ease-in-out infinite; }
.er-hero__scroll span { font-family: var(--font-mono); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.3); }
.er-hero__scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(232,0,26,.6), transparent); }

/* MARQUEE */
.er-marquee { border-top: 1px solid rgba(255,255,255,.05); border-bottom: 1px solid rgba(255,255,255,.05); padding: 16px 0; overflow: hidden; background: rgba(232,0,26,.03); }
.er-marquee__track { display: flex; width: max-content; animation: marquee 35s linear infinite; }
.er-marquee__item { font-family: var(--font-mono); font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.25); padding: 0 32px; white-space: nowrap; display: flex; align-items: center; gap: 32px; }
.er-marquee__dot { width: 4px; height: 4px; background: var(--red); border-radius: 50%; opacity: .6; }

/* SECTIONS */
.er-section { padding: 100px 0; }
.er-section--border { border-top: 1px solid rgba(255,255,255,.04); }
.er-section__header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; }
.er-section__label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--red); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.er-section__label::before { content: ''; width: 24px; height: 1px; background: var(--red); }
.er-section__title { font-family: var(--font-display); font-size: clamp(36px, 4vw, 56px); line-height: 1; letter-spacing: .02em; }
.er-section__link { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--white-dim); display: flex; align-items: center; gap: 8px; padding-bottom: 4px; border-bottom: 1px solid rgba(255,255,255,.15); transition: color .2s, border-color .2s; white-space: nowrap; }
.er-section__link:hover { color: var(--red); border-color: var(--red); }
.er-section__link svg { width: 12px; height: 12px; }

/* FILTERS */
.er-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 48px; }
.er-filter { font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; padding: 8px 18px; border: 1px solid rgba(255,255,255,.1); color: var(--white-dim); border-radius: 2px; transition: all .2s; background: transparent; }
.er-filter:hover, .er-filter.is-active { background: var(--red); border-color: var(--red); color: var(--white); box-shadow: 0 0 20px rgba(232,0,26,.25); }

/* CARD GRID */
.er-card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 24px; }
@media (max-width: 640px) { .er-card-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

/* PRODUCT CARD */
.er-product-card { position: relative; }
.er-product-card__inner { background: var(--black-2); border: 1px solid rgba(255,255,255,.06); border-radius: 8px; overflow: hidden; transition: border-color .3s, box-shadow .3s; }
.er-product-card:hover .er-product-card__inner { border-color: rgba(232,0,26,.35); box-shadow: 0 20px 60px rgba(0,0,0,.6); }
.er-product-card__img { aspect-ratio: 63/88; position: relative; overflow: hidden; background: var(--black-3); display: flex; align-items: center; justify-content: center; }
.er-product-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.er-product-card:hover .er-product-card__img img { transform: scale(1.04); }
.er-product-card__img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,.7) 100%); z-index: 1; }
.er-product-card__emoji { font-size: 52px; }
.er-product-card__shimmer { position: absolute; inset: 0; z-index: 2; background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.07) 50%, transparent 70%); transform: translateX(-100%); pointer-events: none; }
.er-product-card:hover .er-product-card__shimmer { transform: translateX(100%); transition: transform .6s ease; }
.er-product-card__status { position: absolute; top: 10px; left: 10px; z-index: 3; font-family: var(--font-mono); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; padding: 3px 8px; border-radius: 2px; }
.er-product-card__status--available { background: rgba(0,200,100,.15); color: #00c864; border: 1px solid rgba(0,200,100,.3); }
.er-product-card__status--sold-out { background: rgba(255,255,255,.06); color: rgba(255,255,255,.3); border: 1px solid rgba(255,255,255,.1); }
.er-product-card__status--rare { background: rgba(255,209,102,.15); color: var(--gold); border: 1px solid rgba(255,209,102,.3); }
.er-product-card.is-sold-out .er-product-card__inner { opacity: .55; }
.er-product-card__info { padding: 14px; }
.er-product-card__name { font-family: var(--font-display); font-size: 17px; letter-spacing: .04em; color: var(--white); margin-bottom: 2px; }
.er-product-card__set { font-family: var(--font-mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 10px; }
.er-product-card__meta { display: flex; align-items: center; gap: 6px; margin-bottom: 12px; }
.er-type-badge { font-family: var(--font-mono); font-size: 8px; letter-spacing: .06em; padding: 2px 7px; border-radius: 2px; text-transform: uppercase; }
.er-type-badge--fire { background: rgba(255,80,0,.2); color: #ff6030; border: 1px solid rgba(255,80,0,.3); }
.er-type-badge--water { background: rgba(40,140,255,.2); color: #5ab0ff; border: 1px solid rgba(40,140,255,.3); }
.er-type-badge--psychic { background: rgba(200,40,200,.2); color: #e060e0; border: 1px solid rgba(200,40,200,.3); }
.er-type-badge--electric { background: rgba(255,200,0,.2); color: #ffd020; border: 1px solid rgba(255,200,0,.3); }
.er-type-badge--grass { background: rgba(40,200,80,.2); color: #40d060; border: 1px solid rgba(40,200,80,.3); }
.er-type-badge--dragon { background: rgba(100,40,255,.2); color: #8060ff; border: 1px solid rgba(100,40,255,.3); }
.er-type-badge--colorless { background: rgba(200,190,180,.15); color: var(--white-dim); border: 1px solid rgba(200,190,180,.2); }
.er-rarity-dots { display: flex; gap: 2px; margin-left: auto; }
.er-rarity-dots span { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); opacity: .2; }
.er-rarity-dots span.on { opacity: 1; }
.er-product-card__bottom { display: flex; align-items: center; justify-content: space-between; }
.er-product-card__price { font-family: var(--font-display); font-size: 22px; color: var(--white); }
.er-product-card__price .currency { font-family: var(--font-mono); font-size: 11px; color: var(--white-dim); vertical-align: top; margin-top: 3px; display: inline-block; }
.er-product-card__price.out-of-stock { color: rgba(255,255,255,.3); }

/* BUTTONS */
.er-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .15em; text-transform: uppercase; border-radius: 4px; padding: 16px 28px; transition: all .2s var(--ease); cursor: none; }
.er-btn--primary { background: var(--red); color: var(--white); }
.er-btn--primary:hover { background: var(--red-glow); box-shadow: 0 0 30px rgba(232,0,26,.35); transform: translateY(-1px); }
.er-btn--secondary { background: transparent; color: var(--white-dim); border: 1px solid rgba(255,255,255,.12); }
.er-btn--secondary:hover { border-color: var(--white-dim); color: var(--white); }
.er-btn--icon { width: 36px; height: 36px; border-radius: 50%; padding: 0; background: var(--red); }
.er-btn--icon:hover { transform: scale(1.1); box-shadow: 0 0 20px rgba(232,0,26,.5); }
.er-btn--icon svg { width: 14px; height: 14px; }

/* SETS */
.er-sets-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
@media (max-width: 640px) { .er-sets-grid { grid-template-columns: 1fr 1fr; } }
.er-set-card { background: var(--black-2); border: 1px solid rgba(255,255,255,.06); border-radius: 8px; padding: 28px 24px; position: relative; overflow: hidden; transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; cursor: none; display: block; }
.er-set-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--red); transform: scaleX(0); transition: transform .3s; }
.er-set-card:hover { transform: translateY(-4px); border-color: rgba(232,0,26,.2); box-shadow: 0 20px 40px rgba(0,0,0,.5); }
.er-set-card:hover::before { transform: scaleX(1); }
.er-set-card__name { font-family: var(--font-display); font-size: 22px; letter-spacing: .04em; color: var(--white); margin-bottom: 4px; }
.er-set-card__count { font-size: 13px; color: var(--white-dim); font-weight: 300; margin-bottom: 20px; }
.er-set-card__footer { display: flex; align-items: center; justify-content: space-between; font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em; color: rgba(255,255,255,.3); }
.er-set-card__available { color: var(--red); font-size: 13px; }

/* FOOTER */
.er-footer { border-top: 1px solid rgba(255,255,255,.05); padding: 80px 0 40px; background: var(--black-2); }
.er-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 80px; margin-bottom: 64px; }
@media (max-width: 768px) { .er-footer__grid { grid-template-columns: 1fr; gap: 32px; } }
.er-footer__desc { font-size: 14px; color: var(--white-dim); font-weight: 300; line-height: 1.8; margin: 16px 0 0; max-width: 280px; }
.er-footer__col-title { font-family: var(--font-mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--white); margin-bottom: 24px; }
.er-footer__links { display: flex; flex-direction: column; gap: 12px; }
.er-footer__links a { font-size: 14px; color: var(--white-dim); font-weight: 300; transition: color .2s; }
.er-footer__links a:hover { color: var(--red); }
.er-footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.05); flex-wrap: wrap; gap: 16px; }
.er-footer__copy { font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em; color: rgba(255,255,255,.2); }
.er-footer__disclaimer { font-family: var(--font-mono); font-size: 9px; color: rgba(255,255,255,.15); max-width: 400px; text-align: right; line-height: 1.5; }

/* SCROLL ANIMATIONS */
.er-fade { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s var(--ease); }
.er-fade.visible { opacity: 1; transform: translateY(0); }
.er-fade--d1 { transition-delay: .1s; }
.er-fade--d2 { transition-delay: .2s; }
.er-fade--d3 { transition-delay: .3s; }
.er-fade--d4 { transition-delay: .4s; }
.er-fade--d5 { transition-delay: .5s; }

/* MISC */
.er-empty { grid-column: 1/-1; text-align: center; padding: 60px 0; color: rgba(255,255,255,.3); font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.woocommerce-message { background: rgba(0,200,100,.08); border: 1px solid rgba(0,200,100,.2); border-radius: 6px; padding: 16px 20px; font-family: var(--font-mono); font-size: 11px; color: #00c864; margin-bottom: 24px; list-style: none; }
.woocommerce-error { background: rgba(232,0,26,.08); border: 1px solid rgba(232,0,26,.2); border-radius: 6px; padding: 16px 20px; font-family: var(--font-mono); font-size: 11px; color: var(--red); margin-bottom: 24px; list-style: none; }

/* KEYFRAMES */
@keyframes slideUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes cardReveal { from { opacity: 0; transform: translateY(60px) scale(.9); } to { opacity: 1; } }
@keyframes holo { 0%,100% { opacity: 0; transform: translateX(-100%); } 50% { opacity: 1; transform: translateX(100%); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
