:root {
  --white:      #F8FAFC;
  --surface:    #F2F5F9;
  --surface-2:  #E4EAF2;
  --border:     #D6E2ED;
  --border-2:   #A8C4BE;
  --blue:       #7FA0B5;
  --blue-dark:  #5F85A0;
  --blue-light: #DCE8F0;
  --blue-mid:   #8FB0C4;
  --navy:       #1B2B4B;
  --navy-mid:   #263C5C;
  --cream:      #F2F5F9;
  --gold:       #CA8A04;
  --gold-light: #E8D5B8;
  --red:        #DC2626;
  --green:      #16A34A;
  --amber:      #D97706;
  --text:       #1A2332;
  --text-2:     #2D3F55;
  --text-3:     #5C7085;
  --text-4:     #92A8BC;
  --shadow-xs:  0 1px 3px rgba(15,26,46,.06);
  --shadow-sm:  0 4px 6px rgba(15,26,46,.04);
  --shadow-md:  0 10px 25px rgba(15,26,46,.08);
  --shadow-lg:  0 20px 40px rgba(15,26,46,.10);
  --r-sm: 6px; --r-md: 10px; --r-lg: 16px; --r-xl: 22px; --r-2xl: 28px;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
body { font-family:'Inter',sans-serif; background:var(--surface); color:var(--text); overflow-x:hidden; -webkit-font-smoothing:antialiased; }

/* ── ANNOUNCE ── */
.announce { background:var(--navy); color:rgba(255,255,255,.85); text-align:center; font-size:12.5px; font-weight:500; padding:9px 20px; letter-spacing:.2px; }
.announce a { color:var(--gold-light); text-decoration:none; font-weight:600; }

/* ── HEADER ── */
header { position:sticky; top:0; z-index:1000; background:rgba(255,255,255,.97); backdrop-filter:blur(12px); border-bottom:1px solid var(--border); }
.nav-main { display:flex; align-items:center; gap:24px; padding:0 48px; height:64px; max-width:1440px; margin:0 auto; }
.logo { display:flex; align-items:center; gap:10px; text-decoration:none; flex-shrink:0; }
.logo-mark { width:36px; height:36px; background:var(--navy); border-radius:8px; display:flex; align-items:center; justify-content:center; color:#fff; font-weight:800; font-size:12px; letter-spacing:-.5px; }
.logo-name { font-size:18px; font-weight:800; letter-spacing:-.6px; color:var(--navy); }
.logo-name span { font-weight:400; color:var(--text-3); }

.nav-links { display:flex; align-items:center; gap:2px; list-style:none; margin-right:auto; }
.nav-links a { padding:6px 12px; border-radius:var(--r-sm); font-size:13.5px; font-weight:500; color:var(--text-2); text-decoration:none; transition:.15s; white-space:nowrap; }
.nav-links a:hover { background:var(--surface); color:var(--text); }
.nav-links .has-drop { position:relative; }
.nav-links .has-drop > a::after { content:' ↓'; font-size:10px; }
.drop-menu { position:absolute; top:calc(100% + 8px); left:0; background:var(--white); border:1px solid var(--border); border-radius:var(--r-lg); padding:6px; min-width:210px; box-shadow:var(--shadow-lg); opacity:0; pointer-events:none; transform:translateY(-6px); transition:all .15s; }
.nav-links .has-drop:hover .drop-menu { opacity:1; pointer-events:all; transform:translateY(0); }
.drop-menu a { display:block; padding:8px 12px; border-radius:var(--r-sm); font-size:13px; font-weight:500; color:var(--text-2); text-decoration:none; transition:.12s; }
.drop-menu a:hover { background:var(--surface); color:var(--text); }

.search-wrap { flex:1; max-width:420px; position:relative; }
.search-wrap input { width:100%; padding:9px 16px 9px 40px; border:1.5px solid var(--border); border-radius:50px; background:var(--surface); font-family:'Inter',sans-serif; font-size:13px; color:var(--text); outline:none; transition:.15s; }
.search-wrap input:focus { background:var(--white); border-color:var(--blue-mid); box-shadow:0 0 0 3px rgba(59,130,246,.1); }
.search-wrap input::placeholder { color:var(--text-4); }
.search-ico { position:absolute; left:13px; top:50%; transform:translateY(-50%); color:var(--text-4); pointer-events:none; }

.nav-end { display:flex; align-items:center; gap:6px; }
.icon-btn { width:38px; height:38px; background:none; border:none; cursor:pointer; border-radius:var(--r-sm); color:var(--text-2); display:flex; align-items:center; justify-content:center; transition:.15s; position:relative; text-decoration:none; }
.icon-btn:hover { background:var(--surface); color:var(--text); }
.cart-badge { position:absolute; top:4px; right:4px; background:var(--blue); color:#fff; font-size:9.5px; font-weight:700; width:16px; height:16px; border-radius:50%; display:none; align-items:center; justify-content:center; font-family:'Inter',sans-serif; }
.btn-signin { height:36px; padding:0 18px; background:var(--navy); color:#fff; border:none; border-radius:var(--r-sm); font-family:'Inter',sans-serif; font-size:13px; font-weight:600; cursor:pointer; transition:.15s; white-space:nowrap; text-decoration:none; display:flex; align-items:center; }
.btn-signin:hover { background:var(--navy-mid); }
.user-chip { display:flex; align-items:center; gap:8px; padding:5px 12px; background:var(--surface); border-radius:50px; text-decoration:none; color:var(--text-2); font-size:13px; font-weight:500; transition:.15s; }
.user-chip:hover { background:var(--surface-2); }
.user-avatar { width:26px; height:26px; background:var(--navy); border-radius:50%; display:flex; align-items:center; justify-content:center; color:#fff; font-size:11px; font-weight:700; }

/* ── HERO ── */
.hero { background:var(--navy); position:relative; overflow:hidden; }
.hero-inner { max-width:1440px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; min-height:480px; }
.hero-left { padding:80px 64px; display:flex; flex-direction:column; justify-content:center; position:relative; z-index:1; }
.hero::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 70% 50%, rgba(37,99,235,.2) 0%, transparent 65%); }
.hero-eyebrow { font-size:11px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:var(--gold-light); margin-bottom:18px; display:block; }
.hero h1 { font-size:clamp(34px,4vw,54px); font-weight:800; color:#fff; line-height:1.1; letter-spacing:-.5px; margin-bottom:18px; }
.hero h1 em { font-style:normal; color:var(--gold-light); }
.hero-sub { font-size:15px; color:rgba(255,255,255,.65); line-height:1.75; max-width:420px; margin-bottom:36px; }
.hero-ctas { display:flex; gap:10px; flex-wrap:wrap; }
.hero-stats { display:flex; gap:36px; margin-top:52px; padding-top:36px; border-top:1px solid rgba(255,255,255,.1); }
.hero-stat-n { font-size:24px; font-weight:800; color:#fff; }
.hero-stat-l { font-size:11.5px; color:rgba(255,255,255,.5); margin-top:2px; font-weight:500; }
.hero-right { padding:40px 48px 40px 24px; display:flex; align-items:center; }
.hero-carousel { position:relative; width:100%; height:360px; border-radius:var(--r-xl); overflow:hidden; box-shadow:0 24px 60px rgba(0,0,0,.35); }
.hero-slide { position:absolute; inset:0; opacity:0; transition:opacity .8s ease; display:flex; align-items:flex-end; padding:24px; }
.hero-slide.active { opacity:1; }
.hero-slide-label { font-size:13px; font-weight:700; letter-spacing:.5px; color:rgba(255,255,255,.85); background:rgba(0,0,0,.25); padding:5px 12px; border-radius:99px; backdrop-filter:blur(4px); }
.hero-carousel-dots { position:absolute; bottom:14px; left:50%; transform:translateX(-50%); display:flex; gap:6px; }
.hero-dot { width:7px; height:7px; border-radius:50%; border:none; background:rgba(255,255,255,.4); cursor:pointer; padding:0; transition:.2s; }
.hero-dot.active { background:var(--white); transform:scale(1.2); }

/* ── BUTTONS ── */
.btn-primary { height:44px; padding:0 24px; background:var(--blue); color:#fff; border:none; border-radius:var(--r-md); font-family:'Inter',sans-serif; font-size:14px; font-weight:600; cursor:pointer; transition:.15s; text-decoration:none; display:inline-flex; align-items:center; gap:6px; }
.btn-primary:hover { background:var(--blue-dark); box-shadow:0 4px 14px rgba(37,99,235,.35); transform:translateY(-1px); }
.btn-outline { height:44px; padding:0 22px; background:transparent; color:rgba(255,255,255,.8); border:1.5px solid rgba(255,255,255,.25); border-radius:var(--r-md); font-family:'Inter',sans-serif; font-size:14px; font-weight:500; cursor:pointer; transition:.15s; text-decoration:none; display:inline-flex; align-items:center; gap:6px; }
.btn-outline:hover { border-color:rgba(255,255,255,.55); color:#fff; background:rgba(255,255,255,.06); }
.btn-navy { height:44px; padding:0 24px; background:var(--navy); color:#fff; border:none; border-radius:var(--r-md); font-family:'Inter',sans-serif; font-size:14px; font-weight:600; cursor:pointer; transition:.15s; display:inline-flex; align-items:center; gap:6px; }
.btn-navy:hover { background:var(--navy-mid); }
.btn-sm { height:38px; padding:0 18px; background:var(--navy); color:#fff; border:none; border-radius:var(--r-sm); font-family:'Inter',sans-serif; font-size:13px; font-weight:600; cursor:pointer; transition:.15s; }
.btn-sm:hover { background:var(--navy-mid); }
.btn-ghost { height:38px; padding:0 18px; background:transparent; color:var(--text-2); border:1.5px solid var(--border); border-radius:var(--r-sm); font-family:'Inter',sans-serif; font-size:13px; font-weight:500; cursor:pointer; transition:.15s; }
.btn-ghost:hover { border-color:var(--blue); color:var(--blue); }

/* ── SECTION ── */
.section { padding:80px 48px; max-width:1440px; margin:0 auto; }
.section-sm { padding:60px 48px; max-width:1440px; margin:0 auto; }
.section-hd { margin-bottom:36px; }
.section-hd.row { display:flex; align-items:flex-end; justify-content:space-between; }
.section-label { font-size:11px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:var(--blue); margin-bottom:8px; }
.section-title { font-size:28px; font-weight:800; letter-spacing:-.4px; line-height:1.2; }
.section-title em { font-style:normal; color:var(--blue); }
.section-desc { font-size:14px; color:var(--text-3); margin-top:6px; line-height:1.65; }
.link-all { font-size:13px; font-weight:600; color:var(--blue); text-decoration:none; display:flex; align-items:center; gap:4px; white-space:nowrap; transition:gap .15s; }
.link-all:hover { gap:8px; }

/* ── GAME TILES ── */
.game-grid { display:grid; grid-template-columns:repeat(8,1fr); gap:12px; }
.game-tile { display:flex; flex-direction:column; align-items:center; gap:10px; padding:20px 12px; border-radius:var(--r-lg); border:1.5px solid var(--border); background:var(--white); text-decoration:none; cursor:pointer; transition:.2s; }
.game-tile:hover { border-color:var(--blue-mid); box-shadow:var(--shadow-md); transform:translateY(-3px); }
.game-tile-art { width:96px; height:96px; border-radius:14px; overflow:hidden; flex-shrink:0; background:#ddd; }
.game-tile-art img { width:100%; height:100%; object-fit:cover; display:block; }
.game-tile-name { font-size:12px; font-weight:700; color:var(--text); text-align:center; }
.game-tile-sub  { font-size:10.5px; color:var(--text-4); text-align:center; line-height:1.4; }

/* ── WHY US ── */
.why-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.why-card { padding:28px 24px; border-radius:var(--r-xl); border:1.5px solid var(--border); background:var(--white); transition:.2s; }
.why-card:hover { box-shadow:var(--shadow-md); border-color:var(--blue-light); }
.why-icon { width:44px; height:44px; border-radius:10px; background:var(--blue-light); display:flex; align-items:center; justify-content:center; margin-bottom:16px; }
.why-title { font-size:15px; font-weight:700; margin-bottom:6px; }
.why-desc  { font-size:13px; color:var(--text-3); line-height:1.65; }

/* ── FILTER TABS ── */
.ftabs { display:flex; gap:6px; flex-wrap:wrap; margin-bottom:24px; }
.ftab { height:34px; padding:0 16px; border-radius:50px; font-size:13px; font-weight:500; border:1.5px solid var(--border); background:var(--white); color:var(--text-2); cursor:pointer; transition:.15s; font-family:'Inter',sans-serif; }
.ftab:hover { border-color:var(--blue-mid); color:var(--blue); }
.ftab.active { background:var(--navy); color:#fff; border-color:var(--navy); }

/* ── PRODUCT CARDS ── */
.products-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(220px,1fr)); gap:20px; }
.p-card { background:var(--white); border-radius:var(--r-xl); border:1.5px solid var(--border); overflow:hidden; transition:.25s; position:relative; }
.p-card:hover { box-shadow:var(--shadow-lg); transform:translateY(-4px); border-color:transparent; }
.p-card-img { height:200px; display:flex; align-items:center; justify-content:center; position:relative; background:var(--surface); }
.p-card-art { width:100px; height:140px; border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:13px; font-weight:800; color:rgba(255,255,255,.88); letter-spacing:.8px; position:relative; overflow:hidden; box-shadow:0 12px 32px rgba(0,0,0,.18); }
.p-card-art::after { content:''; position:absolute; inset:0; background:linear-gradient(135deg,rgba(255,255,255,.15) 0%,transparent 60%); }
.p-badge { position:absolute; top:12px; left:12px; padding:3px 10px; border-radius:50px; font-size:10px; font-weight:700; letter-spacing:.5px; text-transform:uppercase; }
.b-hot  { background:var(--red);   color:#fff; }
.b-new  { background:var(--blue);  color:#fff; }
.b-sale { background:var(--green); color:#fff; }
.b-pre  { background:var(--amber); color:#fff; }
.p-wish { position:absolute; top:10px; right:10px; width:32px; height:32px; background:var(--white); border:1.5px solid var(--border); border-radius:50%; cursor:pointer; display:flex; align-items:center; justify-content:center; font-size:14px; transition:.15s; color:var(--text-3); }
.p-wish:hover { border-color:var(--red); color:var(--red); }
.p-wish.on { color:var(--red); border-color:var(--red); background:#FEF2F2; }
.p-card-body { padding:16px 18px 18px; }
.p-game  { font-size:10.5px; font-weight:700; color:var(--blue); letter-spacing:.8px; text-transform:uppercase; margin-bottom:4px; }
.p-name  { font-size:14px; font-weight:700; color:var(--text); line-height:1.35; margin-bottom:4px; }
.p-type  { font-size:12px; color:var(--text-3); margin-bottom:14px; }
.p-foot  { display:flex; align-items:center; justify-content:space-between; }
.p-price { font-size:18px; font-weight:800; }
.p-stock { font-size:11px; font-weight:600; padding:3px 9px; border-radius:50px; }
.s-in  { color:var(--green); background:#DCFCE7; }
.s-low { color:var(--amber); background:#FEF3C7; }
.s-out { color:var(--red);   background:#FEE2E2; }
.p-atc { width:36px; height:36px; background:var(--navy); color:#fff; border:none; border-radius:var(--r-sm); font-size:20px; cursor:pointer; transition:.15s; display:flex; align-items:center; justify-content:center; }
.p-atc:hover { background:var(--navy-mid); transform:translateY(-1px); }

/* ── SPOTLIGHT BOXES ── */
.boxes-wrap { background:var(--surface); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.boxes-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.box-card { background:var(--white); border-radius:var(--r-xl); padding:28px; display:flex; gap:22px; align-items:center; border:1.5px solid var(--border); transition:.25s; }
.box-card:hover { box-shadow:var(--shadow-lg); transform:translateY(-3px); border-color:transparent; }
.box-art { flex-shrink:0; width:100px; height:140px; border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:13px; font-weight:800; color:rgba(255,255,255,.88); letter-spacing:.8px; box-shadow:0 8px 24px rgba(0,0,0,.16); position:relative; overflow:hidden; }
.box-art::after { content:''; position:absolute; inset:0; background:linear-gradient(135deg,rgba(255,255,255,.15) 0%,transparent 60%); }
.box-game  { font-size:10.5px; font-weight:700; color:var(--blue); letter-spacing:.8px; text-transform:uppercase; margin-bottom:5px; }
.box-name  { font-size:16px; font-weight:800; line-height:1.3; margin-bottom:6px; }
.box-desc  { font-size:12.5px; color:var(--text-3); line-height:1.6; margin-bottom:14px; }
.box-price { font-size:22px; font-weight:800; margin-bottom:14px; }
.box-row   { display:flex; align-items:center; gap:10px; }

/* ── NEWSLETTER ── */
.nl-wrap { background:var(--navy); padding:80px 48px; }
.nl-inner { max-width:540px; margin:0 auto; text-align:center; }
.nl-wrap h2 { font-size:28px; font-weight:800; color:#fff; letter-spacing:-.3px; margin-bottom:10px; }
.nl-wrap p  { font-size:14.5px; color:rgba(255,255,255,.6); margin-bottom:28px; line-height:1.65; }
.nl-form { display:flex; gap:8px; }
.nl-form input { flex:1; height:46px; padding:0 18px; border:1.5px solid rgba(255,255,255,.15); border-radius:var(--r-md); background:rgba(255,255,255,.1); color:#fff; font-family:'Inter',sans-serif; font-size:13.5px; outline:none; transition:.15s; }
.nl-form input::placeholder { color:rgba(255,255,255,.4); }
.nl-form input:focus { border-color:rgba(255,255,255,.4); }
.nl-btn { height:46px; padding:0 22px; background:var(--blue); color:#fff; border:none; border-radius:var(--r-md); font-family:'Inter',sans-serif; font-size:13.5px; font-weight:600; cursor:pointer; transition:.15s; }
.nl-btn:hover { background:var(--blue-dark); }

/* ── FOOTER ── */
footer { background:#060D1E; padding:60px 48px 28px; }
.footer-inner { max-width:1440px; margin:0 auto; }
.footer-top { display:grid; grid-template-columns:2.2fr 1fr 1fr 1fr; gap:48px; margin-bottom:52px; }
.f-brand-name { font-size:19px; font-weight:800; color:#fff; letter-spacing:-.4px; margin-bottom:12px; display:flex; align-items:center; gap:10px; }
.f-logo-mark { width:32px; height:32px; background:var(--navy-mid); border-radius:7px; display:flex; align-items:center; justify-content:center; font-size:11px; font-weight:800; color:#fff; }
.f-desc { font-size:13px; line-height:1.75; color:rgba(255,255,255,.38); max-width:280px; }
.f-socials { display:flex; gap:8px; margin-top:22px; }
.f-soc { width:32px; height:32px; background:rgba(255,255,255,.06); border-radius:7px; display:flex; align-items:center; justify-content:center; font-size:11px; font-weight:700; letter-spacing:.3px; cursor:pointer; transition:.15s; text-decoration:none; color:rgba(255,255,255,.5); }
.f-soc:hover { background:var(--blue); color:#fff; }
.f-col h5 { font-size:12px; font-weight:700; color:rgba(255,255,255,.9); letter-spacing:.5px; text-transform:uppercase; margin-bottom:18px; }
.f-links { list-style:none; display:flex; flex-direction:column; gap:11px; }
.f-links a { font-size:13px; color:rgba(255,255,255,.38); text-decoration:none; transition:color .15s; }
.f-links a:hover { color:rgba(255,255,255,.75); }
.footer-bottom { border-top:1px solid rgba(255,255,255,.06); padding-top:24px; display:flex; justify-content:space-between; align-items:center; font-size:12px; color:rgba(255,255,255,.28); }

/* ── CART DRAWER ── */
.overlay { position:fixed; inset:0; background:rgba(0,0,0,.45); z-index:1900; opacity:0; pointer-events:none; transition:opacity .25s; }
.overlay.open { opacity:1; pointer-events:all; }
.cart-drawer { position:fixed; top:0; right:0; width:400px; height:100vh; background:var(--white); z-index:2000; transform:translateX(100%); transition:transform .3s cubic-bezier(.4,0,.2,1); display:flex; flex-direction:column; box-shadow:-12px 0 48px rgba(0,0,0,.12); }
.cart-drawer.open { transform:translateX(0); }
.drawer-hd { padding:20px 24px; border-bottom:1px solid var(--border); display:flex; justify-content:space-between; align-items:center; }
.drawer-hd h3 { font-size:16px; font-weight:700; }
.drawer-close { width:32px; height:32px; background:var(--surface); border:none; border-radius:var(--r-sm); cursor:pointer; font-size:18px; color:var(--text-2); display:flex; align-items:center; justify-content:center; transition:.15s; }
.drawer-close:hover { background:var(--surface-2); }
.drawer-body { flex:1; overflow-y:auto; padding:20px 24px; }
.cart-empty-state { text-align:center; padding:60px 20px; }
.cart-empty-icon { width:56px; height:56px; background:var(--surface); border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto 14px; }
.cart-empty-state p { font-size:14px; font-weight:600; color:var(--text-2); margin-bottom:4px; }
.cart-empty-state span { font-size:12.5px; color:var(--text-4); }
.cart-line { display:flex; gap:14px; padding:14px 0; border-bottom:1px solid var(--border); }
.cl-art { width:56px; height:78px; border-radius:8px; flex-shrink:0; display:flex; align-items:center; justify-content:center; font-size:10px; font-weight:800; color:rgba(255,255,255,.85); letter-spacing:.4px; }
.cl-info { flex:1; min-width:0; }
.cl-name { font-size:13px; font-weight:600; margin-bottom:2px; }
.cl-game { font-size:11px; color:var(--text-3); margin-bottom:10px; }
.cl-qty  { display:flex; align-items:center; gap:10px; }
.q-btn { width:26px; height:26px; border:1.5px solid var(--border); background:var(--white); border-radius:var(--r-sm); cursor:pointer; font-size:15px; display:flex; align-items:center; justify-content:center; transition:.12s; }
.q-btn:hover { border-color:var(--blue); color:var(--blue); }
.q-n { font-size:13px; font-weight:700; min-width:20px; text-align:center; }
.cl-right { display:flex; flex-direction:column; align-items:flex-end; justify-content:space-between; padding:2px 0; }
.cl-price { font-size:14px; font-weight:700; }
.cl-rm { background:none; border:none; cursor:pointer; color:var(--text-4); font-size:16px; line-height:1; transition:color .12s; }
.cl-rm:hover { color:var(--red); }
.drawer-ft { padding:18px 24px; border-top:1px solid var(--border); background:var(--surface); }
.drawer-total { display:flex; justify-content:space-between; font-size:15px; font-weight:700; margin-bottom:14px; }
.checkout-btn { width:100%; height:48px; background:var(--navy); color:#fff; border:none; border-radius:var(--r-md); font-family:'Inter',sans-serif; font-size:14px; font-weight:700; cursor:pointer; transition:.15s; }
.checkout-btn:hover { background:var(--navy-mid); }
.stripe-note { text-align:center; font-size:11px; color:var(--text-4); margin-top:10px; }

/* ── TOAST ── */
.toast { position:fixed; bottom:24px; left:50%; transform:translateX(-50%) translateY(70px); background:var(--text); color:#fff; padding:10px 20px; border-radius:50px; font-size:13px; font-weight:500; z-index:3000; transition:transform .3s cubic-bezier(.4,0,.2,1); white-space:nowrap; box-shadow:var(--shadow-lg); pointer-events:none; }
.toast.show { transform:translateX(-50%) translateY(0); }

/* ── ACCOUNT / FORM PAGES ── */
.page-wrap { min-height:calc(100vh - 120px); display:flex; align-items:center; justify-content:center; padding:60px 24px; background:var(--surface); }
.auth-card { background:var(--white); border-radius:var(--r-2xl); border:1.5px solid var(--border); padding:44px; width:100%; max-width:440px; box-shadow:var(--shadow-md); }
.auth-logo { display:flex; align-items:center; gap:10px; margin-bottom:32px; text-decoration:none; }
.auth-tabs { display:flex; gap:2px; background:var(--surface); border-radius:var(--r-md); padding:4px; margin-bottom:32px; }
.auth-tab { flex:1; height:36px; border:none; background:transparent; border-radius:var(--r-sm); font-family:'Inter',sans-serif; font-size:13.5px; font-weight:500; color:var(--text-3); cursor:pointer; transition:.15s; }
.auth-tab.active { background:var(--white); color:var(--text); font-weight:600; box-shadow:var(--shadow-xs); }
.form-group { margin-bottom:18px; }
.form-group label { display:block; font-size:13px; font-weight:600; color:var(--text-2); margin-bottom:6px; }
.form-group input { width:100%; height:44px; padding:0 14px; border:1.5px solid var(--border); border-radius:var(--r-md); font-family:'Inter',sans-serif; font-size:14px; color:var(--text); outline:none; transition:.15s; }
.form-group input:focus { border-color:var(--blue-mid); box-shadow:0 0 0 3px rgba(59,130,246,.1); }
.form-group input::placeholder { color:var(--text-4); }
.contact-textarea { width:100%; padding:12px 14px; border:1.5px solid var(--border); border-radius:var(--r-md); font-family:'Inter',sans-serif; font-size:14px; color:var(--text); outline:none; resize:vertical; min-height:120px; transition:.15s; }
.contact-textarea:focus { border-color:var(--blue-mid); box-shadow:0 0 0 3px rgba(59,130,246,.1); }
.contact-textarea::placeholder { color:var(--text-4); }
.form-btn { width:100%; height:46px; background:var(--navy); color:#fff; border:none; border-radius:var(--r-md); font-family:'Inter',sans-serif; font-size:14px; font-weight:700; cursor:pointer; transition:.15s; margin-top:8px; }
.form-btn:hover { background:var(--navy-mid); }
.form-divider { text-align:center; font-size:12px; color:var(--text-4); margin:20px 0; position:relative; }
.form-divider::before { content:''; position:absolute; top:50%; left:0; right:0; height:1px; background:var(--border); }
.form-divider span { background:var(--white); padding:0 12px; position:relative; }
.form-error { background:#FEE2E2; color:var(--red); font-size:13px; padding:10px 14px; border-radius:var(--r-sm); margin-bottom:16px; display:none; }
.form-error.show { display:block; }
.form-success { background:#DCFCE7; color:var(--green); font-size:13px; padding:10px 14px; border-radius:var(--r-sm); margin-bottom:16px; display:none; }
.form-success.show { display:block; }
.form-hint { font-size:12px; color:var(--text-4); text-align:center; margin-top:16px; }
.form-hint a { color:var(--blue); text-decoration:none; }

/* Account Dashboard */
.dashboard-wrap { max-width:900px; margin:0 auto; padding:48px; }
.dashboard-header { display:flex; align-items:center; justify-content:space-between; margin-bottom:36px; padding-bottom:24px; border-bottom:1px solid var(--border); }
.dashboard-name { font-size:22px; font-weight:800; }
.dashboard-email { font-size:13px; color:var(--text-3); margin-top:2px; }
.dashboard-grid { display:grid; grid-template-columns:1fr 2fr; gap:24px; }
.dash-card { background:var(--white); border:1.5px solid var(--border); border-radius:var(--r-xl); padding:24px; }
.dash-card h4 { font-size:14px; font-weight:700; margin-bottom:16px; padding-bottom:12px; border-bottom:1px solid var(--border); }
.dash-stat { font-size:28px; font-weight:800; color:var(--navy); }
.dash-stat-label { font-size:12px; color:var(--text-3); margin-top:4px; }
.order-empty { text-align:center; padding:40px 20px; color:var(--text-3); font-size:13px; }
.nav-side { list-style:none; display:flex; flex-direction:column; gap:4px; }
.nav-side a { display:block; padding:9px 14px; border-radius:var(--r-sm); font-size:13.5px; font-weight:500; color:var(--text-2); text-decoration:none; transition:.12s; }
.nav-side a:hover { background:var(--surface); color:var(--text); }
.nav-side a.active { background:var(--blue-light); color:var(--blue); font-weight:600; }
.logout-btn { width:100%; height:38px; background:transparent; color:var(--red); border:1.5px solid #FCA5A5; border-radius:var(--r-sm); font-family:'Inter',sans-serif; font-size:13px; font-weight:600; cursor:pointer; transition:.15s; margin-top:16px; }
.logout-btn:hover { background:#FEE2E2; }

/* ── SHOP PAGE ── */
.shop-wrap { max-width:1440px; margin:0 auto; padding:48px; }
.shop-top { display:flex; align-items:center; justify-content:space-between; margin-bottom:32px; }
.shop-title { font-size:26px; font-weight:800; letter-spacing:-.3px; }
.shop-count { font-size:13px; color:var(--text-3); margin-top:4px; }
.sort-select { height:36px; padding:0 12px; border:1.5px solid var(--border); border-radius:var(--r-sm); font-family:'Inter',sans-serif; font-size:13px; color:var(--text-2); background:var(--white); outline:none; cursor:pointer; }

/* ── CONTAINER ── */
.container { max-width:1440px; margin:0 auto; padding-left:48px; padding-right:48px; }

/* ── ANNOUNCE BAR ── */
.announce-bar { background:var(--navy); color:rgba(255,255,255,.85); text-align:center; font-size:12.5px; font-weight:500; padding:9px 20px; letter-spacing:.2px; }
.announce-bar a { color:var(--gold-light); text-decoration:none; font-weight:600; }

/* ── SITE HEADER (store.js injected) ── */
.site-header { position:sticky; top:0; z-index:1000; background:rgba(242,245,249,.97); backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px); border-bottom:1px solid var(--border); }
.header-inner { display:flex; align-items:center; gap:24px; height:64px; }
.logo { display:flex; align-items:center; gap:10px; text-decoration:none; flex-shrink:0; font-size:17px; font-weight:800; letter-spacing:-.5px; color:var(--navy); }
.site-nav { margin-right:auto; }
.nav-list { display:flex; align-items:center; gap:2px; list-style:none; }
.nav-link { padding:6px 12px; border-radius:var(--r-sm); font-size:13.5px; font-weight:500; color:var(--text-2); text-decoration:none; transition:.15s; white-space:nowrap; display:flex; align-items:center; gap:4px; }
.nav-link:hover, .nav-link.active { background:var(--surface); color:var(--text); }
.nav-link.active { color:var(--navy); font-weight:600; }
.has-dropdown { position:relative; }
.dropdown { position:absolute; top:100%; left:0; background:var(--white); border:1px solid var(--border); border-radius:var(--r-lg); padding:6px; padding-top:14px; margin-top:0; min-width:210px; box-shadow:var(--shadow-lg); opacity:0; pointer-events:none; transform:translateY(-6px); transition:all .15s; z-index:100; list-style:none; }
.has-dropdown:hover .dropdown { opacity:1; pointer-events:all; transform:translateY(0); }
.dropdown li a { display:block; padding:8px 12px; border-radius:var(--r-sm); font-size:13px; font-weight:500; color:var(--text-2); text-decoration:none; transition:.12s; }
.dropdown li a:hover { background:var(--surface); color:var(--text); }
.header-actions { display:flex; align-items:center; gap:6px; }
.header-icon-btn { width:40px; height:40px; background:none; border:none; cursor:pointer; border-radius:var(--r-sm); color:var(--text-2); display:flex; align-items:center; justify-content:center; transition:.15s; text-decoration:none; position:relative; }
.header-icon-btn:hover { background:var(--surface); color:var(--text); }
.account-badge { font-size:12px; font-weight:600; color:var(--navy); white-space:nowrap; }
.cart-count { position:absolute; top:4px; right:4px; background:var(--blue); color:#fff; font-size:9px; font-weight:700; min-width:16px; height:16px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-family:'Inter',sans-serif; }
.hamburger { display:none; width:36px; height:36px; background:none; border:none; cursor:pointer; flex-direction:column; justify-content:center; align-items:center; gap:5px; border-radius:var(--r-sm); }
.hamburger span { display:block; width:20px; height:2px; background:var(--text-2); border-radius:2px; transition:.2s; }
.hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity:0; }
.hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* ── SITE FOOTER (store.js injected) ── */
.site-footer { background:#0F1829; }
.footer-top { display:flex; align-items:flex-start; gap:60px; padding-top:52px; padding-bottom:48px; }
.footer-brand { flex-shrink:0; width:220px; }
.footer-brand p { font-size:13px; color:rgba(255,255,255,.38); line-height:1.75; margin-top:10px; }
.footer-nav { flex:1; display:flex; flex-direction:column; }
.footer-nav-row { display:flex; align-items:center; flex-wrap:wrap; padding:14px 0; border-bottom:1px solid rgba(255,255,255,.05); }
.footer-nav-row:last-child { border-bottom:none; }
.fnav-label { font-size:10.5px; font-weight:700; color:rgba(255,255,255,.45); letter-spacing:1px; text-transform:uppercase; width:76px; flex-shrink:0; }
.footer-nav-row a { font-size:13px; color:rgba(255,255,255,.38); text-decoration:none; padding:0 14px; border-right:1px solid rgba(255,255,255,.08); line-height:1.3; transition:color .15s; }
.footer-nav-row a:last-child { border-right:none; }
.footer-nav-row a:hover { color:rgba(255,255,255,.75); }
.footer-bottom { border-top:1px solid rgba(255,255,255,.06); }
.footer-bottom-inner { display:flex; justify-content:space-between; align-items:center; padding-top:18px; padding-bottom:18px; font-size:12px; color:rgba(255,255,255,.28); }
.footer-legal { display:flex; gap:20px; }
.footer-legal a { color:rgba(255,255,255,.28); text-decoration:none; transition:color .15s; }
.footer-legal a:hover { color:rgba(255,255,255,.6); }

/* ── NEW CART DRAWER (store.js injected) ── */
.cart-overlay { position:fixed; inset:0; background:rgba(0,0,0,.45); z-index:1900; opacity:0; pointer-events:none; transition:opacity .25s; }
.cart-overlay.open { opacity:1; pointer-events:all; }
.cart-drawer { position:fixed; top:0; right:0; width:400px; max-width:100vw; height:100vh; background:var(--white); z-index:2000; transform:translateX(100%); transition:transform .3s cubic-bezier(.4,0,.2,1); display:flex; flex-direction:column; box-shadow:-12px 0 48px rgba(0,0,0,.12); }
.cart-drawer.open { transform:translateX(0); }
.cart-header { padding:20px 24px; border-bottom:1px solid var(--border); display:flex; justify-content:space-between; align-items:center; }
.cart-title { font-size:16px; font-weight:700; }
.cart-close { width:32px; height:32px; background:var(--surface); border:none; border-radius:var(--r-sm); cursor:pointer; color:var(--text-2); display:flex; align-items:center; justify-content:center; transition:.15s; }
.cart-close:hover { background:var(--surface-2); color:var(--text); }
.cart-body { flex:1; overflow-y:auto; padding:20px 24px; }
.cart-empty { text-align:center; padding:60px 0; font-size:14px; color:var(--text-3); }
.cart-item { display:flex; gap:14px; padding:14px 0; border-bottom:1px solid var(--border); }
.cart-item-img { width:56px; height:76px; border-radius:8px; flex-shrink:0; }
.cart-item-info { flex:1; min-width:0; }
.cart-item-name { font-size:13px; font-weight:600; color:var(--text); margin-bottom:4px; line-height:1.3; }
.cart-item-price { font-size:14px; font-weight:700; color:var(--text); margin-bottom:8px; }
.cart-item-qty { display:flex; align-items:center; gap:8px; }
.qty-btn { width:26px; height:26px; border:1.5px solid var(--border); background:var(--white); border-radius:var(--r-sm); cursor:pointer; font-size:14px; display:flex; align-items:center; justify-content:center; transition:.12s; color:var(--text-2); }
.qty-btn:hover { border-color:var(--blue); color:var(--blue); }
.qty-remove { background:none; border:none; cursor:pointer; font-size:12px; font-weight:500; color:var(--text-4); transition:color .12s; margin-left:4px; font-family:'Inter',sans-serif; }
.qty-remove:hover { color:var(--red); }
.cart-footer { padding:18px 24px; border-top:1px solid var(--border); background:var(--surface); }
.cart-subtotal { display:flex; justify-content:space-between; align-items:center; font-size:15px; font-weight:700; margin-bottom:14px; }
.cart-shipping-note { font-size:12px; color:var(--text-muted); text-align:center; margin:0 0 12px; }
.cart-checkout-btn { width:100%; display:flex; align-items:center; justify-content:center; height:48px; border-radius:var(--r-md); font-weight:700; font-size:14px; }

/* ── NEWS ── */
@keyframes news-shim { from { background-position:200% 0 } to { background-position:-200% 0 } }
@keyframes news-spin  { to { transform:rotate(360deg) } }

.news-section { padding:0 0 12px; }
.news-refresh-btn { display:inline-flex; align-items:center; gap:6px; height:36px; padding:0 14px; background:transparent; border:1.5px solid var(--border); border-radius:var(--r-sm); font-size:12px; font-weight:600; color:var(--text-3); cursor:pointer; transition:.2s; }
.news-refresh-btn:hover { border-color:var(--blue); color:var(--blue); }

.news-tabs-wrap { overflow-x:auto; margin-bottom:18px; scrollbar-width:none; }
.news-tabs-wrap::-webkit-scrollbar { display:none; }
.news-tabs { display:flex; gap:6px; width:max-content; }
.news-tab { display:inline-flex; align-items:center; gap:5px; padding:.4rem 1rem; border-radius:6px; border:1.5px solid rgba(0,0,0,.1); background:var(--surface); font-size:12.5px; font-weight:600; color:var(--text-3); cursor:pointer; transition:.2s; white-space:nowrap; }
.news-tab:hover { color:var(--text); border-color:rgba(0,0,0,.2); }
.news-tab.active { color:var(--tc); background:color-mix(in srgb, var(--tc) 10%, transparent); border-color:var(--tc); }

.news-meta-bar { display:flex; justify-content:space-between; align-items:center; margin-bottom:14px; min-height:20px; }
.news-count { font-size:12px; color:var(--text-3); }

.news-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:18px; }

.news-card { display:flex; flex-direction:column; background:var(--white); border:1.5px solid var(--border); border-radius:var(--r-xl); overflow:hidden; text-decoration:none; color:inherit; transition:.22s; }
.news-card:hover { transform:translateY(-4px); box-shadow:0 8px 30px rgba(0,0,0,.1); border-color:var(--nc,var(--blue)); }
.news-card-img-wrap { flex-shrink:0; }
.news-card-img { width:100%; height:160px; object-fit:cover; display:block; }
.news-card-img-ph { height:160px; display:flex; align-items:center; justify-content:center; font-size:2.4rem; }
.news-card-body { padding:14px 16px 16px; display:flex; flex-direction:column; gap:8px; flex:1; }
.news-card-tag { display:inline-flex; align-items:center; gap:4px; font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:.4px; padding:2px 8px; border-radius:3px; width:fit-content; }
.news-card-title { font-size:13.5px; font-weight:700; color:var(--text); line-height:1.5; margin:0; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.news-card-desc { font-size:12px; color:var(--text-3); line-height:1.6; margin:0; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; flex:1; }
.news-card-footer { display:flex; justify-content:space-between; align-items:center; padding-top:10px; border-top:1px solid var(--border); margin-top:auto; }
.news-card-source { font-size:10.5px; font-weight:700; text-transform:uppercase; letter-spacing:.3px; color:var(--text-3); max-width:60%; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.news-card-date { font-size:10.5px; color:var(--text-3); }

.news-skeleton { background:var(--white); border:1.5px solid var(--border); border-radius:var(--r-xl); overflow:hidden; }
.news-skel-img { height:160px; background:linear-gradient(90deg,#f0f0f0 25%,#e0e0e0 50%,#f0f0f0 75%); background-size:200% 100%; animation:news-shim 1.5s infinite; }
.news-skel-body { padding:14px 16px 16px; display:flex; flex-direction:column; gap:8px; }
.news-skel-bar { border-radius:4px; background:linear-gradient(90deg,#f0f0f0 25%,#e0e0e0 50%,#f0f0f0 75%); background-size:200% 100%; animation:news-shim 1.5s infinite; }

.news-state-box { grid-column:1/-1; display:flex; flex-direction:column; align-items:center; padding:48px 20px; text-align:center; gap:10px; }
.news-state-emoji { font-size:2.5rem; }
.news-state-title { font-size:16px; font-weight:700; color:var(--text); }
.news-state-sub { font-size:13px; color:var(--text-3); max-width:340px; line-height:1.6; margin:0; }

/* ── PRODUCT CARD (productCardHTML) ── */
.product-card { background:var(--white); border-radius:var(--r-xl); border:1.5px solid var(--border); overflow:hidden; transition:.25s; }
.product-card:hover { box-shadow:var(--shadow-lg); transform:translateY(-4px); border-color:transparent; }
.card-img { height:200px; position:relative; display:flex; align-items:center; justify-content:center; }
.card-badge { position:absolute; top:12px; left:12px; padding:3px 10px; border-radius:50px; font-size:10px; font-weight:700; letter-spacing:.5px; text-transform:uppercase; background:var(--blue); color:#fff; }
.card-body { padding:16px 18px 18px; }
.card-game-tag { font-size:10.5px; font-weight:700; color:var(--blue); letter-spacing:.8px; text-transform:uppercase; display:block; margin-bottom:4px; }
.card-name { font-size:14px; font-weight:700; color:var(--text); line-height:1.35; margin-bottom:4px; }
.card-desc { font-size:12px; color:var(--text-3); line-height:1.55; margin-bottom:14px; }
.card-footer { display:flex; flex-direction:column; gap:10px; }
.card-price { font-size:18px; font-weight:800; color:var(--text); }
.card-btns { display:flex; gap:6px; }
.card-btns .btn-sm, .card-btns .btn-primary.btn-sm { flex:1; height:32px; padding:0 10px; font-size:12px; text-align:center; justify-content:center; }
.btn-primary.btn-sm { background:var(--blue); height:36px; padding:0 16px; font-size:13px; }
.btn-primary.btn-sm:hover { background:var(--blue-dark); }

/* ── PAGE SECTIONS ── */
.why-strip { border-bottom:1px solid var(--border); }
.surface-section { background:var(--surface); border-top:1px solid var(--border); }

/* ── SPOTLIGHT (Featured Boxes) ── */
.spotlight-section { background:var(--white); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.spotlight-grid { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.spotlight-card { background:var(--white); border:1.5px solid var(--border); border-radius:var(--r-xl); padding:24px; display:flex; gap:20px; align-items:center; transition:.25s; }
.spotlight-card:hover { box-shadow:var(--shadow-lg); transform:translateY(-3px); border-color:transparent; }
.spotlight-art { flex-shrink:0; width:90px; height:126px; border-radius:10px; box-shadow:0 8px 24px rgba(0,0,0,.16); }
.spotlight-info { flex:1; min-width:0; }
.spotlight-game { font-size:10.5px; font-weight:700; color:var(--blue); letter-spacing:.8px; text-transform:uppercase; margin-bottom:5px; }
.spotlight-name { font-size:15px; font-weight:800; line-height:1.3; margin-bottom:6px; }
.spotlight-desc { font-size:12.5px; color:var(--text-3); line-height:1.6; margin-bottom:12px; }
.spotlight-price { font-size:20px; font-weight:800; margin-bottom:12px; }

/* ── SHOP PAGE TYPE PILLS ── */
.type-pills { display:flex; gap:6px; flex-wrap:wrap; margin-bottom:28px; }
.type-pill { height:30px; padding:0 14px; border-radius:50px; font-size:12.5px; font-weight:500; border:1.5px solid var(--border); background:var(--white); color:var(--text-3); cursor:pointer; transition:.15s; font-family:'Inter',sans-serif; }
.type-pill:hover { border-color:var(--blue-mid); color:var(--blue); }
.type-pill.active { background:var(--blue-light); color:var(--blue); border-color:var(--blue); font-weight:600; }
.shop-controls { display:flex; align-items:center; gap:10px; }
.shop-empty { display:none; flex-direction:column; align-items:center; gap:10px; padding:80px 20px; text-align:center; color:var(--text-3); }
.shop-empty p { font-size:16px; font-weight:600; color:var(--text-2); }
.shop-empty span { font-size:13px; }

/* ── ACCOUNT PAGE ── */
.auth-page { min-height:calc(100vh - 130px); background:var(--surface); display:flex; align-items:center; justify-content:center; padding:60px 24px; }
.auth-card { background:var(--white); border-radius:var(--r-2xl); border:1.5px solid var(--border); padding:44px; width:100%; max-width:440px; box-shadow:var(--shadow-md); }
.auth-logo { display:flex; align-items:center; gap:10px; margin-bottom:28px; font-size:17px; font-weight:800; letter-spacing:-.5px; color:var(--navy); }
.auth-error { background:#FEE2E2; color:var(--red); font-size:13px; padding:10px 14px; border-radius:var(--r-sm); margin-bottom:16px; }
.auth-submit { width:100%; justify-content:center; margin-top:4px; }
.auth-switch { font-size:13px; color:var(--text-3); text-align:center; margin-top:16px; }
.auth-switch a { color:var(--blue); text-decoration:none; font-weight:600; }

/* ── DASHBOARD SIDEBAR LAYOUT ── */
.account-layout { display:flex; min-height:calc(100vh - 90px); background:var(--surface); }

.dash-sidebar { width:230px; flex-shrink:0; background:var(--white); border-right:1px solid var(--border); display:flex; flex-direction:column; padding:24px 0; position:sticky; top:0; height:calc(100vh - 90px); overflow-y:auto; }

.dash-sidebar-profile { padding:0 16px 20px; border-bottom:1px solid var(--border); margin-bottom:12px; display:flex; align-items:center; gap:10px; }
.dash-sidebar-avatar { width:38px; height:38px; border-radius:50%; background:var(--navy); color:#fff; font-size:15px; font-weight:800; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.dash-sidebar-info { min-width:0; }
.dash-sidebar-name { font-size:13px; font-weight:700; color:var(--text); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.dash-sidebar-email { font-size:11px; color:var(--text-3); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }

.dash-nav { display:flex; flex-direction:column; gap:2px; padding:0 8px; flex:1; }
.dash-nav-item { display:flex; align-items:center; gap:10px; width:100%; padding:9px 10px; border:none; background:none; border-radius:8px; font-family:'Inter',sans-serif; font-size:13px; font-weight:500; color:var(--text-3); cursor:pointer; text-align:left; transition:.15s; }
.dash-nav-item:hover { background:var(--surface); color:var(--text); }
.dash-nav-item.active { background:rgba(37,99,235,.08); color:var(--blue); font-weight:600; }
.dash-nav-item.active svg { stroke:var(--blue); }
.dash-nav-item svg { flex-shrink:0; opacity:.7; }
.dash-nav-item.active svg { opacity:1; }
.dash-nav-danger { color:#DC2626 !important; }
.dash-nav-danger:hover { background:rgba(220,38,38,.06) !important; color:#b91c1c !important; }
.dash-nav-danger svg { stroke:#DC2626; }

.dash-sidebar-footer { padding:12px 8px 0; border-top:1px solid var(--border); margin-top:8px; display:flex; flex-direction:column; gap:2px; }

.dash-main { flex:1; padding:40px 48px; min-width:0; overflow-y:auto; }
.dash-panel { display:none; }
.dash-panel.active { display:block; }
.dash-panel-title { font-size:20px; font-weight:800; color:var(--text); margin-bottom:24px; padding-bottom:16px; border-bottom:1px solid var(--border); }

.overview-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(180px,1fr)); gap:16px; }
.overview-card { background:var(--white); border:1.5px solid var(--border); border-radius:var(--r-xl); padding:18px 20px; }
.overview-card-points { grid-column:span 2; }
.overview-card-label { font-size:11px; font-weight:600; text-transform:uppercase; letter-spacing:.5px; color:var(--text-3); margin-bottom:6px; }
.overview-card-val { font-size:14px; font-weight:700; color:var(--text); margin:0; }

.dash-points-bar { height:5px; background:var(--border); border-radius:99px; overflow:hidden; margin-bottom:5px; }
.dash-points-fill { height:100%; background:var(--blue); border-radius:99px; transition:width .4s ease; }

.edit-sections-stack { display:flex; flex-direction:column; gap:20px; max-width:480px; }
.edit-section-block { background:var(--white); border:1.5px solid var(--border); border-radius:var(--r-xl); padding:22px 24px; display:flex; flex-direction:column; gap:12px; }
.edit-section-label { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.6px; color:var(--blue); margin-bottom:14px; }
.edit-field { display:flex; flex-direction:column; gap:4px; }
.edit-label { font-size:11.5px; font-weight:500; color:var(--text-3); }
.edit-input { height:42px; padding:0 12px; border:1.5px solid var(--border); border-radius:var(--r-sm); font-size:13px; font-family:'Inter',sans-serif; color:var(--text); background:var(--white); transition:.15s; outline:none; width:100%; box-sizing:border-box; }
.edit-input:focus { border-color:var(--blue); box-shadow:0 0 0 3px rgba(37,99,235,.1); }
.edit-row { display:flex; flex-direction:column; gap:10px; }
.edit-inline { display:flex; flex-direction:column; gap:10px; }
.edit-save-btn { height:40px; padding:0 20px; background:var(--blue); color:#fff; border:none; border-radius:var(--r-sm); font-size:13px; font-weight:700; cursor:pointer; transition:.15s; width:100%; box-sizing:border-box; }
.edit-save-btn:hover { background:var(--blue-dark); }

.dash-empty { display:flex; flex-direction:column; align-items:center; gap:8px; padding:32px 16px; text-align:center; }
.dash-empty p { font-size:13px; color:var(--text-3); }
.dash-cart-row { display:flex; align-items:center; gap:10px; padding:8px 0; border-bottom:1px solid var(--border); }
.dash-cart-dot { width:10px; height:10px; border-radius:50%; flex-shrink:0; }
.dash-cart-name { flex:1; font-size:13px; font-weight:500; color:var(--text); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.dash-cart-qty { font-size:12px; color:var(--text-3); white-space:nowrap; }
.dash-cart-price { font-size:13px; font-weight:700; white-space:nowrap; }
.dash-cart-total { display:flex; justify-content:space-between; padding:10px 0 0; font-size:14px; font-weight:700; margin-top:4px; }

/* ── MARKETING CHECKBOX ── */
.marketing-check { margin-bottom:8px; }
.checkbox-label { display:flex; align-items:flex-start; gap:10px; cursor:pointer; font-size:13px; color:var(--text-2); line-height:1.5; }
.checkbox-label input[type="checkbox"] { margin-top:2px; flex-shrink:0; width:16px; height:16px; accent-color:var(--blue); cursor:pointer; }

#account-btn { position:relative; }
#account-btn.signed-in::after { content:''; position:absolute; top:5px; right:3px; width:7px; height:7px; background:var(--green); border-radius:50%; border:2px solid #fff; }

/* ── RESPONSIVE ── */
@media(max-width:1100px) { .game-grid { grid-template-columns:repeat(4,1fr); } }
@media(max-width:1024px) {
  .hero-inner { grid-template-columns:1fr; }
  .hero-right { display:none; }
  .hero-left { padding:60px 40px; }
  .why-grid { grid-template-columns:1fr 1fr; }
  .footer-top { gap:40px; }
  .boxes-grid { grid-template-columns:1fr; }
  .account-layout { flex-direction:column; }
  .dash-sidebar { width:100%; height:auto; position:static; border-right:none; border-bottom:1px solid var(--border); padding:12px 8px; }
  .dash-sidebar-profile { border-bottom:none; margin-bottom:0; }
  .dash-nav { flex-direction:row; flex-wrap:wrap; padding:4px 0; gap:4px; }
  .dash-sidebar-footer { flex-direction:row; border-top:none; padding:4px 0 0; margin-top:4px; }
  .dash-main { padding:24px 20px; }
  .spotlight-grid { grid-template-columns:1fr; }
}
@media(max-width:768px) {
  .nav-main { padding:0 20px; }
  .nav-links { display:none; }
  .site-nav { display:none; }
  .site-nav.open { display:flex; position:fixed; top:64px; left:0; right:0; background:var(--white); flex-direction:column; padding:16px; border-bottom:1px solid var(--border); box-shadow:var(--shadow-md); z-index:999; max-height:calc(100vh - 64px); overflow-y:auto; }
  .nav-list { flex-direction:column; align-items:stretch; gap:4px; }
  .nav-link { padding:10px 14px; }
  .has-dropdown .dropdown { position:static; opacity:1; transform:none; pointer-events:all; box-shadow:none; border:none; border-left:2px solid var(--border); padding:4px 0 4px 16px; margin:4px 0 4px 14px; display:block; }
  .dropdown li a { padding:7px 10px; }
  .hamburger { display:flex; }
  .search-wrap { max-width:none; }
  .section,.section-sm { padding:48px 20px; }
  .container { padding-left:20px; padding-right:20px; }
  .nl-wrap { padding:56px 20px; }
  .nl-form { flex-direction:column; }
  .nl-form input, .nl-btn { width:100%; }
  .game-grid { grid-template-columns:repeat(4,1fr); gap:8px; }
  .game-tile { padding:14px 8px; gap:7px; }
  .game-tile-art { width:72px; height:72px; }
  .why-grid { grid-template-columns:1fr 1fr; }
  .hero-left { padding:48px 20px; }
  .hero-stats { gap:20px; margin-top:36px; padding-top:24px; }
  .hero-ctas { flex-direction:column; }
  .hero-ctas .btn-primary, .hero-ctas .btn-outline { width:100%; justify-content:center; }
  .section-hd.row { flex-wrap:wrap; gap:12px; }
  .footer-top { flex-direction:column; gap:28px; }
  .footer-brand { width:100%; }
  .footer-bottom-inner { flex-direction:column; gap:10px; text-align:center; }
  .footer-legal { flex-wrap:wrap; justify-content:center; }
  .cart-drawer { width:100vw; }
  .shop-wrap { padding:24px 20px; }
  .shop-top { flex-wrap:wrap; gap:12px; }
  .dashboard-wrap { padding:24px 20px; }
  .dashboard-header { flex-wrap:wrap; gap:12px; }
  .btn-outline-dark { margin-left:0; width:100%; justify-content:center; }
  .auth-card { padding:28px 22px; }
  .dashboard-grid { grid-template-columns:1fr; }
  .products-grid { grid-template-columns:repeat(auto-fill,minmax(160px,1fr)); gap:14px; }
}
@media(max-width:480px) {
  .game-grid { grid-template-columns:repeat(4,1fr); gap:6px; }
  .game-tile { padding:12px 6px; gap:6px; }
  .game-tile-art { width:56px; height:56px; }
  .game-tile-name { font-size:11px; }
  .game-tile-sub { display:none; }
  .why-grid { grid-template-columns:1fr; }
  .footer-nav-row { flex-direction:column; align-items:flex-start; gap:8px; padding:12px 0; }
  .fnav-label { width:auto; margin-bottom:2px; }
  .footer-nav-row a { border-right:none; padding:0; }
  .section-title { font-size:22px; }
  .hero h1 { font-size:30px; }
  .hero-stat-n { font-size:20px; }
  .hero-stats { gap:16px; }
  .products-grid { grid-template-columns:repeat(2,1fr); gap:12px; }
  .card-img { height:160px; }
  .auth-card { padding:24px 18px; }
  .dashboard-header { padding-bottom:16px; }
  .section,.section-sm { padding:36px 16px; }
  .container { padding-left:16px; padding-right:16px; }
  .shop-wrap { padding:20px 16px; }
  .ftab { font-size:12px; padding:0 12px; height:32px; }
  .type-pill { font-size:12px; padding:0 12px; height:28px; }
  .announce-bar { font-size:11.5px; padding:8px 16px; }
}

/* ── CART POINTS ── */
.cart-points-section { display:flex; align-items:center; justify-content:space-between; background:var(--blue-light); border-radius:var(--r-md); padding:10px 14px; margin-bottom:12px; }
.cart-points-label { display:flex; align-items:center; gap:8px; cursor:pointer; font-size:13px; font-weight:500; color:var(--blue); }
.cart-points-label input[type="checkbox"] { width:16px; height:16px; accent-color:var(--blue); cursor:pointer; flex-shrink:0; }
.cart-points-badge { font-size:10px; font-weight:700; letter-spacing:.5px; text-transform:uppercase; color:var(--blue); background:var(--white); border-radius:50px; padding:2px 8px; }

/* ── ORDER HISTORY ── */
.order-row { padding:14px 0; border-bottom:1px solid var(--border); }
.order-row:last-child { border-bottom:none; padding-bottom:0; }
.order-row-top { display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:8px; }
.order-date { font-size:13px; font-weight:600; color:var(--text); }
.order-meta { font-size:12px; color:var(--text-3); margin-top:2px; }
.order-total { font-size:14px; font-weight:700; color:var(--text); }
.order-status { font-size:11px; font-weight:600; text-transform:capitalize; }
.order-pills { display:flex; flex-wrap:wrap; gap:6px; }
.order-item-pill { font-size:11.5px; background:var(--surface); border:1px solid var(--border); border-radius:50px; padding:3px 10px; color:var(--text-2); }

/* ── SHIPPING RATES ── */
.rates-loading { font-size:13px; color:var(--text-3); padding:14px 0; }
.rates-error { font-size:13px; color:var(--red); background:#FEF2F2; border:1px solid #FCA5A5; border-radius:var(--r-md); padding:10px 14px; }
.rate-card { display:flex; align-items:center; justify-content:space-between; padding:12px 14px; border:1.5px solid var(--border); border-radius:var(--r-md); cursor:pointer; transition:.15s; user-select:none; margin-bottom:8px; }
.rate-card:hover { border-color:var(--blue-mid); background:var(--surface); }
.rate-card.selected { border-color:var(--blue); background:#EFF6FF; }
.rate-info { display:flex; flex-direction:column; gap:2px; }
.rate-carrier { font-size:13.5px; font-weight:700; color:var(--text); }
.rate-service { font-size:12.5px; color:var(--text-2); }
.rate-days { font-size:11.5px; color:var(--text-3); margin-top:1px; }
.rate-price { font-size:15px; font-weight:700; color:var(--blue); white-space:nowrap; }

/* ── POLICY PAGES ── */
.policy-page { max-width:760px; margin:0 auto; padding:64px 48px; }
.policy-page h1 { font-size:28px; font-weight:800; letter-spacing:-.3px; margin-bottom:8px; }
.policy-meta { font-size:13px; color:var(--text-3); margin-bottom:40px; padding-bottom:24px; border-bottom:1px solid var(--border); }
.policy-page h2 { font-size:17px; font-weight:700; color:var(--text); margin:32px 0 10px; }
.policy-page p { font-size:14px; color:var(--text-2); line-height:1.8; margin-bottom:14px; }
.policy-page ul { padding-left:20px; margin-bottom:14px; }
.policy-page ul li { font-size:14px; color:var(--text-2); line-height:1.8; margin-bottom:6px; }
.policy-page a { color:var(--blue); }
@media(max-width:768px) { .policy-page { padding:40px 20px; } }

/* ── HEADER SEARCH ── */
.header-search { position:relative; flex:1; max-width:360px; margin:0 12px; }
.header-search-input { width:100%; height:36px; padding:0 32px 0 34px; border:1.5px solid var(--border); border-radius:50px; background:var(--surface); font-family:'Inter',sans-serif; font-size:13px; color:var(--text); outline:none; transition:.15s; }
.header-search-input:focus { background:#fff; border-color:var(--blue-mid); box-shadow:0 0 0 3px rgba(127,160,181,.12); }
.header-search-input::placeholder { color:var(--text-4); }
.header-search-ico { position:absolute; left:11px; top:50%; transform:translateY(-50%); color:var(--text-4); pointer-events:none; }
.header-search-clear { position:absolute; right:10px; top:50%; transform:translateY(-50%); width:20px; height:20px; background:var(--surface-2); border:none; border-radius:50%; cursor:pointer; display:none; align-items:center; justify-content:center; color:var(--text-3); transition:.15s; }
.header-search-clear:hover { background:var(--border); color:var(--text); }

/* ── Search dropdown ── */
.header-search-dropdown { position:absolute; top:calc(100% + 8px); left:0; right:0; background:#fff; border:1.5px solid var(--border); border-radius:var(--r-lg); box-shadow:var(--shadow-lg); z-index:500; display:none; overflow:hidden; max-height:420px; overflow-y:auto; }
.header-search-dropdown.open { display:block; }
.search-section-label { font-size:10.5px; font-weight:700; text-transform:uppercase; letter-spacing:.6px; color:var(--text-4); padding:10px 14px 6px; }
.search-empty { font-size:13px; color:var(--text-3); padding:20px 14px; text-align:center; }
.search-game-result { display:flex; align-items:center; gap:10px; padding:9px 14px; text-decoration:none; color:var(--text-2); font-size:13px; font-weight:500; transition:background .1s; }
.search-game-result:hover { background:var(--surface); }
.search-game-dot { width:12px; height:12px; border-radius:50%; flex-shrink:0; }
.search-game-arrow { margin-left:auto; font-size:12px; color:var(--text-4); }
.search-product-result { display:flex; align-items:center; gap:10px; padding:8px 14px; text-decoration:none; color:var(--text); transition:background .1s; border-top:1px solid var(--border); }
.search-product-result:first-of-type { border-top:none; }
.search-product-result:hover { background:var(--surface); }
.search-product-img { width:36px; height:36px; border-radius:var(--r-sm); flex-shrink:0; }
.search-product-info { flex:1; min-width:0; display:flex; flex-direction:column; gap:2px; }
.search-product-name { font-size:13px; font-weight:600; color:var(--text); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.search-product-game { font-size:11px; color:var(--text-3); }
.search-product-price { font-size:13px; font-weight:700; color:var(--text); white-space:nowrap; }

@media(max-width:768px) {
  .header-search { max-width:none; margin:0; order:-1; width:100%; display:none; }
  .header-search.mobile-open { display:block; }
}
