/* FinalSpace v205 DUPLICATE-CHECKED MERGED STYLE */


/* ===== START MERGED CSS: style.css ===== */
/* ============================================================
   Final Space Store — style.css v12.0 (FULL GALLERY VERSION)
   ------------------------------------------------------------
   ✓ Supports new gallery system (big image + arrows + zoom)
   ✓ Supports video preview under big image
   ✓ Supports thumbnails with active border
   ✓ Supports NEW / HOT / BESTSELLER badge
   ✓ Supports description modal & toast
   ✓ Wallet header unchanged
   ============================================================ */

:root {
  --bg-main: #0b0f19;
  --bg-header: #0e1624;
  --bg-card: #101622;
  --accent: #007bff;
  --accent-hover: #1990ff;
  --success: #16a34a;
  --danger: #dc2626;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --font: 'Inter', system-ui, sans-serif;
}

/* ---------- BASE ---------- */
body {
  margin: 0;
  background: var(--bg-main);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  overflow-x: hidden;
}

/* ============================================================
   HEADER — v214 CLEAN SINGLE ROW
   ============================================================ */
.fs-header {
  background: var(--bg-header);
  border-bottom: 1px solid #1f2937;
  position: sticky;
  top: 0;
  z-index: 50;
}

.fs-header-wrap {
  max-width: 1500px;
  width: calc(100vw - 32px);
  min-height: 76px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(360px, 1fr);
  align-items: center;
  gap: 18px;
  box-sizing: border-box;
}

.fs-brand {
  grid-column: 2;
  justify-self: center;
  font-weight: 1000;
  font-size: 20px;
  color: #fff;
  white-space: nowrap;
  text-align: center;
}

.fs-center {
  grid-column: 1;
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #93c5fd;
  font-size: 14px;
  white-space: nowrap;
  min-width: 0;
}

.fs-tag { opacity: 0.8; }
.fs-addr { color: #4ff7ff; font-weight: 800; }
.fs-bal { color: #ffc96b; font-weight: 800; }

.fs-right {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: nowrap;
  white-space: nowrap;
  min-width: 0;
}

.fs-right .fs-btn,
.fs-btn {
  white-space: nowrap;
}

@media (max-width: 900px) {
  .fs-header-wrap {
    width: calc(100vw - 24px);
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px 0;
  }
  .fs-brand,
  .fs-center,
  .fs-right {
    grid-column: 1;
    justify-self: center;
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.fs-btn {
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 15px;
  transition: background .25s, transform .25s, box-shadow .25s;
}

.fs-btn-blue {
  background: var(--accent);
  color: #fff;
}
.fs-btn-blue:hover {
  background: var(--accent-hover);
  transform: scale(1.05);
  box-shadow: 0 0 15px var(--accent);
}

.fs-btn-ghost {
  background: #334155;
  color: #e5e7eb;
}
.fs-btn-ghost:hover {
  background: #475569;
  transform: scale(1.05);
}

/* ============================================================
   STORE GRID
   ============================================================ */
.container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.fs-store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 30px;
  justify-content: center;
  align-items: stretch;
}

/* ============================================================
   PRODUCT CARD
   ============================================================ */
.product-card {
  background: var(--bg-card);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .35);
  transition: transform .25s ease, box-shadow .25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .45);
}

/* ============================================================
   MAIN IMAGE + ARROWS + BADGE
   ============================================================ */
.product-gallery {
  padding: 14px 14px 10px;
}

.pg-main {
  position: relative;
  border-radius: 18px;
  border: 1px solid #1f2937;
  overflow: hidden;
  background: #020617;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pg-main img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  cursor: zoom-in;
  display: block;
}

/* Arrows */
.pg-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,.75);
  background: rgba(15,23,42,.9);
  color: #e5e7eb;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.pg-arrow.left { left: 10px; }
.pg-arrow.right { right: 10px; }
.pg-arrow.disabled { opacity: .22; cursor: default; }

/* Badge */
.pg-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: rgba(15,23,42,.92);
  border: 1px solid rgba(148,163,184,.8);
  color: #e5e7eb;
}
.pg-badge-new  { border-color:#22c55e; color:#bbf7d0; }
.pg-badge-hot  { border-color:#f97316; color:#fed7aa; }
.pg-badge-best { border-color:#eab308; color:#fef9c3; }

/* ============================================================
   VIDEO PREVIEW
   ============================================================ */
.pg-video {
  margin-top: 10px;
  border-radius: 14px;
  border: 1px solid #1f2937;
  background: #020617;
  padding: 8px 10px 10px;
}

.pg-video-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: #9ca3af;
  margin-bottom: 4px;
}

.pg-video-frame iframe,
.pg-video-frame video {
  width: 100%;
  border-radius: 12px;
  border: none;
  max-height: 280px;
  display: block;
}

/* ============================================================
   THUMBNAILS
   ============================================================ */
.pg-thumbs {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.pg-thumb {
  flex: 0 0 auto;
  width: 55px;
  height: 55px;
  border-radius: 12px;
  border: 1px solid #1f2937;
  background: #020617;
  overflow: hidden;
  cursor: pointer;
  opacity: .65;
}

.pg-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pg-thumb.active {
  opacity: 1;
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37,99,235,.7);
}

.pg-thumb-video {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pg-thumb-video-inner {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 30%, #1f2937, #020617 60%, #020617 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pg-play-icon {
  font-size: 20px;
  color: #e5e7eb;
  text-shadow: 0 0 8px rgba(15,23,42,.9);
}

/* Fullscreen video popup (Style B) */
#fs-video-popup {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(10px);
  transition: opacity .18s ease;
}

.fs-video-inner {
  position: relative;
  width: min(96vw, 960px);
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  border: 1px solid #1f2937;
  background: #020617;
  box-shadow: 0 32px 80px rgba(0,0,0,.85);
  overflow: hidden;
}

.fs-video-frame {
  width: 100%;
  height: 100%;
}

.fs-video-frame iframe,
.fs-video-frame video {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 18px;
  display: block;
}

.fs-video-close {
  position: absolute;
  top: 10px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: none;
  background: rgba(15,23,42,.9);
  color: #e5e7eb;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* ============================================================
   PRODUCT INFO
   ============================================================ */
.product-info {
  padding: 16px 18px 20px;
  text-align: center;
}

.product-name {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.product-desc-text {
  font-size: 14px;
  line-height: 1.55;
  color: #9ca3af;
  margin-bottom: 12px;
}

.product-desc-text .desc-more {
  color: #93c5fd;
  font-weight: 600;
  cursor: pointer;
}

/* Price row */
.product-meta {
  font-size: 15px;
  color: #bfdbfe;
  font-weight: 600;
  margin-bottom: 15px;
}

/* ============================================================
   BUY BUTTON
   ============================================================ */
.buy-btn {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  transition: all .25s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,.45);
}

.buy-btn:hover {
  background: var(--accent-hover);
  transform: scale(1.05);
  box-shadow: 0 0 15px var(--accent);
}

/* Download state */
.buy-btn.download-btn {
  background: var(--success);
  box-shadow: 0 8px 24px rgba(22,163,74,.4);
}

/* ============================================================
   TOAST NOTIFICATIONS
   ============================================================ */
#fs_toasts {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  pointer-events: none;
}

#fs_toasts div {
  min-width: 220px;
  max-width: 320px;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 600;
  color: #fff;
  font-size: 15px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .5);
  opacity: 0;
  transform: translateY(10px);
  animation: toastIn .25s ease forwards, toastOut .35s ease 3.5s forwards;
}

#fs_toasts .ok { background: var(--success); }
#fs_toasts .error { background: var(--danger); }

@keyframes toastIn {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes toastOut {
  to { opacity: 0; transform: translateY(-15px); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .fs-store-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 640px) {
  .fs-header-wrap { flex-direction: column; align-items: flex-start; }
  .fs-center { justify-content: flex-start; flex-wrap: wrap; }
  .container { padding: 25px 10px 60px; }
  .product-name { font-size: 17px; }
}


/* Debug banner hidden by default (can be shown by setting localStorage fs_debug_banner='1' and overriding CSS) */
#fsDebugBanner{display:none!important;}


/* FS v4.32 wrong chain subtle disable */
body.fs-wrong-chain button, body.fs-wrong-chain a{ }



/* === FinalSpace v4.34 UI/UX pack === */
#fs-trustbar{
  width:100%;
  padding:10px 14px;
  background:rgba(255,255,255,0.03);
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.fs-trustbar-inner{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}
.fs-badges{ display:flex; gap:8px; flex-wrap:wrap; }
.fs-badge{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(0,170,255,0.12);
  border:1px solid rgba(0,170,255,0.22);
  color:#d7f3ff;
  font-weight:700;
  font-size:12px;
}
.fs-badge-muted{
  background:rgba(255,255,255,0.06);
  border-color:rgba(255,255,255,0.10);
  color:rgba(255,255,255,0.85);
}
.fs-wallet-logos{ display:flex; gap:8px; align-items:center; }
.fs-wlogo{
  width:28px;height:28px;
  display:inline-flex;align-items:center;justify-content:center;
  border-radius:10px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.10);
  font-size:16px;
}

.fs-cta{
  width:100%;
  padding:12px 14px;
  background:rgba(0,0,0,0.25);
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.fs-cta-inner{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}
.fs-cta-title{ color:#fff; font-weight:800; font-size:14px; }
.fs-cta-sub{ color:rgba(255,255,255,0.7); font-size:12px; margin-top:2px; }
.fs-cta-btn{
  padding:8px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.12);
  background:rgba(0,170,255,0.18);
  color:#fff;
  font-weight:800;
  cursor:pointer;
}
.fs-cta-muted{ background:rgba(255,255,255,0.06); }

.fs-disconnect-hint{ padding:14px; }
.fs-disconnect-card{
  max-width:1200px;
  margin:0 auto;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.10);
  border-radius:18px;
  padding:14px 16px;
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}
.fs-disconnect-title{ color:#fff; font-weight:900; font-size:14px; }
.fs-disconnect-sub{ color:rgba(255,255,255,0.75); font-size:12px; margin-top:4px; }

.fs-card{
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  border-color:rgba(255,255,255,0.12)!important;
}
.fs-card:hover{ transform:translateY(-2px); box-shadow:0 18px 45px rgba(0,0,0,0.35); border-color:rgba(0,170,255,0.28)!important; }
.fs-title{ font-size:18px!important; font-weight:900!important; letter-spacing:0.2px; }
.fs-highlights{
  display:flex; gap:10px; flex-wrap:wrap;
  font-size:12px; color:rgba(255,255,255,0.8);
  margin:10px 0 8px;
}
.fs-highlights span{ background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.10); padding:4px 8px; border-radius:999px; }

.fs-owned{
  position:absolute;
  top:14px; right:14px;
  background:rgba(0,255,140,0.14);
  border:1px solid rgba(0,255,140,0.22);
  color:#c8ffe7;
  padding:6px 10px;
  border-radius:999px;
  font-weight:900;
  font-size:12px;
  display:none;
}

.fs-action-btn{
  font-weight:900!important;
  letter-spacing:0.2px;
  border-radius:16px!important;
  transform:translateZ(0);
}

.fs-purchase-overlay{
  position:fixed; inset:0;
  background:rgba(0,0,0,0.55);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:999997;
}
.fs-purchase-box{
  width:min(520px, 92vw);
  background:rgba(15,20,30,0.92);
  border:1px solid rgba(255,255,255,0.10);
  border-radius:20px;
  padding:18px 18px 14px;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  box-shadow:0 24px 60px rgba(0,0,0,0.45);
  text-align:center;
}
.fs-purchase-title{ color:#fff; font-weight:900; font-size:16px; }
.fs-purchase-sub{ color:rgba(255,255,255,0.72); font-size:12px; margin-top:6px; }
.fs-purchase-spinner{
  width:40px;height:40px;margin:14px auto 10px;
  border-radius:50%;
  border:3px solid rgba(255,255,255,0.18);
  border-top-color:rgba(0,170,255,0.95);
  animation:fsSpin 1s linear infinite;
}
@keyframes fsSpin{ to{ transform:rotate(360deg); } }
.fs-purchase-cancel{
  margin-top:6px;
  padding:8px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.12);
  background:rgba(255,255,255,0.06);
  color:#fff;
  font-weight:800;
  cursor:pointer;
}

.fs-skeleton-wrap{
  max-width:1200px;
  margin:10px auto 0;
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
  padding:0 14px;
}
@media (max-width: 980px){ .fs-skeleton-wrap{ grid-template-columns:repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px){ .fs-skeleton-wrap{ grid-template-columns:1fr; } }
.fs-skel-card{
  border-radius:22px;
  border:1px solid rgba(255,255,255,0.10);
  background:rgba(255,255,255,0.03);
  padding:14px;
  overflow:hidden;
}
.fs-skel-media{ height:190px; border-radius:16px; background:rgba(255,255,255,0.06); }
.fs-skel-line{ height:14px; margin-top:12px; border-radius:10px; background:rgba(255,255,255,0.06); }
.fs-skel-line2{ width:70%; }
.fs-skel-btn{ height:44px; margin-top:14px; border-radius:16px; background:rgba(0,170,255,0.14); border:1px solid rgba(0,170,255,0.18); }

.fs-stickybar{
  position:fixed;
  left:0; right:0;
  bottom:0;
  padding:10px 12px;
  background:rgba(10,14,22,0.85);
  border-top:1px solid rgba(255,255,255,0.10);
  z-index:999996;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}
.fs-stickybar-inner{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.fs-stickybar-text{ color:rgba(255,255,255,0.82); font-weight:800; font-size:13px; }
.fs-stickybar-btn{
  padding:10px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.12);
  background:rgba(0,170,255,0.18);
  color:#fff;
  font-weight:900;
  cursor:pointer;
}
/* ===== END MERGED CSS: style.css ===== */

/* ===== START MERGED CSS: fs_index_pro.css ===== */
/* Final Space Pro Index UI v2.2.2 */
/* High-end storefront layer. Does not change wallet/payment logic. */

:root{
  --fs-pro-bg:#070d19;
  --fs-pro-card:rgba(15,23,42,.78);
  --fs-pro-card2:rgba(17,24,39,.92);
  --fs-pro-border:rgba(148,163,184,.18);
  --fs-pro-border-hot:rgba(14,165,233,.35);
  --fs-pro-text:#eef6ff;
  --fs-pro-muted:rgba(226,232,240,.72);
  --fs-pro-blue:#2563eb;
  --fs-pro-cyan:#0ea5e9;
  --fs-pro-green:#10b981;
  --fs-pro-gold:#fbbf24;
}

body{
  background:
    radial-gradient(circle at top left,rgba(14,165,233,.12),transparent 28%),
    radial-gradient(circle at top right,rgba(34,197,94,.09),transparent 24%),
    var(--fs-pro-bg) !important;
}

.fs-header{
  border-bottom:1px solid rgba(148,163,184,.16) !important;
  box-shadow:0 12px 38px rgba(0,0,0,.24);
}

.fs-front-hero-v1723{
  max-width:1320px !important;
  margin:30px auto 18px !important;
}

.fs-front-hero-v1723 .hero-card{
  min-height:310px;
  align-items:stretch !important;
  background:
    radial-gradient(circle at 18% 18%,rgba(14,165,233,.30),transparent 34%),
    radial-gradient(circle at 85% 18%,rgba(16,185,129,.20),transparent 32%),
    linear-gradient(135deg,rgba(15,23,42,.98),rgba(2,6,23,.96)) !important;
  border:1px solid rgba(96,165,250,.26) !important;
  box-shadow:0 30px 90px rgba(0,0,0,.44), inset 0 1px 0 rgba(255,255,255,.06) !important;
  overflow:hidden;
  position:relative;
}

.fs-front-hero-v1723 .hero-card:before{
  content:"";
  position:absolute;
  inset:-1px;
  background:linear-gradient(120deg,rgba(14,165,233,.14),transparent 38%,rgba(16,185,129,.12));
  pointer-events:none;
}

.fs-front-hero-v1723 .hero-copy,
.fs-front-hero-v1723 .hero-actions{position:relative;z-index:2}

.fs-front-hero-v1723 h2{
  font-size:clamp(34px,4.5vw,58px) !important;
  max-width:860px;
  letter-spacing:-.055em !important;
}

.fs-front-hero-v1723 p{
  font-size:17px !important;
  max-width:760px;
}

.fs-front-hero-v1723 .hero-actions{
  min-width:295px !important;
  justify-content:center;
}

.fs-front-hero-v1723 .hero-btn{
  min-height:56px;
  border-radius:18px !important;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.fs-front-hero-v1723 .hero-btn:hover{transform:translateY(-2px)}
.fs-front-hero-v1723 .hero-primary{box-shadow:0 18px 44px rgba(37,99,235,.42) !important}

.fs-pro-wallet-strip,
.fs-featured-product,
.fs-catalog-header,
.fs-pro-benefits{
  max-width:1320px;
  margin:0 auto 22px;
  padding:0 16px;
}

.fs-pro-wallet-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  border:1px solid var(--fs-pro-border);
  background:linear-gradient(135deg,rgba(15,23,42,.88),rgba(2,6,23,.74));
  border-radius:22px;
  padding:16px 18px;
  box-shadow:0 18px 50px rgba(0,0,0,.26);
}

.fs-pro-wallet-icon{
  width:46px;height:46px;border-radius:16px;
  display:flex;align-items:center;justify-content:center;
  color:#a7f3ff;
  background:rgba(14,165,233,.13);
  border:1px solid rgba(14,165,233,.24);
  font-size:24px;
  flex:0 0 auto;
}

.fs-pro-wallet-copy{display:flex;flex-direction:column;gap:3px;flex:1}
.fs-pro-wallet-copy strong{color:#fff;font-size:16px;font-weight:1000}
.fs-pro-wallet-copy span{color:var(--fs-pro-muted);font-size:14px;line-height:1.4}
.fs-pro-wallet-actions{display:flex;gap:10px;flex-wrap:wrap;justify-content:flex-end}

.fs-pro-mini-btn{
  display:inline-flex;align-items:center;justify-content:center;
  min-height:42px;padding:0 15px;border-radius:13px;
  border:1px solid rgba(255,255,255,.12);
  color:#fff;text-decoration:none;font-weight:1000;cursor:pointer;
  background:rgba(255,255,255,.07);
}
.fs-pro-mini-primary{background:linear-gradient(135deg,#0ea5e9,#2563eb);border-color:transparent}
.fs-pro-mini-ghost:hover{background:rgba(255,255,255,.11)}

.fs-featured-shell{
  display:grid;
  grid-template-columns:minmax(280px,.9fr) minmax(360px,1.1fr);
  gap:20px;
  align-items:stretch;
  border:1px solid rgba(14,165,233,.22);
  background:
    radial-gradient(circle at 0% 0%,rgba(14,165,233,.15),transparent 36%),
    linear-gradient(135deg,rgba(15,23,42,.90),rgba(2,6,23,.84));
  border-radius:28px;
  padding:24px;
  box-shadow:0 26px 72px rgba(0,0,0,.32);
}

.fs-pro-kicker{
  display:inline-flex;align-items:center;
  padding:7px 11px;border-radius:999px;
  background:rgba(14,165,233,.12);
  border:1px solid rgba(14,165,233,.27);
  color:#a7f3ff;font-size:12px;text-transform:uppercase;letter-spacing:.12em;font-weight:1000;
}

.fs-featured-left h2,
.fs-catalog-header h2{
  margin:13px 0 8px;
  color:#fff;
  font-size:clamp(26px,3vw,38px);
  line-height:1.1;
  letter-spacing:-.04em;
}

.fs-featured-left p,
.fs-catalog-header p{
  color:var(--fs-pro-muted);
  line-height:1.62;
  margin:0;
  max-width:680px;
}

.fs-featured-points{
  display:flex;flex-wrap:wrap;gap:9px;margin-top:16px
}
.fs-featured-points span{
  padding:8px 10px;border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.055);
  color:#dbeafe;font-size:13px;font-weight:900;
}

.fs-featured-card{
  min-height:210px;
  border-radius:24px;
  border:1px solid rgba(148,163,184,.18);
  background:rgba(2,6,23,.46);
  overflow:hidden;
  display:flex;
  align-items:stretch;
  justify-content:center;
}

.fs-featured-placeholder{
  display:flex;align-items:center;justify-content:center;
  color:rgba(226,232,240,.65);
  padding:22px;text-align:center;font-weight:850;
}

.fs-featured-card .fs-featured-mini-card{
  display:grid;
  grid-template-columns:190px 1fr;
  width:100%;
  min-height:210px;
}

.fs-featured-mini-media{
  background:rgba(255,255,255,.05);
  display:flex;align-items:center;justify-content:center;
  padding:14px;
  overflow:hidden;
}
.fs-featured-mini-media img,
.fs-featured-mini-media video{width:100%;height:100%;max-height:220px;object-fit:cover;border-radius:16px}
.fs-featured-mini-body{padding:20px;display:flex;flex-direction:column;justify-content:center;gap:10px}
.fs-featured-mini-body h3{margin:0;color:#fff;font-size:24px;line-height:1.1}
.fs-featured-mini-body p{margin:0;color:var(--fs-pro-muted);line-height:1.45;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.fs-featured-mini-price{font-weight:1000;color:#fde68a}
.fs-featured-mini-action{display:inline-flex;width:max-content;min-height:44px;align-items:center;justify-content:center;border-radius:13px;padding:0 15px;background:linear-gradient(135deg,#0ea5e9,#2563eb);color:#fff;font-weight:1000;text-decoration:none}

.fs-catalog-header{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-top:22px;
}

.fs-catalog-tools{display:flex;align-items:center;gap:9px;flex-wrap:wrap;justify-content:flex-end}
.fs-filter-chip,
.fs-sort-select{
  min-height:42px;border-radius:13px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.065);
  color:#fff;font-weight:900;
  padding:0 13px;
}
.fs-filter-chip{cursor:pointer}
.fs-filter-chip.active{
  background:linear-gradient(135deg,rgba(14,165,233,.95),rgba(37,99,235,.95));
  border-color:transparent;
}
.fs-sort-select{outline:none}

.fs-pro-products-main{
  max-width:1320px !important;
}

.fs-pro-store-grid{
  gap:26px !important;
  align-items:stretch !important;
}

#store > *{
  transition:transform .20s ease, box-shadow .20s ease, border-color .20s ease, filter .20s ease;
}

#store > *.fs-pro-card-ready{
  position:relative;
  overflow:hidden;
  display:flex !important;
  flex-direction:column !important;
  min-height:560px;
  border-radius:24px !important;
  border:1px solid rgba(148,163,184,.18) !important;
  background:
    radial-gradient(circle at top,rgba(14,165,233,.08),transparent 36%),
    linear-gradient(180deg,rgba(15,23,42,.94),rgba(2,6,23,.96)) !important;
  box-shadow:0 20px 64px rgba(0,0,0,.32);
}

#store > *.fs-pro-card-ready:hover{
  transform:translateY(-6px);
  border-color:rgba(14,165,233,.42) !important;
  box-shadow:0 30px 90px rgba(0,0,0,.46),0 0 0 1px rgba(14,165,233,.12);
}

#store > *.fs-pro-card-ready img,
#store > *.fs-pro-card-ready video{
  transition:transform .22s ease, filter .22s ease;
}

#store > *.fs-pro-card-ready:hover img,
#store > *.fs-pro-card-ready:hover video{
  transform:scale(1.025);
}

#store > *.fs-pro-card-ready h2,
#store > *.fs-pro-card-ready h3,
#store > *.fs-pro-card-ready .title,
#store > *.fs-pro-card-ready .product-title{
  letter-spacing:-.025em;
}

#store > *.fs-pro-card-ready p,
#store > *.fs-pro-card-ready .description,
#store > *.fs-pro-card-ready .product-description{
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

#store > *.fs-pro-hidden{display:none !important}

.fs-pro-card-footer{
  margin-top:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding-top:12px;
}
.fs-pro-card-meta{
  display:flex;gap:7px;flex-wrap:wrap;align-items:center;
}
.fs-pro-card-meta span{
  font-size:11px;font-weight:900;color:#bfdbfe;
  border:1px solid rgba(148,163,184,.16);
  background:rgba(255,255,255,.05);
  border-radius:999px;padding:6px 8px;
}

.fs-pro-benefits{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin-top:28px;
}

.fs-benefit-card{
  border:1px solid var(--fs-pro-border);
  background:linear-gradient(180deg,rgba(15,23,42,.84),rgba(2,6,23,.78));
  border-radius:22px;
  padding:18px;
  box-shadow:0 18px 48px rgba(0,0,0,.24);
}
.fs-benefit-card span{font-size:25px}
.fs-benefit-card strong{display:block;color:#fff;font-size:16px;margin:8px 0 5px;font-weight:1000}
.fs-benefit-card p{margin:0;color:var(--fs-pro-muted);font-size:13px;line-height:1.48}

#fs-pro-updates-v1723{
  max-width:1320px !important;
  margin-top:28px !important;
}
#fs-pro-updates-v1723 .fs-pro-card{
  border-radius:28px !important;
  border:1px solid rgba(14,165,233,.22) !important;
  background:
    radial-gradient(circle at 8% 12%,rgba(14,165,233,.16),transparent 34%),
    radial-gradient(circle at 95% 15%,rgba(16,185,129,.12),transparent 34%),
    linear-gradient(135deg,rgba(15,23,42,.95),rgba(2,6,23,.94)) !important;
  box-shadow:0 22px 64px rgba(0,0,0,.30);
}

footer{
  max-width:1320px !important;
}

@media(max-width:980px){
  .fs-pro-wallet-inner,
  .fs-catalog-header{flex-direction:column;align-items:flex-start}
  .fs-featured-shell{grid-template-columns:1fr}
  .fs-featured-card .fs-featured-mini-card{grid-template-columns:1fr}
  .fs-featured-mini-media{min-height:190px}
  .fs-pro-benefits{grid-template-columns:repeat(2,1fr)}
}

@media(max-width:640px){
  .fs-front-hero-v1723 h2{font-size:32px !important}
  .fs-pro-wallet-actions,.fs-catalog-tools{width:100%}
  .fs-pro-mini-btn,.fs-filter-chip,.fs-sort-select{flex:1}
  .fs-pro-benefits{grid-template-columns:1fr}
  #store > *.fs-pro-card-ready{min-height:auto}
}


/* v2.2.1 correction: no fake product meta pills, keep catalog as normal premium grid */
.fs-pro-card-footer,
.fs-pro-card-meta{display:none!important}

/* Force professional catalog grid instead of one huge full-width product */
#store.fs-pro-store-grid,
.fs-pro-store-grid{
  display:grid!important;
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  gap:26px!important;
  align-items:stretch!important;
}

/* Product cards should stay card-sized, not become one full-width banner */
#store > *.fs-pro-card-ready{
  min-height:0!important;
  height:auto!important;
  max-width:none!important;
  width:auto!important;
}

/* Keep media under control without changing purchase/download logic */
#store > *.fs-pro-card-ready img,
#store > *.fs-pro-card-ready video{
  max-height:250px!important;
  object-fit:cover!important;
}

/* Do not let a product's main media turn into a page-wide hero */
#store > *.fs-pro-card-ready > img,
#store > *.fs-pro-card-ready > video,
#store > *.fs-pro-card-ready picture img{
  width:100%!important;
  max-height:250px!important;
  border-radius:18px!important;
}

/* Keep long descriptions from stretching the card */
#store > *.fs-pro-card-ready p,
#store > *.fs-pro-card-ready .description,
#store > *.fs-pro-card-ready .product-description{
  max-height:48px!important;
  overflow:hidden!important;
}

/* Keep CTA section inside normal card scale */
#store > *.fs-pro-card-ready button,
#store > *.fs-pro-card-ready .btn,
#store > *.fs-pro-card-ready a[class*="buy"],
#store > *.fs-pro-card-ready button[class*="buy"]{
  max-width:100%!important;
}

/* Filters should be helpful but not look like the whole catalog disappeared */
.fs-filter-chip.active{
  box-shadow:0 10px 28px rgba(37,99,235,.24);
}

@media(max-width:1100px){
  #store.fs-pro-store-grid,
  .fs-pro-store-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}
}
@media(max-width:720px){
  #store.fs-pro-store-grid,
  .fs-pro-store-grid{grid-template-columns:1fr!important}
  #store > *.fs-pro-card-ready img,
  #store > *.fs-pro-card-ready video{max-height:230px!important}
}


/* v2.2.2 correction: larger featured product image + dark visible sort dropdown */
.fs-featured-card .fs-featured-mini-card{
  grid-template-columns:285px 1fr!important; /* 50% wider than previous 190px */
}

.fs-featured-mini-media{
  min-width:285px!important;
  padding:16px!important;
  background:linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.025))!important;
}

.fs-featured-mini-media img,
.fs-featured-mini-media video{
  width:100%!important;
  height:100%!important;
  max-height:255px!important;
  object-fit:cover!important;
  border-radius:18px!important;
}

/* Firefox/Chrome native dropdown visibility */
.fs-sort-select{
  background:#111827!important;
  color:#ffffff!important;
  border:1px solid rgba(148,163,184,.32)!important;
  box-shadow:0 12px 30px rgba(0,0,0,.22)!important;
  color-scheme:dark;
}

.fs-sort-select option{
  background:#111827!important;
  color:#ffffff!important;
  font-weight:800;
}

.fs-sort-select:focus{
  outline:2px solid rgba(14,165,233,.55)!important;
  outline-offset:2px;
}

@media(max-width:980px){
  .fs-featured-card .fs-featured-mini-card{
    grid-template-columns:1fr!important;
  }
  .fs-featured-mini-media{
    min-width:0!important;
    min-height:230px!important;
  }
}
/* ===== END MERGED CSS: fs_index_pro.css ===== */

/* ===== START MERGED CSS: fs_customer_modules_current.css ===== */
/* Final Space v10.9 no-cleanup direct file replacement. Gallery/image/video/lightbox untouched. */
.fs-v104-top-btn{display:inline-flex!important;align-items:center!important;justify-content:center!important;margin:0 6px!important;padding:11px 17px!important;min-height:42px!important;border-radius:10px!important;border:0!important;background:#344258!important;color:#fff!important;font-weight:900!important;font-size:15px!important;cursor:pointer!important;text-decoration:none!important;white-space:nowrap!important;box-shadow:0 8px 22px rgba(0,0,0,.18)!important}
.fs-v104-top-btn:hover{background:#2563eb!important;color:#fff!important}.fs-v104-download-btn{background:linear-gradient(135deg,#16b957,#0d9647)!important;color:#fff!important;border:0!important;box-shadow:0 14px 34px rgba(22,185,91,.30)!important;cursor:pointer!important;opacity:1!important;pointer-events:auto!important;text-decoration:none!important}.fs-v104-owned-badge{position:absolute!important;top:14px!important;right:14px!important;z-index:25!important;padding:8px 13px!important;border:1px solid rgba(34,197,94,.50)!important;border-radius:999px!important;background:rgba(21,128,61,.78)!important;color:#dcfce7!important;font-weight:900!important;font-size:13px!important;backdrop-filter:blur(8px)!important;box-shadow:0 10px 26px rgba(0,0,0,.22)!important}.fs-v104-toast{position:fixed!important;left:50%!important;top:50%!important;transform:translate(-50%,-50%)!important;z-index:10000000!important;background:#071527!important;color:#fff!important;border:1px solid #38bdf8!important;border-radius:18px!important;padding:18px 24px!important;box-shadow:0 22px 70px rgba(0,0,0,.55)!important;font-weight:950!important;text-align:center!important}.fs-v104-modal{position:fixed!important;inset:0!important;background:rgba(4,10,22,.84)!important;z-index:9999999!important;display:flex!important;align-items:center!important;justify-content:center!important;padding:24px!important}.fs-v104-panel{width:min(760px,94vw)!important;max-height:88vh!important;overflow:auto!important;border:1px solid rgba(56,189,248,.28)!important;border-radius:24px!important;background:#0b1424!important;color:#fff!important;padding:28px!important;box-shadow:0 24px 80px rgba(0,0,0,.65)!important;position:relative!important;font-family:inherit!important}.fs-v104-wide{width:min(1120px,96vw)!important}.fs-v104-panel h2{margin:0 0 16px!important;font-size:34px!important;line-height:1.1!important;color:#93c5fd!important}.fs-v104-panel h3{margin:22px 0 12px!important;font-size:21px!important;color:#e5f3ff!important}.fs-v104-panel p{color:#dbeafe!important;font-size:17px!important;line-height:1.45!important}.fs-v104-close{position:absolute!important;top:16px!important;right:16px!important;width:44px!important;height:44px!important;border-radius:13px!important;border:1px solid rgba(148,163,184,.25)!important;background:#334155!important;color:#fff!important;font-size:26px!important;cursor:pointer!important}.fs-v104-summary{display:grid!important;grid-template-columns:repeat(auto-fit,minmax(170px,1fr))!important;gap:14px!important;margin:16px 0 22px!important}.fs-v104-summary div{border:1px solid rgba(148,163,184,.22)!important;border-radius:17px!important;background:rgba(255,255,255,.045)!important;padding:15px!important}.fs-v104-summary b{display:block!important;color:#f8fafc!important;margin-bottom:7px!important}.fs-v104-summary span{color:#93c5fd!important;font-weight:900!important}.fs-v104-list{display:grid!important;gap:13px!important}.fs-v104-row{display:grid!important;grid-template-columns:1fr auto!important;gap:16px!important;align-items:center!important;border:1px solid rgba(148,163,184,.18)!important;background:rgba(15,23,42,.74)!important;border-radius:18px!important;padding:16px!important}.fs-v104-row-main b{display:block!important;color:#fff!important;font-size:18px!important;margin-bottom:6px!important}.fs-v104-row-main span,.fs-v104-row-main small{display:block!important;color:#bfdbfe!important;margin-top:4px!important}.fs-v104-row-side{display:grid!important;gap:8px!important;justify-items:end!important}.fs-v104-row-side strong{color:#fef08a!important;font-size:17px!important}.fs-v104-row-side em{font-style:normal!important;color:#86efac!important;font-weight:800!important}.fs-v104-row-side button{min-width:150px!important;border-radius:14px!important;padding:12px 18px!important;font-weight:950!important}.fs-v104-copy{display:grid!important;grid-template-columns:1fr auto!important;gap:10px!important;margin:16px 0!important}.fs-v104-copy input{min-width:0!important;border:1px solid rgba(148,163,184,.25)!important;border-radius:13px!important;background:#111827!important;color:#dbeafe!important;padding:13px!important;font-weight:800!important}.fs-v104-copy button,.fs-v104-primary{border:0!important;border-radius:13px!important;background:#2563eb!important;color:#fff!important;padding:13px 20px!important;font-weight:950!important;cursor:pointer!important}.fs-v104-table-wrap{overflow:auto!important;border:1px solid rgba(148,163,184,.18)!important;border-radius:16px!important;background:rgba(2,6,23,.25)!important}.fs-v104-table-wrap table{width:100%!important;border-collapse:collapse!important;min-width:900px!important}.fs-v104-table-wrap th,.fs-v104-table-wrap td{padding:12px 14px!important;border-bottom:1px solid rgba(148,163,184,.14)!important;text-align:left!important;color:#dbeafe!important;vertical-align:top!important}.fs-v104-table-wrap th{color:#fff!important;background:rgba(255,255,255,.06)!important;font-weight:950!important}.fs-v104-table-wrap td b{color:#fff!important}.fs-v104-table-wrap td small{display:block!important;color:#93c5fd!important;margin-top:3px!important}.fs-v104-chip{display:inline-flex!important;align-items:center!important;gap:6px!important;border:1px solid rgba(147,197,253,.24)!important;background:rgba(59,130,246,.10)!important;color:#bfdbfe!important;border-radius:999px!important;padding:5px 9px!important;font-weight:850!important;font-size:12px!important}.fs-v104-status-paid{color:#86efac!important}.fs-v104-status-pending{color:#fde68a!important}.fs-v104-status-rejected{color:#fca5a5!important}.fs-v104-empty{border:1px dashed rgba(147,197,253,.32)!important;border-radius:18px!important;padding:18px!important;background:rgba(59,130,246,.06)!important}.fs-v104-empty b{display:block!important;color:#fff!important;margin-bottom:6px!important}.fs-v104-empty span,.fs-v104-loading{color:#bfdbfe!important}.fs-v104-actions{display:flex!important;gap:10px!important;flex-wrap:wrap!important;margin:14px 0 18px!important}.fs-v104-actions button{border:1px solid rgba(147,197,253,.25)!important;background:rgba(59,130,246,.16)!important;color:#e0f2fe!important;border-radius:12px!important;padding:10px 14px!important;font-weight:900!important;cursor:pointer!important}.fs-v104-note{border-left:3px solid #38bdf8!important;background:rgba(56,189,248,.08)!important;padding:12px 14px!important;border-radius:12px!important;color:#dbeafe!important}.fs-v104-muted{color:#93a4bd!important}.fs-v104-money{color:#fef08a!important;font-weight:950!important}.fs-v104-green{color:#86efac!important;font-weight:950!important}@media(max-width:740px){.fs-v104-top-btn{padding:9px 11px!important;font-size:13px!important;margin:3px!important}.fs-v104-row{grid-template-columns:1fr!important}.fs-v104-row-side{justify-items:stretch!important}.fs-v104-copy{grid-template-columns:1fr!important}.fs-v104-panel{padding:22px!important}.fs-v104-panel h2{font-size:28px!important}.fs-v104-summary{grid-template-columns:1fr 1fr!important}.fs-v104-modal{padding:12px!important}}

/* v10.8 cleanup */
.fs-v104-modal .fs-v104-row-side > .fs-v104-chip,.fs-v104-modal .fs-v104-row-side > .pill,.fs-v104-modal .fs-v104-row-side > .badge,.fs-v104-modal .fs-v104-row-side > .tag{display:none!important;}
.fs-v108-hide-wallet-warning{display:none!important;visibility:hidden!important;height:0!important;overflow:hidden!important;margin:0!important;padding:0!important;border:0!important;}


/* v10.9 direct replacement cleanup - no cleanup PHP needed */
.fs-v108-hide-wallet-warning{display:none!important;visibility:hidden!important;height:0!important;max-height:0!important;overflow:hidden!important;margin:0!important;padding:0!important;border:0!important;opacity:0!important;pointer-events:none!important;}
.fs-v104-modal .fs-v104-row-side .fs-v104-chip,
.fs-v104-modal .fs-v104-row-side .pill,
.fs-v104-modal .fs-v104-row-side .badge,
.fs-v104-modal .fs-v104-row-side .tag{display:none!important;visibility:hidden!important;}
.fs-v104-modal .fs-v104-row-side .fs-v104-download-btn{display:inline-flex!important;align-items:center!important;justify-content:center!important;min-width:180px!important;}


/* v11.0 direct cleanup: no duplicate helper pills inside My Purchases download row */
.fs-v104-modal .fs-v104-row-side .fs-v104-chip,
.fs-v104-modal .fs-v104-row-side .pill,
.fs-v104-modal .fs-v104-row-side .badge,
.fs-v104-modal .fs-v104-row-side .tag,
.fs-v104-modal .fs-v104-row-side [class*="chip"],
.fs-v104-modal .fs-v104-row-side [class*="pill"],
.fs-v104-modal .fs-v104-row-side [class*="badge"]{display:none!important;visibility:hidden!important;width:0!important;height:0!important;overflow:hidden!important;margin:0!important;padding:0!important;border:0!important;}
.fs-v104-modal .fs-v104-download-btn{display:inline-flex!important;align-items:center!important;justify-content:center!important;min-width:260px!important;gap:0!important;}
.fs-v108-hide-wallet-warning{display:none!important;visibility:hidden!important;height:0!important;min-height:0!important;overflow:hidden!important;margin:0!important;padding:0!important;border:0!important;}


/* v11.1 fixed-size header buttons + no duplicate helper pills */
header .fs-v104-top-btn, nav .fs-v104-top-btn, .navbar .fs-v104-top-btn, .topbar .fs-v104-top-btn, .site-header .fs-v104-top-btn, .header .fs-v104-top-btn{height:42px!important;min-height:42px!important;max-height:42px!important;padding:0 16px!important;margin:0 5px!important;border-radius:10px!important;font-size:15px!important;line-height:42px!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;vertical-align:middle!important;box-sizing:border-box!important;}
.fs-v104-modal .fs-v104-row-side [class*="chip"],.fs-v104-modal .fs-v104-row-side [class*="pill"],.fs-v104-modal .fs-v104-row-side [class*="badge"],.fs-v104-modal .fs-v104-row-side .tag,.fs-v104-modal .fs-v104-row-side span:not(.fs-keep),.fs-v104-modal .fs-v104-row-side small{display:none!important;visibility:hidden!important;width:0!important;height:0!important;overflow:hidden!important;margin:0!important;padding:0!important;border:0!important;}
.fs-v104-modal .fs-v104-row-side strong,.fs-v104-modal .fs-v104-row-side em,.fs-v104-modal .fs-v104-row-side .fs-v104-download-btn{display:inline-flex!important;visibility:visible!important;width:auto!important;height:auto!important;}
.fs-v104-modal .fs-v104-download-btn{min-width:260px!important;min-height:58px!important;border-radius:16px!important;font-size:15px!important;font-weight:950!important;}
.fs-v108-hide-wallet-warning{display:none!important;visibility:hidden!important;height:0!important;min-height:0!important;margin:0!important;padding:0!important;overflow:hidden!important;}
/* ===== END MERGED CSS: fs_customer_modules_current.css ===== */

/* ===== START MERGED CSS: fs_my_purchases_everywhere.css ===== */
/* FinalSpace v188 - My Purchases Pro ONLY */
.fs-v188-mp-overlay{
  position:fixed!important;
  inset:0!important;
  z-index:2147483000!important;
  background:rgba(0,0,0,.72)!important;
  backdrop-filter:blur(8px)!important;
  display:flex!important;
  align-items:flex-start!important;
  justify-content:center!important;
  padding:28px 14px!important;
  overflow:auto!important;
}
.fs-v188-mp-modal{
  width:min(1170px,calc(100vw - 34px))!important;
  margin:0 auto!important;
  background:#0d1628!important;
  border:1px solid rgba(56,189,248,.28)!important;
  border-radius:18px!important;
  box-shadow:0 22px 80px rgba(0,0,0,.55)!important;
  color:#eaf3ff!important;
  padding:24px!important;
  font-family:Inter,system-ui,Segoe UI,Arial,sans-serif!important;
}
.fs-v188-mp-head{
  display:flex!important;
  align-items:flex-start!important;
  justify-content:space-between!important;
  gap:16px!important;
  margin-bottom:14px!important;
}
.fs-v188-mp-title{
  font-size:28px!important;
  line-height:1.1!important;
  font-weight:900!important;
  color:#93c5fd!important;
  margin:0 0 8px!important;
}
.fs-v188-mp-wallet{color:#aab7c9!important;font-weight:800!important}
.fs-v188-mp-close{
  background:#33445e!important;
  color:#fff!important;
  border:1px solid rgba(255,255,255,.14)!important;
  border-radius:12px!important;
  padding:10px 18px!important;
  font-weight:900!important;
  cursor:pointer!important;
}
.fs-v188-mp-stats{
  display:grid!important;
  grid-template-columns:repeat(4,minmax(0,1fr))!important;
  gap:12px!important;
  margin:16px 0 18px!important;
}
.fs-v188-mp-stat{
  background:#101b2f!important;
  border:1px solid rgba(148,163,184,.18)!important;
  border-radius:14px!important;
  padding:14px 16px!important;
}
.fs-v188-mp-stat span{
  display:block!important;
  font-size:12px!important;
  text-transform:uppercase!important;
  letter-spacing:.06em!important;
  color:#bcd2ee!important;
  font-weight:900!important;
  margin-bottom:8px!important;
}
.fs-v188-mp-stat strong{
  display:block!important;
  font-size:18px!important;
  font-weight:1000!important;
  color:#fff!important;
}
.fs-v188-yellow{color:#fde047!important}
.fs-v188-green{color:#6ee7a2!important}
.fs-v188-mp-list{
  display:flex!important;
  flex-direction:column!important;
  gap:12px!important;
}
.fs-v188-mp-item{
  display:grid!important;
  grid-template-columns:minmax(0,1fr) auto!important;
  gap:16px!important;
  align-items:center!important;
  background:#111827!important;
  border:1px solid rgba(148,163,184,.18)!important;
  border-radius:14px!important;
  padding:16px!important;
}
.fs-v188-mp-name{
  font-size:17px!important;
  font-weight:1000!important;
  color:#fff!important;
  margin-bottom:5px!important;
}
.fs-v188-mp-meta{
  color:#adb9cc!important;
  font-size:13px!important;
  line-height:1.55!important;
}
.fs-v188-mp-actions{
  display:flex!important;
  gap:10px!important;
  align-items:center!important;
  justify-content:flex-end!important;
}
.fs-v188-tx{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  background:#07385e!important;
  color:#dff7ff!important;
  border:1px solid rgba(56,189,248,.35)!important;
  border-radius:11px!important;
  text-decoration:none!important;
  padding:10px 15px!important;
  font-weight:900!important;
}
.fs-v188-download{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  background:#22c55e!important;
  color:#fff!important;
  border:0!important;
  border-radius:11px!important;
  padding:11px 24px!important;
  font-weight:1000!important;
  cursor:pointer!important;
}
.fs-v188-mp-empty{
  background:#111827!important;
  border:1px solid rgba(148,163,184,.18)!important;
  border-radius:14px!important;
  padding:18px!important;
  color:#cbd5e1!important;
  font-weight:800!important;
}
@media(max-width:780px){
  .fs-v188-mp-stats{grid-template-columns:1fr 1fr!important}
  .fs-v188-mp-item{grid-template-columns:1fr!important}
  .fs-v188-mp-actions{justify-content:flex-start!important;flex-wrap:wrap!important}
  .fs-v188-mp-modal{padding:18px!important}
}
/* ===== END MERGED CSS: fs_my_purchases_everywhere.css ===== */

/* ===== START MERGED CSS: fs_original_gallery_patch_v101.css ===== */
/* Final Space v10.1 original card media repair only. No replacement catalog. */
#fs-v80-products-wrap,#fs-v77-products-wrap,#fs-v79-products-wrap,.fs-v79-wrap{display:none!important;visibility:hidden!important;height:0!important;overflow:hidden!important;margin:0!important;padding:0!important;border:0!important;}
.fs-v100-old-media-hidden,.fs-v97-old-media-hidden,.fs-v95-empty-thumb,.fs-v95-hidden-broken-thumb{display:none!important;visibility:hidden!important;width:0!important;height:0!important;min-width:0!important;min-height:0!important;margin:0!important;padding:0!important;border:0!important;overflow:hidden!important;opacity:0!important;pointer-events:none!important;}
.fs-v100-gallery-strip{display:flex!important;align-items:center!important;gap:10px!important;margin:12px 0 20px!important;min-height:58px!important;flex-wrap:nowrap!important;overflow-x:auto!important;overflow-y:hidden!important;max-width:100%!important;scrollbar-width:thin!important;clear:both!important;}
.fs-v100-thumb{width:58px!important;height:58px!important;min-width:58px!important;border-radius:13px!important;border:2px solid rgba(42,129,255,.88)!important;background:rgba(8,16,32,.92)!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;cursor:pointer!important;overflow:hidden!important;box-shadow:0 0 0 1px rgba(255,255,255,.08) inset!important;padding:0!important;position:relative!important;}
.fs-v100-thumb img{width:100%!important;height:100%!important;object-fit:cover!important;display:block!important;border:0!important;border-radius:11px!important;}
.fs-v100-thumb.fs-v100-active{border-color:#51a7ff!important;box-shadow:0 0 0 2px rgba(42,129,255,.25),0 0 18px rgba(42,129,255,.35)!important;}
.fs-v100-thumb-video:before{content:'▶';position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);z-index:2;color:#fff;font-size:20px;line-height:1;text-shadow:0 2px 8px rgba(0,0,0,.9);background:rgba(0,0,0,.48);width:34px;height:34px;border-radius:999px;display:flex;align-items:center;justify-content:center;padding-left:2px;}
.fs-v100-thumb-video img{opacity:.82!important;}
.fs-v100-play-only{color:#fff!important;font-size:24px!important;line-height:1!important;}
.fs-v100-main-video{width:100%!important;max-width:100%!important;border-radius:18px!important;display:block!important;background:#000!important;object-fit:cover!important;aspect-ratio:16/9!important;}
.fs-v100-lightbox{position:fixed!important;inset:0!important;background:rgba(4,10,22,.92)!important;z-index:999999!important;display:flex!important;align-items:center!important;justify-content:center!important;padding:34px!important;}
.fs-v100-lightbox img,.fs-v100-lightbox video{max-width:min(94vw,1300px)!important;max-height:88vh!important;border-radius:18px!important;box-shadow:0 24px 80px rgba(0,0,0,.65)!important;background:#000!important;}
.fs-v100-lightbox button{position:fixed!important;top:22px!important;right:22px!important;width:44px!important;height:44px!important;border-radius:999px!important;border:1px solid rgba(255,255,255,.35)!important;background:rgba(15,23,42,.85)!important;color:#fff!important;font-size:28px!important;line-height:1!important;cursor:pointer!important;}


/* v10.1 polish: remove previous/old duplicate gallery rows and blank placeholder boxes */
.fs-v97-gallery-strip{display:none!important;visibility:hidden!important;height:0!important;overflow:hidden!important;margin:0!important;padding:0!important;border:0!important;}
.fs-v100-gallery-strip .fs-v100-thumb:empty{display:none!important;}
.fs-v100-gallery-strip{margin-top:10px!important;margin-bottom:22px!important;}


/* v10.1: kill leftover v97 rows/placeholders and support iframe video lightbox */
.fs-v97-gallery-strip{display:none!important;visibility:hidden!important;height:0!important;overflow:hidden!important;margin:0!important;padding:0!important;border:0!important;}
.fs-v100-lightbox iframe{width:min(94vw,1100px)!important;height:min(72vh,620px)!important;border:0!important;border-radius:18px!important;background:#000!important;box-shadow:0 24px 80px rgba(0,0,0,.65)!important;}
.fs-v100-thumb-video{position:relative!important;}


/* v10.1: image lightbox has real previous/next arrows; video behavior unchanged */
.fs-v100-stage{max-width:min(94vw,1300px)!important;max-height:88vh!important;display:flex!important;align-items:center!important;justify-content:center!important;position:relative!important;}
.fs-v100-stage img,.fs-v100-stage video{max-width:min(94vw,1300px)!important;max-height:88vh!important;border-radius:18px!important;box-shadow:0 24px 80px rgba(0,0,0,.65)!important;background:#000!important;object-fit:contain!important;}
.fs-v100-close{position:fixed!important;top:22px!important;right:22px!important;width:44px!important;height:44px!important;border-radius:999px!important;border:1px solid rgba(255,255,255,.35)!important;background:rgba(15,23,42,.85)!important;color:#fff!important;font-size:28px!important;line-height:1!important;cursor:pointer!important;z-index:1000001!important;}
.fs-v100-nav{position:fixed!important;top:50%!important;transform:translateY(-50%)!important;width:52px!important;height:52px!important;border-radius:999px!important;border:1px solid rgba(255,255,255,.35)!important;background:rgba(15,23,42,.78)!important;color:#fff!important;font-size:42px!important;line-height:42px!important;display:flex!important;align-items:center!important;justify-content:center!important;cursor:pointer!important;z-index:1000001!important;padding:0!important;}
.fs-v100-prev{left:28px!important;}
.fs-v100-next{right:28px!important;}
.fs-v100-nav:hover,.fs-v100-close:hover{background:rgba(37,99,235,.88)!important;}
.fs-v100-lightbox iframe{width:min(94vw,1100px)!important;height:min(72vh,620px)!important;border:0!important;border-radius:18px!important;background:#000!important;box-shadow:0 24px 80px rgba(0,0,0,.65)!important;}

/* v10.1: hide previous v99 injected rows if browser still has them */
.fs-v99-gallery-strip{display:none!important;visibility:hidden!important;height:0!important;overflow:hidden!important;margin:0!important;padding:0!important;border:0!important;}


/* v10.1: force image-lightbox previous/next arrows visible; video lightbox unchanged */
.fs-v100-lightbox .fs-v100-nav{display:flex!important;visibility:visible!important;opacity:1!important;position:fixed!important;top:50%!important;transform:translateY(-50%)!important;width:58px!important;height:58px!important;min-width:58px!important;min-height:58px!important;border-radius:999px!important;border:1px solid rgba(255,255,255,.55)!important;background:rgba(15,23,42,.88)!important;color:#fff!important;font-size:48px!important;font-weight:700!important;line-height:1!important;align-items:center!important;justify-content:center!important;z-index:1000005!important;cursor:pointer!important;box-shadow:0 12px 35px rgba(0,0,0,.55)!important;padding:0!important;margin:0!important;}
.fs-v100-lightbox .fs-v100-prev{left:26px!important;right:auto!important;}
.fs-v100-lightbox .fs-v100-next{right:26px!important;left:auto!important;}
.fs-v100-lightbox .fs-v100-close{z-index:1000006!important;}
@media (max-width:700px){.fs-v100-lightbox .fs-v100-prev{left:8px!important}.fs-v100-lightbox .fs-v100-next{right:8px!important}.fs-v100-lightbox .fs-v100-nav{width:46px!important;height:46px!important;font-size:38px!important}}
/* ===== END MERGED CSS: fs_original_gallery_patch_v101.css ===== */






/* ===== FinalSpace v211 inline header/state final override ===== */
#fs-main-header-v211{height:76px!important;min-height:76px!important;display:block!important;overflow:visible!important}
#fs-header-row-v211{display:flex!important;flex-direction:row!important;align-items:center!important;justify-content:space-between!important;flex-wrap:nowrap!important;height:76px!important;min-height:76px!important}
#fs-wallet-block-v211{order:1!important}
#fs-brand-v211{order:2!important}
#fs-menu-block-v211{order:3!important}
#fs-main-header-v211 .fs-btn{white-space:nowrap!important;flex:0 0 auto!important}
body.fs-wallet-disconnected #fs-btn-owned,
body.fs-wallet-disconnected #fs-btn-referrals,
body.fs-wallet-disconnected #fs-btn-payouts-anchor,
body.fs-wallet-disconnected #fs-btn-disconnect{display:none!important}
body.fs-wallet-disconnected #fs-btn-connect{display:inline-flex!important}
body.fs-wallet-connected #fs-btn-connect{display:none!important}
@media(max-width:900px){
  #fs-main-header-v211{height:auto!important;min-height:132px!important}
  #fs-header-row-v211{height:auto!important;min-height:132px!important;flex-direction:column!important;justify-content:center!important;gap:10px!important;padding:12px 0!important}
  #fs-wallet-block-v211,#fs-menu-block-v211{min-width:0!important;justify-content:center!important;flex-wrap:wrap!important}
}
.product-gallery .pg-main img,.product-card .pg-main img{display:block!important;visibility:visible!important;opacity:1!important;width:100%!important;height:100%!important;object-fit:cover!important}
.pg-thumb img{display:block!important;visibility:visible!important;opacity:1!important}
/* ===== End FinalSpace v211 inline header/state final override ===== */


/* ============================================================
   v214 gallery image visibility (clean rule, not header hack)
   ============================================================ */
.product-gallery .pg-main img,
.product-card .pg-main img,
.pg-thumb img {
  display: block;
  visibility: visible;
  opacity: 1;
}
.product-gallery .pg-main img,
.product-card .pg-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
