

/* ===== Combined from style.css — Final Space public bundle v456 ===== */
/* FinalSpace v242 MEDIA-GALLERY-THUMBS-FIX 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; }
.pg-badge-featured { border-color:#38bdf8; color:#cffafe; }

/* ============================================================
   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;
  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;
}
.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!important;
  inset:0!important;
  width:100vw!important;
  height:100vh!important;
  height:100dvh!important;
  background:rgba(0,0,0,0.55)!important;
  display:flex;
  align-items:flex-start!important;
  justify-content:center!important;
  z-index:2147483645!important;
  box-sizing:border-box!important;
  padding:clamp(96px,18vh,170px) 16px 24px!important;
  overflow:auto!important;
}
.fs-purchase-box{
  width:min(520px, 92vw);
  max-height:calc(100vh - 48px);
  max-height:calc(100dvh - 48px);
  overflow:auto;
  background:rgba(15,20,30,0.94);
  border:1px solid rgba(255,255,255,0.10);
  border-radius:20px;
  padding:18px 18px 14px;
  box-shadow:0 24px 60px rgba(0,0,0,0.45);
  text-align:center;
  margin:0!important;
  transform:none!important;
}
@media(max-width:640px){
  .fs-purchase-overlay{
    padding:clamp(80px,14vh,130px) 14px 24px!important;
  }
}
.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;
}
.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;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;
  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:72px 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-thumb-wrap{width:72px!important;height:72px!important;border-radius:14px!important;overflow:hidden!important;border:1px solid rgba(56,189,248,.25)!important;background:linear-gradient(180deg,#0b1730,#0f1b35)!important;display:flex!important;align-items:center!important;justify-content:center!important}
.fs-v188-mp-thumb{display:block!important;width:100%!important;height:100%!important;object-fit:cover!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-thumb-wrap{width:100%!important;height:160px!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 ===== */


/* FinalSpace v417: removed legacy fs_original_gallery_patch_v101 CSS. Native .pg-thumbs remain visible. */







/* ===== 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-tickets,
body.fs-wallet-disconnected #fs-btn-payouts,
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;
}


/* ============================================================
   FinalSpace v242 mobile product media thumbs fix
   - Keeps image/video thumbnails visible under the big product image.
   - Stops old compatibility hiding from affecting current .pg-thumbs.
   ============================================================ */
.product-gallery{
  overflow:visible!important;
}
.product-gallery .pg-main{
  min-height:200px!important;
  aspect-ratio:16/9;
}
.product-gallery .pg-main img{
  display:block!important;
  visibility:visible!important;
  opacity:1!important;
  width:100%!important;
  height:100%!important;
  object-fit:cover!important;
}
.product-gallery .pg-thumbs{
  display:flex!important;
  visibility:visible!important;
  opacity:1!important;
  position:relative!important;
  z-index:4!important;
  width:100%!important;
  min-height:64px!important;
  margin:12px 0 2px!important;
  padding:3px 2px 8px!important;
  gap:9px!important;
  overflow-x:auto!important;
  overflow-y:visible!important;
  -webkit-overflow-scrolling:touch!important;
  scroll-snap-type:x proximity;
}
.product-gallery .pg-thumbs::-webkit-scrollbar{height:4px}
.product-gallery .pg-thumbs::-webkit-scrollbar-thumb{background:rgba(96,165,250,.55);border-radius:999px}
.product-gallery .pg-thumb{
  appearance:none!important;
  -webkit-appearance:none!important;
  display:flex!important;
  visibility:visible!important;
  opacity:.76!important;
  position:relative!important;
  flex:0 0 58px!important;
  width:58px!important;
  height:58px!important;
  min-width:58px!important;
  min-height:58px!important;
  padding:0!important;
  margin:0!important;
  border-radius:13px!important;
  border:1px solid rgba(96,165,250,.32)!important;
  background:#020617!important;
  overflow:hidden!important;
  cursor:pointer!important;
  scroll-snap-align:start;
}
.product-gallery .pg-thumb img,
.product-gallery .pg-thumb.fs-v100-old-media-hidden img,
.product-gallery .pg-thumb img.fs-v100-old-media-hidden{
  display:block!important;
  visibility:visible!important;
  opacity:1!important;
  width:100%!important;
  height:100%!important;
  object-fit:cover!important;
}
.product-gallery .pg-thumb.active{
  opacity:1!important;
  border-color:#38bdf8!important;
  box-shadow:0 0 0 2px rgba(56,189,248,.45),0 0 22px rgba(56,189,248,.18)!important;
}
.product-gallery .pg-thumb-video{
  background:linear-gradient(135deg,rgba(15,23,42,.96),rgba(30,41,59,.98))!important;
}
.product-gallery .pg-thumb-video img{
  position:absolute!important;
  inset:0!important;
  opacity:.38!important;
}
.product-gallery .pg-thumb-video-inner{
  position:absolute!important;
  inset:0!important;
  z-index:2!important;
  display:flex!important;
  flex-direction:column!important;
  align-items:center!important;
  justify-content:center!important;
  gap:1px!important;
  background:linear-gradient(180deg,rgba(2,6,23,.22),rgba(2,6,23,.62))!important;
}
.product-gallery .pg-play-icon{
  font-size:18px!important;
  line-height:1!important;
  color:#fff!important;
  text-shadow:0 2px 10px rgba(0,0,0,.75)!important;
}
.product-gallery .pg-video-word{
  display:block!important;
  color:#dbeafe!important;
  font-size:8px!important;
  letter-spacing:.14em!important;
  font-weight:1000!important;
}
@media(max-width:700px){
  .product-gallery{padding:12px 12px 8px!important}
  .product-gallery .pg-main{min-height:0!important;height:auto!important;aspect-ratio:16/9!important}
  .product-gallery .pg-main img{height:100%!important;min-height:0!important}
  .product-gallery .pg-thumbs{
    min-height:62px!important;
    margin-top:10px!important;
    padding-bottom:10px!important;
  }
  .product-gallery .pg-thumb{
    flex-basis:56px!important;
    width:56px!important;
    height:56px!important;
    min-width:56px!important;
    min-height:56px!important;
  }
}
/* ===== End FinalSpace v242 mobile product media thumbs fix ===== */

/* FinalSpace v243: PHP-rendered catalogue stability — JS must not hide server media */
body.fs-php-rendered-index #store[data-render="php"] .product-card{display:flex!important;visibility:visible!important;opacity:1!important;}
body.fs-php-rendered-index #store[data-render="php"] .product-gallery{display:block!important;overflow:visible!important;}
body.fs-php-rendered-index #store[data-render="php"] .pg-main{display:block!important;position:relative!important;}
body.fs-php-rendered-index #store[data-render="php"] .pg-main img{display:block!important;visibility:visible!important;opacity:1!important;width:100%!important;object-fit:cover!important;}
body.fs-php-rendered-index #store[data-render="php"] .pg-thumbs{display:flex!important;visibility:visible!important;opacity:1!important;gap:10px!important;align-items:center!important;overflow-x:auto!important;overflow-y:hidden!important;min-height:64px!important;margin-top:10px!important;padding:2px 2px 8px!important;}
body.fs-php-rendered-index #store[data-render="php"] .pg-thumb{display:inline-flex!important;visibility:visible!important;opacity:1!important;flex:0 0 auto!important;}
body.fs-php-rendered-index #store[data-render="php"] .pg-thumb img{display:block!important;visibility:visible!important;opacity:1!important;}
body.fs-php-rendered-index #store[data-render="php"] .fs-v100-old-media-hidden:not(.pg-thumb):not(.pg-thumbs):not(.pg-thumbs *){display:none!important;}
body.fs-php-rendered-index #store[data-render="php"] .buy-btn.download-btn{background:linear-gradient(135deg,#16a34a,#22c55e)!important;box-shadow:0 12px 28px rgba(34,197,94,.26)!important;color:#fff!important;}
@media(max-width:700px){
  body.fs-php-rendered-index #store[data-render="php"] .pg-thumbs{min-height:58px!important;gap:8px!important;padding-bottom:6px!important;}
}

/* ============================================================
   Final Space Store v244 — full centered public index + footer links
   Keeps v243 PHP-rendered catalog; no product/wallet/security logic changed.
   ============================================================ */
body.fs-php-rendered-index{
  min-width:0!important;
  overflow-x:hidden!important;
}
body.fs-php-rendered-index .fs-header-wrap,
body.fs-php-rendered-index .container,
body.fs-php-rendered-index .fs-pro-wallet-strip,
body.fs-php-rendered-index .fs-featured-product,
body.fs-php-rendered-index .fs-catalog-header,
body.fs-php-rendered-index .fs-pro-benefits,
body.fs-php-rendered-index #fs-pro-updates-v1723,
body.fs-php-rendered-index .fs-public-faq-v244,
body.fs-php-rendered-index footer.fs-public-footer-v131{
  width:min(1320px, calc(100% - 32px))!important;
  max-width:1320px!important;
  margin-left:auto!important;
  margin-right:auto!important;
  box-sizing:border-box!important;
}
body.fs-php-rendered-index .container,
body.fs-php-rendered-index .fs-pro-wallet-strip,
body.fs-php-rendered-index .fs-featured-product,
body.fs-php-rendered-index .fs-catalog-header,
body.fs-php-rendered-index .fs-pro-benefits,
body.fs-php-rendered-index #fs-pro-updates-v1723,
body.fs-php-rendered-index .fs-public-faq-v244,
body.fs-php-rendered-index footer.fs-public-footer-v131{
  padding-left:0!important;
  padding-right:0!important;
}
body.fs-php-rendered-index .fs-front-hero-v1723{
  width:min(1320px, calc(100% - 32px))!important;
  max-width:1320px!important;
  margin-left:auto!important;
  margin-right:auto!important;
  padding-left:0!important;
  padding-right:0!important;
  box-sizing:border-box!important;
}
body.fs-php-rendered-index .fs-featured-shell,
body.fs-php-rendered-index .fs-pro-wallet-inner,
body.fs-php-rendered-index #fs-pro-updates-v1723 .fs-pro-card,
body.fs-php-rendered-index .fs-public-faq-card,
body.fs-php-rendered-index .fs-footer-panel-v244{
  width:100%!important;
  box-sizing:border-box!important;
}
body.fs-php-rendered-index .fs-catalog-header{
  text-align:center!important;
  align-items:center!important;
  justify-content:center!important;
  flex-direction:column!important;
}
body.fs-php-rendered-index .fs-catalog-header p,
body.fs-php-rendered-index .fs-featured-left p{
  margin-left:auto!important;
  margin-right:auto!important;
}
body.fs-php-rendered-index .fs-catalog-tools{
  justify-content:center!important;
}
body.fs-php-rendered-index .fs-featured-left{
  text-align:center!important;
  display:flex!important;
  flex-direction:column!important;
  align-items:center!important;
}
body.fs-php-rendered-index .fs-featured-points{
  justify-content:center!important;
}
body.fs-php-rendered-index .fs-pro-copy{
  text-align:left!important;
}
body.fs-php-rendered-index #store.fs-pro-store-grid{
  justify-content:center!important;
}
body.fs-php-rendered-index .fs-store-grid{
  width:100%!important;
}
body.fs-php-rendered-index .product-card{
  margin-left:auto!important;
  margin-right:auto!important;
}
body.fs-php-rendered-index .fs-pro-benefits{
  justify-content:center!important;
}
body.fs-php-rendered-index .fs-benefit-card{
  text-align:left!important;
}
.fs-public-faq-v244{
  margin-top:28px!important;
  margin-bottom:24px!important;
  position:relative!important;
  z-index:2!important;
}
.fs-public-faq-card{
  border:1px solid rgba(14,165,233,.22)!important;
  border-radius:28px!important;
  background:
    radial-gradient(circle at 12% 0%,rgba(14,165,233,.15),transparent 34%),
    radial-gradient(circle at 92% 18%,rgba(34,197,94,.10),transparent 32%),
    linear-gradient(135deg,rgba(15,23,42,.94),rgba(2,6,23,.93))!important;
  box-shadow:0 22px 64px rgba(0,0,0,.30)!important;
  padding:24px!important;
  text-align:center!important;
}
.fs-public-faq-card h2{
  color:#fff!important;
  margin:13px 0 18px!important;
  font-size:clamp(26px,3vw,38px)!important;
  line-height:1.1!important;
  letter-spacing:-.04em!important;
}
.fs-public-faq-grid{
  display:grid!important;
  grid-template-columns:repeat(4,minmax(0,1fr))!important;
  gap:14px!important;
}
.fs-public-faq-grid > div{
  text-align:left!important;
  border:1px solid rgba(148,163,184,.17)!important;
  border-radius:20px!important;
  background:rgba(2,6,23,.42)!important;
  padding:17px!important;
}
.fs-public-faq-grid strong{
  display:block!important;
  color:#fff!important;
  font-size:15px!important;
  margin-bottom:7px!important;
}
.fs-public-faq-grid p{
  margin:0!important;
  color:rgba(226,232,240,.76)!important;
  font-size:13px!important;
  line-height:1.55!important;
}
footer.fs-public-footer-v244{
  margin-top:0!important;
  margin-bottom:118px!important;
  padding-bottom:0!important;
}
.fs-footer-panel-v244{
  border-top:1px solid rgba(255,255,255,.10)!important;
  padding:22px 0 26px!important;
  display:grid!important;
  gap:18px!important;
  text-align:center!important;
}
.fs-footer-brand-v244{
  display:flex!important;
  flex-direction:column!important;
  align-items:center!important;
  gap:6px!important;
}
.fs-footer-brand-v244 strong{
  color:#fff!important;
  font-size:18px!important;
  letter-spacing:-.02em!important;
}
.fs-footer-brand-v244 span{
  max-width:680px!important;
  color:rgba(226,232,240,.68)!important;
  font-size:13px!important;
  line-height:1.55!important;
}
.fs-footer-links-v244{
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:10px!important;
  flex-wrap:wrap!important;
}
.fs-footer-links-v244 a{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  min-height:38px!important;
  padding:0 12px!important;
  border-radius:999px!important;
  color:#dbeafe!important;
  text-decoration:none!important;
  font-weight:900!important;
  font-size:12px!important;
  background:rgba(15,23,42,.72)!important;
  border:1px solid rgba(148,163,184,.16)!important;
  box-shadow:0 10px 24px rgba(0,0,0,.16)!important;
}
.fs-footer-links-v244 a:hover{
  color:#fff!important;
  border-color:rgba(14,165,233,.42)!important;
  background:rgba(14,165,233,.13)!important;
  text-decoration:none!important;
}
.fs-footer-bottom-v244{
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:14px!important;
  flex-wrap:wrap!important;
  color:rgba(226,232,240,.60)!important;
  font-size:12px!important;
}
.fs-footer-bottom-v244 .fs-footer-social-icons{
  justify-content:center!important;
}
@media(max-width:980px){
  body.fs-php-rendered-index .fs-header-wrap,
  body.fs-php-rendered-index .container,
  body.fs-php-rendered-index .fs-pro-wallet-strip,
  body.fs-php-rendered-index .fs-featured-product,
  body.fs-php-rendered-index .fs-catalog-header,
  body.fs-php-rendered-index .fs-pro-benefits,
  body.fs-php-rendered-index #fs-pro-updates-v1723,
  body.fs-php-rendered-index .fs-public-faq-v244,
  body.fs-php-rendered-index footer.fs-public-footer-v131,
  body.fs-php-rendered-index .fs-front-hero-v1723{
    width:min(100% - 28px, 760px)!important;
  }
  .fs-public-faq-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;}
  body.fs-php-rendered-index .fs-pro-copy,
  body.fs-php-rendered-index .fs-benefit-card{
    text-align:center!important;
  }
  body.fs-php-rendered-index #fs-pro-updates-v1723 .fs-pro-card{
    align-items:center!important;
    text-align:center!important;
  }
  body.fs-php-rendered-index #fs-pro-updates-v1723 .fs-pro-mini-pills{
    justify-content:center!important;
  }
}
@media(max-width:640px){
  body.fs-php-rendered-index .fs-header-wrap,
  body.fs-php-rendered-index .container,
  body.fs-php-rendered-index .fs-pro-wallet-strip,
  body.fs-php-rendered-index .fs-featured-product,
  body.fs-php-rendered-index .fs-catalog-header,
  body.fs-php-rendered-index .fs-pro-benefits,
  body.fs-php-rendered-index #fs-pro-updates-v1723,
  body.fs-php-rendered-index .fs-public-faq-v244,
  body.fs-php-rendered-index footer.fs-public-footer-v131,
  body.fs-php-rendered-index .fs-front-hero-v1723{
    width:calc(100% - 28px)!important;
  }
  .fs-public-faq-grid{grid-template-columns:1fr!important;}
  .fs-footer-links-v244 a{flex:1 1 calc(50% - 10px)!important;min-width:132px!important;}
  .fs-footer-bottom-v244{flex-direction:column!important;}
}


/* ============================================================
   Final Space Store v245 — PHP catalogue filter + featured fixes
   - keep filter hiding stronger than PHP display restore
   - keep PHP product cards clean column layout
   - prevent badge/arrows/owned text from being used visually as title
   ============================================================ */
body.fs-php-rendered-index #store[data-render="php"] .product-card.fs-pro-hidden,
body.fs-php-rendered-index #store[data-render="php"] .fs-pro-hidden{
  display:none!important;
  visibility:hidden!important;
  opacity:0!important;
}
body.fs-php-rendered-index #store[data-render="php"] .product-card.fs-php-product-card,
body.fs-php-rendered-index #store[data-render="php"] > .product-card.fs-php-product-card.fs-pro-card-ready{
  display:flex!important;
  flex-direction:column!important;
  min-width:0!important;
  overflow:hidden!important;
}
body.fs-php-rendered-index #store[data-render="php"] .product-card .product-gallery{
  width:100%!important;
  flex:0 0 auto!important;
}
body.fs-php-rendered-index #store[data-render="php"] .product-card .product-info{
  width:100%!important;
  min-width:0!important;
  flex:1 1 auto!important;
  display:flex!important;
  flex-direction:column!important;
  gap:10px!important;
  padding:18px!important;
  text-align:center!important;
}
body.fs-php-rendered-index #store[data-render="php"] .product-card .product-name{
  display:block!important;
  color:#fff!important;
  font-size:clamp(22px,2.2vw,30px)!important;
  line-height:1.12!important;
  font-weight:1000!important;
  letter-spacing:-.035em!important;
  white-space:normal!important;
  overflow:visible!important;
  text-overflow:clip!important;
}
body.fs-php-rendered-index #store[data-render="php"] .product-card .product-desc-text{
  display:block!important;
  color:rgba(226,232,240,.70)!important;
  font-size:16px!important;
  line-height:1.45!important;
  max-height:none!important;
  overflow:visible!important;
  white-space:normal!important;
}
body.fs-php-rendered-index #store[data-render="php"] .product-card .product-actions{
  margin-top:auto!important;
  width:100%!important;
  display:grid!important;
  grid-template-columns:1fr!important;
  align-items:stretch!important;
  gap:10px!important;
}
body.fs-php-rendered-index #store[data-render="php"] .product-card .product-actions.has-demo{
  grid-template-columns:120px minmax(0,1fr)!important;
}
body.fs-php-rendered-index #store[data-render="php"] .product-card .product-actions.has-demo .demo-btn,
body.fs-php-rendered-index #store[data-render="php"] .product-card .product-actions.has-demo .buy-btn{
  width:100%!important;
  min-width:0!important;
  max-width:none!important;
}
body.fs-php-rendered-index #store[data-render="php"] .product-card .buy-btn,
body.fs-php-rendered-index #store[data-render="php"] .product-card .demo-btn{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  min-height:46px!important;
  height:46px!important;
  padding:11px 14px!important;
  border-radius:16px!important;
  font-weight:1000!important;
  font-size:14px!important;
  line-height:1.15!important;
  box-sizing:border-box!important;
}
body.fs-php-rendered-index #store[data-render="php"] .product-card .buy-btn{
  box-shadow:0 10px 24px rgba(37,99,235,.22)!important;
}
body.fs-php-rendered-index #store[data-render="php"] .product-card .demo-btn{
  background:linear-gradient(135deg,rgba(8,47,73,.95),rgba(12,74,110,.88))!important;
  border:1px solid rgba(56,189,248,.24)!important;
  box-shadow:0 8px 20px rgba(14,165,233,.12)!important;
}
body.fs-php-rendered-index .fs-filter-chip{
  cursor:pointer!important;
  user-select:none!important;
}
body.fs-php-rendered-index .fs-featured-card .fs-featured-mini-body h3,
body.fs-php-rendered-index .fs-featured-card .fs-featured-mini-body p{
  word-break:normal!important;
  overflow-wrap:break-word!important;
}
@media(max-width:760px){
  body.fs-php-rendered-index #store[data-render="php"] .product-card .product-info{padding:16px 14px!important;}
  body.fs-php-rendered-index #store[data-render="php"] .product-card .product-name{font-size:26px!important;}
  body.fs-php-rendered-index #store[data-render="php"] .product-card .product-actions{gap:8px!important;}
  body.fs-php-rendered-index #store[data-render="php"] .product-card .product-actions.has-demo{grid-template-columns:108px minmax(0,1fr)!important;}
  body.fs-php-rendered-index #store[data-render="php"] .product-card .buy-btn,
  body.fs-php-rendered-index #store[data-render="php"] .product-card .demo-btn{min-height:44px!important;height:44px!important;padding:10px 12px!important;font-size:13px!important;border-radius:15px!important;}
}


/* ============================================================
   Final Space Store v246 — PHP-only featured card, one canonical size
   Removes the visual double-size effect caused by JS featured rebuild.
   ============================================================ */
body.fs-php-rendered-index .fs-featured-card-php{
  min-height:210px!important;
  align-items:stretch!important;
}
body.fs-php-rendered-index .fs-featured-card-php .fs-featured-mini-card{
  display:grid!important;
  grid-template-columns:minmax(260px,0.92fr) minmax(260px,1fr)!important;
  width:100%!important;
  min-height:210px!important;
  max-height:none!important;
}
body.fs-php-rendered-index .fs-featured-card-php .fs-featured-mini-media{
  min-width:0!important;
  min-height:0!important;
  height:auto!important;
  padding:16px!important;
}
body.fs-php-rendered-index .fs-featured-card-php .fs-featured-mini-media img,
body.fs-php-rendered-index .fs-featured-card-php .fs-featured-mini-media video{
  display:block!important;
  width:100%!important;
  height:100%!important;
  max-height:245px!important;
  object-fit:cover!important;
  border-radius:18px!important;
}
body.fs-php-rendered-index .fs-featured-card-php .fs-featured-mini-body{
  padding:20px!important;
  display:flex!important;
  flex-direction:column!important;
  justify-content:center!important;
  align-items:flex-start!important;
  text-align:left!important;
  gap:10px!important;
}
body.fs-php-rendered-index .fs-featured-left h2{
  font-size:clamp(27px,2.45vw,36px)!important;
  line-height:1.08!important;
}
body.fs-php-rendered-index .fs-featured-left p{
  font-size:15px!important;
  line-height:1.55!important;
}
@media(max-width:980px){
  body.fs-php-rendered-index .fs-featured-card-php .fs-featured-mini-card{
    grid-template-columns:1fr!important;
  }
  body.fs-php-rendered-index .fs-featured-card-php .fs-featured-mini-media{
    min-height:210px!important;
  }
  body.fs-php-rendered-index .fs-featured-card-php .fs-featured-mini-body{
    text-align:center!important;
    align-items:center!important;
  }
}
@media(max-width:640px){
  body.fs-php-rendered-index .fs-featured-left h2{
    font-size:30px!important;
  }
  body.fs-php-rendered-index .fs-featured-card-php .fs-featured-mini-media{
    min-height:190px!important;
  }
}


/* ============================================================
   Final Space Store v248 — PHP catalogue compact grid fix (superseded by v249 below)
   Fixes the 1-product / 2-product catalogue using a 3-column empty container.
   Product cards stay normal size and centred; no JS hiding/rebuilding.
   ============================================================ */
body.fs-php-rendered-index main.fs-pro-products-main{
  width:min(1320px, calc(100% - 32px))!important;
  max-width:1320px!important;
  margin-left:auto!important;
  margin-right:auto!important;
  padding-left:0!important;
  padding-right:0!important;
  box-sizing:border-box!important;
}
body.fs-php-rendered-index #store[data-render="php"].fs-pro-store-grid{
  width:100%!important;
  max-width:100%!important;
  margin-left:auto!important;
  margin-right:auto!important;
  min-height:0!important;
  height:auto!important;
  background:transparent!important;
}
body.fs-php-rendered-index #store[data-render="php"].fs-product-grid-compact,
body.fs-php-rendered-index #store[data-render="php"].fs-product-count-1,
body.fs-php-rendered-index #store[data-render="php"].fs-product-count-2{
  display:grid!important;
  grid-template-columns:repeat(var(--fs-compact-cols, 1), minmax(280px, 360px))!important;
  justify-content:center!important;
  justify-items:stretch!important;
  align-items:start!important;
  gap:26px!important;
  min-height:0!important;
  height:auto!important;
  padding:0!important;
}
body.fs-php-rendered-index #store[data-render="php"].fs-product-count-2{
  --fs-compact-cols:2;
}
body.fs-php-rendered-index #store[data-render="php"].fs-product-count-1 > .product-card.fs-php-product-card,
body.fs-php-rendered-index #store[data-render="php"].fs-product-count-2 > .product-card.fs-php-product-card{
  width:100%!important;
  max-width:360px!important;
  min-width:0!important;
  margin:0!important;
  align-self:start!important;
}
body.fs-php-rendered-index #store[data-render="php"].fs-product-count-1 > .product-card.fs-pro-hidden,
body.fs-php-rendered-index #store[data-render="php"].fs-product-count-2 > .product-card.fs-pro-hidden{
  display:none!important;
}
body.fs-php-rendered-index #store[data-render="php"] > .fs-pro-ignore:only-child{
  width:min(640px,100%)!important;
  margin:0 auto!important;
}
@media(max-width:820px){
  body.fs-php-rendered-index #store[data-render="php"].fs-product-grid-compact,
  body.fs-php-rendered-index #store[data-render="php"].fs-product-count-1,
  body.fs-php-rendered-index #store[data-render="php"].fs-product-count-2{
    grid-template-columns:minmax(0, min(100%, 390px))!important;
  }
  body.fs-php-rendered-index #store[data-render="php"].fs-product-count-1 > .product-card.fs-php-product-card,
  body.fs-php-rendered-index #store[data-render="php"].fs-product-count-2 > .product-card.fs-php-product-card{
    max-width:390px!important;
  }
}


/* ============================================================
   Final Space Store v249 — PHP catalogue row-count grid fix (superseded by v250 below)
   Rules:
   - 1 visible product = one centred card row
   - 2 visible products = one centred two-card row
   - 3 visible products = one centred three-card row
   - 4 to 6 visible products = max three columns, therefore two rows
   This is CSS/PHP layout only. JS does not rebuild the catalogue.
   ============================================================ */
body.fs-php-rendered-index main.fs-pro-products-main{
  width:min(1180px, calc(100% - 32px))!important;
  max-width:1180px!important;
  margin:0 auto!important;
  padding:26px 0 64px!important;
  min-height:0!important;
  height:auto!important;
  box-sizing:border-box!important;
}
body.fs-php-rendered-index #store[data-render="php"].fs-pro-store-grid,
body.fs-php-rendered-index #store[data-render="php"].fs-store-grid{
  display:grid!important;
  grid-template-columns:repeat(auto-fit, minmax(280px, 360px))!important;
  justify-content:center!important;
  justify-items:stretch!important;
  align-items:start!important;
  gap:26px!important;
  width:100%!important;
  max-width:1132px!important;
  margin:0 auto!important;
  padding:0!important;
  min-height:0!important;
  height:auto!important;
  background:transparent!important;
}
body.fs-php-rendered-index #store[data-render="php"] > .product-card.fs-php-product-card,
body.fs-php-rendered-index #store[data-render="php"] > .product-card.fs-pro-card-ready{
  width:100%!important;
  max-width:360px!important;
  min-width:0!important;
  margin:0!important;
  align-self:start!important;
  justify-self:center!important;
}
body.fs-php-rendered-index #store[data-render="php"].fs-product-count-1,
body.fs-php-rendered-index #store[data-render="php"].fs-product-count-2,
body.fs-php-rendered-index #store[data-render="php"].fs-product-count-3,
body.fs-php-rendered-index #store[data-render="php"].fs-product-grid-compact{
  grid-template-columns:repeat(auto-fit, minmax(280px, 360px))!important;
}
body.fs-php-rendered-index #store[data-render="php"] > .product-card.fs-pro-hidden,
body.fs-php-rendered-index #store[data-render="php"] > .fs-pro-hidden{
  display:none!important;
  visibility:hidden!important;
  opacity:0!important;
  width:0!important;
  min-width:0!important;
  max-width:0!important;
  height:0!important;
  min-height:0!important;
  padding:0!important;
  margin:0!important;
  border:0!important;
  overflow:hidden!important;
}
body.fs-php-rendered-index #store[data-render="php"] > .fs-pro-ignore:only-child{
  width:min(640px,100%)!important;
  margin:0 auto!important;
  grid-column:1 / -1!important;
}
@media(max-width:1180px){
  body.fs-php-rendered-index main.fs-pro-products-main{width:min(100%, calc(100% - 28px))!important;}
  body.fs-php-rendered-index #store[data-render="php"].fs-pro-store-grid,
  body.fs-php-rendered-index #store[data-render="php"].fs-store-grid{
    max-width:746px!important;
    grid-template-columns:repeat(auto-fit, minmax(280px, 360px))!important;
  }
}
@media(max-width:760px){
  body.fs-php-rendered-index main.fs-pro-products-main{
    width:min(100%, calc(100% - 24px))!important;
    padding-top:20px!important;
  }
  body.fs-php-rendered-index #store[data-render="php"].fs-pro-store-grid,
  body.fs-php-rendered-index #store[data-render="php"].fs-store-grid{
    grid-template-columns:minmax(0, min(100%, 390px))!important;
    max-width:390px!important;
    gap:22px!important;
  }
  body.fs-php-rendered-index #store[data-render="php"] > .product-card.fs-php-product-card,
  body.fs-php-rendered-index #store[data-render="php"] > .product-card.fs-pro-card-ready{
    max-width:390px!important;
  }
}


/* ============================================================
   Final Space Store v252 — PHP catalogue pagination status footer
   Max 15 products per page: 3 columns x 5 rows on desktop.
   Pagination/status footer is rendered by PHP; JS does not rebuild catalogue.
   ============================================================ */
body.fs-php-rendered-index main.fs-pro-products-main{
  width:min(1180px, calc(100% - 32px))!important;
  max-width:1180px!important;
  margin:0 auto!important;
  padding:26px 0 64px!important;
  min-height:0!important;
  height:auto!important;
}
body.fs-php-rendered-index #store[data-render="php"].fs-pro-store-grid,
body.fs-php-rendered-index #store[data-render="php"].fs-store-grid{
  display:grid!important;
  grid-template-columns:repeat(3, minmax(280px, 360px))!important;
  justify-content:center!important;
  justify-items:stretch!important;
  align-items:start!important;
  gap:26px!important;
  width:100%!important;
  max-width:1132px!important;
  margin:0 auto!important;
  padding:0!important;
  min-height:0!important;
  height:auto!important;
  background:transparent!important;
}
body.fs-php-rendered-index #store[data-render="php"].fs-product-count-1,
body.fs-php-rendered-index #store[data-render="php"].fs-product-count-2,
body.fs-php-rendered-index #store[data-render="php"].fs-product-count-3,
body.fs-php-rendered-index #store[data-render="php"].fs-product-grid-compact{
  grid-template-columns:repeat(var(--fs-page-cols, 1), minmax(280px, 360px))!important;
}
body.fs-php-rendered-index #store[data-render="php"].fs-product-count-2{--fs-page-cols:2;}
body.fs-php-rendered-index #store[data-render="php"].fs-product-count-3{--fs-page-cols:3;}
body.fs-php-rendered-index #store[data-render="php"] > .product-card.fs-php-product-card,
body.fs-php-rendered-index #store[data-render="php"] > .product-card.fs-pro-card-ready{
  width:100%!important;
  max-width:360px!important;
  min-width:0!important;
  margin:0!important;
  align-self:start!important;
  justify-self:center!important;
}
.fs-catalog-page-summary{
  text-align:center;
  color:rgba(226,232,240,.70);
  font-weight:800;
  font-size:13px;
  margin:0 auto 18px;
  letter-spacing:.01em;
}
.fs-catalog-pagination{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  flex-wrap:wrap;
  margin:34px auto 0;
  width:min(100%, 920px);
}
.fs-page-btn,
.fs-page-dots{
  min-width:42px;
  height:42px;
  border-radius:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 14px;
  font-size:13px;
  font-weight:1000;
  text-decoration:none!important;
  color:#dff6ff;
  border:1px solid rgba(56,189,248,.22);
  background:rgba(15,35,58,.72);
  box-shadow:0 10px 28px rgba(0,0,0,.18);
}
.fs-page-btn:hover{border-color:rgba(56,189,248,.52);background:rgba(14,165,233,.16);}
.fs-page-btn.active{color:#fff;background:linear-gradient(135deg,#0ea5e9,#2563eb);border-color:rgba(96,165,250,.55);box-shadow:0 14px 34px rgba(37,99,235,.30);}
.fs-page-prev,.fs-page-next{min-width:112px;}
.fs-page-dots{min-width:26px;padding:0 8px;color:rgba(226,232,240,.62);background:transparent;border-color:transparent;box-shadow:none;}
.fs-page-btn.disabled{opacity:.42;cursor:not-allowed;filter:saturate(.65);background:rgba(15,35,58,.40);box-shadow:none;}
 .fs-catalog-page-status{width:min(100%,920px);margin:14px auto 0;text-align:center;color:rgba(226,232,240,.74);font-size:13px;font-weight:900;letter-spacing:.01em;}
.fs-catalog-pagination.fs-catalog-pagination-top{margin:18px auto 12px;}
.fs-catalog-page-status.fs-catalog-pagination-top{margin:10px auto 22px;}
.fs-catalog-page-status.fs-catalog-pagination-bottom{margin-top:14px;}

.fs-catalog-page-status-single{display:inline-flex;align-items:center;justify-content:center;min-height:42px;padding:0 18px;border-radius:999px;border:1px solid rgba(56,189,248,.22);background:rgba(15,35,58,.58);box-shadow:0 10px 28px rgba(0,0,0,.16);margin:28px auto 0;position:relative;left:50%;transform:translateX(-50%);}
@media(max-width:1180px){
  body.fs-php-rendered-index #store[data-render="php"].fs-pro-store-grid,
  body.fs-php-rendered-index #store[data-render="php"].fs-store-grid{
    grid-template-columns:repeat(2, minmax(280px, 360px))!important;
    max-width:746px!important;
  }
  body.fs-php-rendered-index #store[data-render="php"].fs-product-count-1{
    grid-template-columns:minmax(280px,360px)!important;
  }
}
@media(max-width:760px){
  body.fs-php-rendered-index main.fs-pro-products-main{width:min(100%, calc(100% - 24px))!important;padding-top:20px!important;}
  body.fs-php-rendered-index #store[data-render="php"].fs-pro-store-grid,
  body.fs-php-rendered-index #store[data-render="php"].fs-store-grid,
  body.fs-php-rendered-index #store[data-render="php"].fs-product-count-1,
  body.fs-php-rendered-index #store[data-render="php"].fs-product-count-2,
  body.fs-php-rendered-index #store[data-render="php"].fs-product-count-3,
  body.fs-php-rendered-index #store[data-render="php"].fs-product-grid-compact{
    grid-template-columns:minmax(0, min(100%, 390px))!important;
    max-width:390px!important;
    gap:22px!important;
  }
  body.fs-php-rendered-index #store[data-render="php"] > .product-card.fs-php-product-card,
  body.fs-php-rendered-index #store[data-render="php"] > .product-card.fs-pro-card-ready{max-width:390px!important;}
  .fs-page-prev,.fs-page-next{min-width:96px;}
  .fs-page-btn{height:40px;min-width:40px;padding:0 12px;}
}


/* === FinalSpace v254: PHP catalogue true centering for 1-2 filtered/current page items === */
.fs-products-grid,
.products-grid,
.product-grid,
.catalog-grid,
#productsGrid,
#productGrid,
[data-fs-products-grid]{
  justify-content:center !important;
  justify-items:center !important;
  align-items:start !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

.fs-products-grid.fs-count-1,
.products-grid.fs-count-1,
.product-grid.fs-count-1,
.catalog-grid.fs-count-1,
#productsGrid.fs-count-1,
#productGrid.fs-count-1,
[data-fs-products-grid].fs-count-1{
  display:grid !important;
  grid-template-columns:minmax(280px, 420px) !important;
  max-width:460px !important;
  width:100% !important;
  margin-left:auto !important;
  margin-right:auto !important;
  justify-content:center !important;
  justify-items:stretch !important;
}

.fs-products-grid.fs-count-2,
.products-grid.fs-count-2,
.product-grid.fs-count-2,
.catalog-grid.fs-count-2,
#productsGrid.fs-count-2,
#productGrid.fs-count-2,
[data-fs-products-grid].fs-count-2{
  display:grid !important;
  grid-template-columns:repeat(2, minmax(280px, 420px)) !important;
  max-width:900px !important;
  width:100% !important;
  margin-left:auto !important;
  margin-right:auto !important;
  justify-content:center !important;
  justify-items:stretch !important;
}

.fs-products-grid.fs-count-3,
.products-grid.fs-count-3,
.product-grid.fs-count-3,
.catalog-grid.fs-count-3,
#productsGrid.fs-count-3,
#productGrid.fs-count-3,
[data-fs-products-grid].fs-count-3{
  display:grid !important;
  grid-template-columns:repeat(3, minmax(260px, 380px)) !important;
  max-width:1180px !important;
  width:100% !important;
  margin-left:auto !important;
  margin-right:auto !important;
  justify-content:center !important;
  justify-items:stretch !important;
}

.fs-products-grid.fs-count-4,
.fs-products-grid.fs-count-5,
.fs-products-grid.fs-count-6,
.fs-products-grid.fs-count-7,
.fs-products-grid.fs-count-8,
.fs-products-grid.fs-count-9,
.fs-products-grid.fs-count-10,
.fs-products-grid.fs-count-11,
.fs-products-grid.fs-count-12,
.fs-products-grid.fs-count-13,
.fs-products-grid.fs-count-14,
.fs-products-grid.fs-count-15,
.products-grid.fs-count-4,
.products-grid.fs-count-5,
.products-grid.fs-count-6,
.products-grid.fs-count-7,
.products-grid.fs-count-8,
.products-grid.fs-count-9,
.products-grid.fs-count-10,
.products-grid.fs-count-11,
.products-grid.fs-count-12,
.products-grid.fs-count-13,
.products-grid.fs-count-14,
.products-grid.fs-count-15,
.product-grid.fs-count-4,
.product-grid.fs-count-5,
.product-grid.fs-count-6,
.product-grid.fs-count-7,
.product-grid.fs-count-8,
.product-grid.fs-count-9,
.product-grid.fs-count-10,
.product-grid.fs-count-11,
.product-grid.fs-count-12,
.product-grid.fs-count-13,
.product-grid.fs-count-14,
.product-grid.fs-count-15,
.catalog-grid.fs-count-4,
.catalog-grid.fs-count-5,
.catalog-grid.fs-count-6,
.catalog-grid.fs-count-7,
.catalog-grid.fs-count-8,
.catalog-grid.fs-count-9,
.catalog-grid.fs-count-10,
.catalog-grid.fs-count-11,
.catalog-grid.fs-count-12,
.catalog-grid.fs-count-13,
.catalog-grid.fs-count-14,
.catalog-grid.fs-count-15{
  display:grid !important;
  grid-template-columns:repeat(3, minmax(260px, 380px)) !important;
  max-width:1180px !important;
  width:100% !important;
  margin-left:auto !important;
  margin-right:auto !important;
  justify-content:center !important;
  justify-items:stretch !important;
}

@media (max-width: 980px){
  .fs-products-grid.fs-count-2,
  .fs-products-grid.fs-count-3,
  .products-grid.fs-count-2,
  .products-grid.fs-count-3,
  .product-grid.fs-count-2,
  .product-grid.fs-count-3,
  .catalog-grid.fs-count-2,
  .catalog-grid.fs-count-3,
  #productsGrid.fs-count-2,
  #productGrid.fs-count-2,
  [data-fs-products-grid].fs-count-2,
  [data-fs-products-grid].fs-count-3{
    grid-template-columns:minmax(280px, 420px) !important;
    max-width:460px !important;
  }
}


/* === FinalSpace v254: PHP-only catalogue centering by server-rendered page count === */
#products.fs-pro-products-main{
  max-width:1280px !important;
  width:100% !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

#store.fs-store-grid,
#store.fs-pro-store-grid{
  box-sizing:border-box !important;
  display:grid !important;
  gap:28px !important;
  width:100% !important;
  margin-left:auto !important;
  margin-right:auto !important;
  justify-content:center !important;
  justify-items:stretch !important;
  align-items:start !important;
}

/* 1 visible product: one centered card, no left/right offset */
#store.fs-page-count-1,
#store.fs-product-count-1,
#store.fs-count-1{
  grid-template-columns:minmax(300px, 420px) !important;
  max-width:460px !important;
  padding-left:0 !important;
  padding-right:0 !important;
}

/* 2 visible products: one centered row */
#store.fs-page-count-2,
#store.fs-product-count-2,
#store.fs-count-2{
  grid-template-columns:repeat(2, minmax(300px, 420px)) !important;
  max-width:900px !important;
  padding-left:0 !important;
  padding-right:0 !important;
}

/* 3 visible products: one centered row */
#store.fs-page-count-3,
#store.fs-product-count-3,
#store.fs-count-3{
  grid-template-columns:repeat(3, minmax(280px, 390px)) !important;
  max-width:1220px !important;
  padding-left:0 !important;
  padding-right:0 !important;
}

/* 4-15 visible products: normal 3 columns, up to 5 rows */
#store.fs-page-count-4,
#store.fs-page-count-5,
#store.fs-page-count-6,
#store.fs-page-count-7,
#store.fs-page-count-8,
#store.fs-page-count-9,
#store.fs-page-count-10,
#store.fs-page-count-11,
#store.fs-page-count-12,
#store.fs-page-count-13,
#store.fs-page-count-14,
#store.fs-page-count-15{
  grid-template-columns:repeat(3, minmax(280px, 390px)) !important;
  max-width:1220px !important;
  padding-left:0 !important;
  padding-right:0 !important;
}

/* stop old flex/grid overrides pushing small result sets to the right */
#store.fs-page-count-1 > *,
#store.fs-page-count-2 > *,
#store.fs-page-count-3 > *{
  width:100% !important;
  max-width:none !important;
  margin-left:0 !important;
  margin-right:0 !important;
}

.fs-catalog-tools-php a.fs-filter-chip{
  text-decoration:none !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
}
.fs-sort-form{display:inline-flex;margin:0;padding:0}

@media (max-width:980px){
  #store.fs-store-grid,
  #store.fs-pro-store-grid,
  #store.fs-page-count-1,
  #store.fs-page-count-2,
  #store.fs-page-count-3,
  #store.fs-page-count-4,
  #store.fs-page-count-5,
  #store.fs-page-count-6,
  #store.fs-page-count-7,
  #store.fs-page-count-8,
  #store.fs-page-count-9,
  #store.fs-page-count-10,
  #store.fs-page-count-11,
  #store.fs-page-count-12,
  #store.fs-page-count-13,
  #store.fs-page-count-14,
  #store.fs-page-count-15{
    grid-template-columns:minmax(280px, 430px) !important;
    max-width:460px !important;
    width:100% !important;
    margin-left:auto !important;
    margin-right:auto !important;
  }
}


/* FinalSpace v299 header no-flash wallet menu */
.fs-right .fs-wallet-only,
.fs-right #fs-btn-referrals,
.fs-right #fs-btn-tickets,
.fs-right #fs-btn-payouts{display:none!important}
html.fs-wallet-connected .fs-right .fs-wallet-only,
body.fs-wallet-connected .fs-right .fs-wallet-only,
html.fs-wallet-connected .fs-right #fs-btn-referrals,
body.fs-wallet-connected .fs-right #fs-btn-referrals,
html.fs-wallet-connected .fs-right #fs-btn-tickets,
body.fs-wallet-connected .fs-right #fs-btn-tickets,
html.fs-wallet-connected .fs-right #fs-btn-payouts,
body.fs-wallet-connected .fs-right #fs-btn-payouts{display:inline-flex!important}



/* FinalSpace v299: center public page footer to full viewport */
.fs-public-footer-v275,
.fs-public-footer-v299{
  width:100vw!important;
  max-width:none!important;
  margin-left:calc(50% - 50vw)!important;
  margin-right:calc(50% - 50vw)!important;
  text-align:center!important;
}
.fs-public-footer-v275 .fs-footer-inner-v275,
.fs-public-footer-v299 .fs-footer-inner-v299{
  max-width:1180px!important;
  margin-left:auto!important;
  margin-right:auto!important;
  text-align:center!important;
}
.fs-footer-brand-v275,
.fs-footer-brand-v299,
.fs-footer-links-v275,
.fs-footer-links-v299,
.fs-footer-bottom-v275,
.fs-footer-bottom-v299,
.fs-footer-social-v275,
.fs-footer-social-v299{
  justify-content:center!important;
  text-align:center!important;
}



/* FinalSpace v299: Wallet connect modal fixed viewport center */
#fsConnectModal{
  position:fixed!important;
  left:0!important;
  top:0!important;
  width:100vw!important;
  height:100vh!important;
  height:100dvh!important;
  display:none;
  align-items:center!important;
  justify-content:center!important;
  padding:16px!important;
  box-sizing:border-box!important;
  overflow:hidden!important;
}
#fsConnectModal[style*="display: flex"],
#fsConnectModal.fs-open{
  display:flex!important;
}
#fsConnectPanel,
#fsConnectModal > div{
  position:relative!important;
  top:auto!important;
  left:auto!important;
  right:auto!important;
  bottom:auto!important;
  transform:none!important;
  margin:0!important;
  max-height:calc(100vh - 32px)!important;
  max-height:calc(100dvh - 32px)!important;
  overflow:auto!important;
}



/* FinalSpace v299 wallet-only links hidden by default */
.fs-wallet-only{display:none}
body.fs-wallet-connected .fs-wallet-only{display:inline-flex}

/* FinalSpace v299 wallet-only menu links hidden by default */
.fs-wallet-only{display:none}
body.fs-wallet-connected .fs-wallet-only{display:inline-flex}
body.fs-wallet-disconnected .fs-wallet-only{display:none!important}

/* Final Space v311 — force Buy/Download right-side rounded and inside card */
body.fs-php-rendered-index #store[data-render="php"] .product-card .product-actions{
  width:calc(100% - 18px)!important;
  max-width:calc(100% - 18px)!important;
  margin-right:18px!important;
  box-sizing:border-box!important;
  overflow:visible!important;
}
body.fs-php-rendered-index #store[data-render="php"] .product-card .product-actions.has-demo{
  display:grid!important;
  grid-template-columns:120px minmax(0,1fr)!important;
  gap:12px!important;
}
body.fs-php-rendered-index #store[data-render="php"] .product-card .product-actions.has-demo .demo-btn,
body.fs-php-rendered-index #store[data-render="php"] .product-card .product-actions.has-demo .buy-btn,
body.fs-php-rendered-index #store[data-render="php"] .product-card .buy-btn,
body.fs-php-rendered-index #store[data-render="php"] .product-card .demo-btn{
  height:46px!important;
  min-height:46px!important;
  max-height:46px!important;
  border-radius:16px!important;
  overflow:hidden!important;
  box-sizing:border-box!important;
}
body.fs-php-rendered-index #store[data-render="php"] .product-card .product-actions.has-demo .buy-btn,
body.fs-php-rendered-index #store[data-render="php"] .product-card .buy-btn{
  border-top-right-radius:16px!important;
  border-bottom-right-radius:16px!important;
  border-top-left-radius:16px!important;
  border-bottom-left-radius:16px!important;
  margin-right:0!important;
}
@media(max-width:760px){
  body.fs-php-rendered-index #store[data-render="php"] .product-card .product-actions{
    width:calc(100% - 14px)!important;
    max-width:calc(100% - 14px)!important;
    margin-right:14px!important;
  }
  body.fs-php-rendered-index #store[data-render="php"] .product-card .product-actions.has-demo{
    grid-template-columns:108px minmax(0,1fr)!important;
    gap:10px!important;
  }
  body.fs-php-rendered-index #store[data-render="php"] .product-card .product-actions.has-demo .demo-btn,
  body.fs-php-rendered-index #store[data-render="php"] .product-card .product-actions.has-demo .buy-btn,
  body.fs-php-rendered-index #store[data-render="php"] .product-card .buy-btn,
  body.fs-php-rendered-index #store[data-render="php"] .product-card .demo-btn{
    height:44px!important;
    min-height:44px!important;
    max-height:44px!important;
    border-radius:15px!important;
  }
}



/* Final Space v313 — featured card title / real product description / demo-buy-price layout */
body.fs-php-rendered-index .fs-featured-card-php .fs-featured-mini-body{
  gap:13px!important;
}
body.fs-php-rendered-index .fs-featured-card-php .fs-featured-mini-body h3{
  margin:0!important;
  color:#fff!important;
  font-size:clamp(26px,2.1vw,34px)!important;
  line-height:1.08!important;
  font-weight:1000!important;
}
body.fs-php-rendered-index .fs-featured-card-php .fs-featured-mini-body p{
  margin:0!important;
  color:rgba(203,213,225,.88)!important;
  font-size:16px!important;
  line-height:1.45!important;
  -webkit-line-clamp:4!important;
}
body.fs-php-rendered-index .fs-featured-mini-actions{
  width:100%!important;
  max-width:410px!important;
  display:grid!important;
  grid-template-columns:1fr!important;
  gap:12px!important;
  margin-top:4px!important;
  align-items:stretch!important;
}
body.fs-php-rendered-index .fs-featured-mini-actions.has-demo{
  grid-template-columns:120px minmax(0,1fr)!important;
}
body.fs-php-rendered-index .fs-featured-mini-demo,
body.fs-php-rendered-index .fs-featured-mini-buy{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  height:46px!important;
  min-height:46px!important;
  border-radius:16px!important;
  padding:11px 14px!important;
  box-sizing:border-box!important;
  text-decoration:none!important;
  font-size:14px!important;
  font-weight:1000!important;
  line-height:1.15!important;
  cursor:pointer!important;
  white-space:nowrap!important;
}
body.fs-php-rendered-index .fs-featured-mini-demo{
  color:#dff8ff!important;
  background:linear-gradient(135deg,rgba(8,47,73,.95),rgba(12,74,110,.88))!important;
  border:1px solid rgba(56,189,248,.24)!important;
  box-shadow:0 8px 20px rgba(14,165,233,.12)!important;
}
body.fs-php-rendered-index .fs-featured-mini-buy{
  width:100%!important;
  color:#fff!important;
  border:0!important;
  background:linear-gradient(135deg,#0ea5e9,#2563eb)!important;
  box-shadow:0 10px 24px rgba(37,99,235,.24)!important;
}
body.fs-php-rendered-index .fs-featured-mini-price,
body.fs-php-rendered-index .fs-featured-mini-action{
  display:none!important;
}
@media(max-width:980px){
  body.fs-php-rendered-index .fs-featured-mini-actions{
    margin-left:auto!important;
    margin-right:auto!important;
  }
}
@media(max-width:640px){
  body.fs-php-rendered-index .fs-featured-mini-actions.has-demo{
    grid-template-columns:108px minmax(0,1fr)!important;
  }
  body.fs-php-rendered-index .fs-featured-mini-demo,
  body.fs-php-rendered-index .fs-featured-mini-buy{
    height:44px!important;
    min-height:44px!important;
    border-radius:15px!important;
    font-size:13px!important;
    padding:10px 12px!important;
  }
}

/* Final Space v315 — featured button mirrors owned/download state */
body.fs-php-rendered-index .fs-featured-mini-buy.fs-featured-download-ready{
  background:linear-gradient(135deg,#16a34a,#22c55e)!important;
  color:#fff!important;
  box-shadow:0 12px 28px rgba(34,197,94,.26)!important;
}



/* FinalSpace v335: support modal CSS lives inline next to the rebuilt coupon-style support modal. */


/* v349: use generated Final Space Store logo in public header */
.fs-brand-with-logo{display:flex!important;align-items:center;justify-content:center;min-width:220px;max-width:360px;height:58px;line-height:0;}
.fs-brand-with-logo img{display:block;max-height:54px;max-width:330px;width:auto;object-fit:contain;filter:drop-shadow(0 0 14px rgba(56,189,248,.25));}
@media(max-width:900px){.fs-brand-with-logo{min-width:160px;max-width:220px;height:48px}.fs-brand-with-logo img{max-height:44px;max-width:220px}}
@media(max-width:640px){.fs-brand-with-logo{min-width:130px;max-width:170px}.fs-brand-with-logo img{max-height:38px;max-width:170px}}

/* v351: use transparent generated Final Space Store logo clearly in public header */
.fs-brand-with-logo{min-width:300px!important;max-width:520px!important;height:76px!important;display:flex!important;align-items:center!important;justify-content:center!important;line-height:0!important;background:transparent!important;}
.fs-brand-with-logo img{max-height:72px!important;max-width:500px!important;width:auto!important;object-fit:contain!important;filter:drop-shadow(0 0 18px rgba(56,189,248,.34))!important;background:transparent!important;}
@media(max-width:900px){.fs-brand-with-logo{min-width:220px!important;max-width:340px!important;height:62px!important}.fs-brand-with-logo img{max-height:58px!important;max-width:330px!important}}
@media(max-width:640px){.fs-brand-with-logo{min-width:170px!important;max-width:240px!important;height:52px!important}.fs-brand-with-logo img{max-height:48px!important;max-width:235px!important}}


/* FinalSpace v353: public header logo full-width clear display + smaller wallet tabs */
.fs-header{min-height:88px!important;}
.fs-header-wrap{
  min-height:88px!important;
  grid-template-columns:minmax(285px,1fr) minmax(460px,auto) minmax(390px,1fr)!important;
  gap:14px!important;
  overflow:visible!important;
}
.fs-brand-with-logo{
  min-width:460px!important;
  max-width:620px!important;
  height:84px!important;
  padding:0 14px!important;
  overflow:visible!important;
}
.fs-brand-with-logo img{
  display:block!important;
  width:auto!important;
  max-width:600px!important;
  max-height:80px!important;
  object-fit:contain!important;
  object-position:center!important;
  background:transparent!important;
}
.fs-right{gap:8px!important;}
.fs-right .fs-btn,
.fs-header .fs-btn,
#fs-btn-owned,
#fs-btn-referrals,
#fs-btn-tickets,
#fs-btn-payouts,
#fs-btn-disconnect,
#fs-btn-connect{
  padding:7px 12px!important;
  font-size:13px!important;
  border-radius:8px!important;
  line-height:1.15!important;
}
@media(max-width:1180px){
  .fs-header-wrap{grid-template-columns:minmax(220px,1fr) minmax(360px,auto) minmax(310px,1fr)!important;}
  .fs-brand-with-logo{min-width:360px!important;max-width:460px!important;height:72px!important;}
  .fs-brand-with-logo img{max-width:450px!important;max-height:68px!important;}
  .fs-right .fs-btn,.fs-header .fs-btn{padding:7px 9px!important;font-size:12px!important;}
}
@media(max-width:900px){
  .fs-header{min-height:132px!important;}
  .fs-header-wrap{grid-template-columns:1fr!important;min-height:132px!important;gap:8px!important;}
  .fs-brand-with-logo{min-width:280px!important;max-width:360px!important;height:62px!important;}
  .fs-brand-with-logo img{max-height:58px!important;max-width:350px!important;}
}
@media(max-width:640px){
  .fs-brand-with-logo{min-width:240px!important;max-width:310px!important;height:56px!important;}
  .fs-brand-with-logo img{max-height:52px!important;max-width:300px!important;}
  .fs-right .fs-btn,.fs-header .fs-btn{padding:7px 9px!important;font-size:12px!important;}
}


/* FinalSpace v354 — full transparent logo, no crop, smaller nav tabs */
.fs-header{min-height:78px!important;}
.fs-header-wrap{min-height:78px!important;grid-template-columns:minmax(260px,1fr) minmax(390px,440px) minmax(340px,1fr)!important;gap:10px!important;overflow:visible!important;}
.fs-brand-with-logo{min-width:390px!important;max-width:440px!important;height:72px!important;padding:0!important;overflow:visible!important;background:transparent!important;}
.fs-brand-with-logo img{display:block!important;width:100%!important;max-width:440px!important;max-height:70px!important;object-fit:contain!important;object-position:center!important;background:transparent!important;filter:drop-shadow(0 0 14px rgba(56,189,248,.32))!important;}
.fs-right{gap:7px!important;}
.fs-right .fs-btn,.fs-header .fs-btn,#fs-btn-owned,#fs-btn-referrals,#fs-btn-tickets,#fs-btn-payouts,#fs-btn-disconnect,#fs-btn-connect{padding:7px 10px!important;font-size:12px!important;border-radius:8px!important;line-height:1.1!important;}
@media(max-width:1180px){.fs-header-wrap{grid-template-columns:minmax(220px,1fr) minmax(330px,380px) minmax(300px,1fr)!important}.fs-brand-with-logo{min-width:330px!important;max-width:380px!important}.fs-brand-with-logo img{max-width:380px!important}.fs-right .fs-btn,.fs-header .fs-btn{padding:7px 8px!important;font-size:11.5px!important}}
@media(max-width:900px){.fs-header{min-height:132px!important}.fs-header-wrap{grid-template-columns:1fr!important;min-height:132px!important;gap:8px!important}.fs-brand-with-logo{min-width:320px!important;max-width:420px!important;height:62px!important}.fs-brand-with-logo img{max-height:60px!important;max-width:420px!important}}
@media(max-width:640px){.fs-brand-with-logo{min-width:280px!important;max-width:340px!important;height:56px!important}.fs-brand-with-logo img{max-height:54px!important;max-width:340px!important}.fs-right .fs-btn,.fs-header .fs-btn{padding:7px 8px!important;font-size:11.5px!important}}

/* FinalSpace v355: clean full logo + compact header tabs */
.fs-header{min-height:92px!important;}
.fs-header-wrap{grid-template-columns:minmax(260px,1fr) minmax(430px,560px) minmax(330px,1fr)!important;align-items:center!important;gap:16px!important;}
.fs-brand-with-logo{min-width:430px!important;max-width:560px!important;width:100%!important;height:86px!important;overflow:visible!important;padding:0 8px!important;background:transparent!important;}
.fs-brand-with-logo img{width:100%!important;max-width:540px!important;max-height:82px!important;height:auto!important;object-fit:contain!important;object-position:center center!important;background:transparent!important;filter:drop-shadow(0 0 14px rgba(56,189,248,.30))!important;}
.fs-right{gap:8px!important;flex-wrap:nowrap!important;}
.fs-right .fs-btn,.fs-header .fs-btn{padding:8px 12px!important;font-size:12.5px!important;border-radius:9px!important;white-space:nowrap!important;}
@media(max-width:1220px){.fs-header-wrap{grid-template-columns:minmax(230px,1fr) minmax(370px,460px) minmax(300px,1fr)!important}.fs-brand-with-logo{min-width:370px!important;max-width:460px!important;height:74px!important}.fs-brand-with-logo img{max-width:450px!important;max-height:70px!important}.fs-right .fs-btn,.fs-header .fs-btn{padding:7px 9px!important;font-size:11.5px!important}}
@media(max-width:900px){.fs-header{min-height:138px!important}.fs-header-wrap{grid-template-columns:1fr!important;gap:8px!important}.fs-brand-with-logo{min-width:300px!important;max-width:520px!important;height:70px!important}.fs-brand-with-logo img{max-width:500px!important;max-height:66px!important}.fs-right{justify-content:center!important;flex-wrap:wrap!important}}
@media(max-width:640px){.fs-brand-with-logo{min-width:270px!important;max-width:360px!important;height:58px!important}.fs-brand-with-logo img{max-width:350px!important;max-height:54px!important}.fs-right .fs-btn,.fs-header .fs-btn{padding:7px 8px!important;font-size:11px!important}}


/* FinalSpace v356 full transparent logo + compact header tabs */
.fs-header{min-height:92px!important;overflow:visible!important;}
.fs-header-wrap{grid-template-columns:minmax(260px,1fr) minmax(520px,680px) minmax(360px,1fr)!important;gap:12px!important;overflow:visible!important;}
.fs-brand-with-logo{min-width:520px!important;max-width:680px!important;width:100%!important;height:88px!important;overflow:visible!important;padding:0!important;background:transparent!important;}
.fs-brand-with-logo img{display:block!important;width:100%!important;max-width:680px!important;max-height:86px!important;height:auto!important;object-fit:contain!important;object-position:center center!important;background:transparent!important;filter:drop-shadow(0 0 15px rgba(56,189,248,.32))!important;}
.fs-right{gap:8px!important;justify-content:flex-end!important;}
.fs-right .fs-btn,.fs-header .fs-btn,#fs-btn-owned,#fs-btn-referrals,#fs-btn-tickets,#fs-btn-payouts,#fs-btn-disconnect,#fs-btn-connect{padding:7px 9px!important;font-size:12px!important;border-radius:9px!important;line-height:1.1!important;white-space:nowrap!important;}
@media(max-width:1320px){.fs-header-wrap{grid-template-columns:minmax(220px,1fr) minmax(420px,540px) minmax(300px,1fr)!important}.fs-brand-with-logo{min-width:420px!important;max-width:540px!important;height:76px!important}.fs-brand-with-logo img{max-width:540px!important;max-height:74px!important}.fs-right .fs-btn,.fs-header .fs-btn{padding:6px 8px!important;font-size:11.5px!important}}
@media(max-width:980px){.fs-header{min-height:142px!important}.fs-header-wrap{grid-template-columns:1fr!important;gap:8px!important}.fs-brand-with-logo{min-width:min(92vw,560px)!important;max-width:min(92vw,560px)!important;height:78px!important}.fs-brand-with-logo img{max-width:min(92vw,560px)!important;max-height:74px!important}.fs-right{justify-content:center!important;flex-wrap:wrap!important}}
@media(max-width:640px){.fs-brand-with-logo{height:64px!important}.fs-brand-with-logo img{max-height:60px!important}.fs-right .fs-btn,.fs-header .fs-btn{padding:7px 8px!important;font-size:11px!important}}


/* FinalSpace v417 native gallery owner fix */
body.fs-php-rendered-index #store[data-render="php"] .product-gallery .pg-thumbs{
  display:flex!important;
  visibility:visible!important;
  opacity:1!important;
}
body.fs-php-rendered-index #store[data-render="php"] .product-gallery .pg-thumb{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  overflow:hidden!important;
  color:transparent!important;
  font-size:0!important;
}
body.fs-php-rendered-index #store[data-render="php"] .product-gallery .pg-thumb img{
  display:block!important;
  visibility:visible!important;
  opacity:1!important;
  width:100%!important;
  height:100%!important;
  object-fit:cover!important;
}
body.fs-php-rendered-index #store[data-render="php"] .product-gallery .pg-thumb::before,
body.fs-php-rendered-index #store[data-render="php"] .product-gallery .pg-thumb::after{
  pointer-events:none!important;
}


/* FinalSpace v418 — gallery thumbnails are real media controls, not buy/download buttons. */
body.fs-php-rendered-index #store[data-render="php"] .product-gallery .pg-thumb{font-size:0!important;line-height:0!important;text-indent:0!important;color:transparent!important;user-select:none!important;}
body.fs-php-rendered-index #store[data-render="php"] .product-gallery .pg-thumb img{font-size:initial!important;color:initial!important;display:block!important;visibility:visible!important;opacity:1!important;width:100%!important;height:100%!important;object-fit:cover!important;}
body.fs-php-rendered-index #store[data-render="php"] .product-gallery .pg-thumb .pg-thumb-video-inner{font-size:initial!important;color:#fff!important;}
body.fs-php-rendered-index #store[data-render="php"] .product-gallery .pg-thumb::before,
body.fs-php-rendered-index #store[data-render="php"] .product-gallery .pg-thumb::after{content:none!important;display:none!important;}


/* Final Space v419 — keep Demo controls separate from Buy/Download state. */
body.fs-php-rendered-index #store[data-render="php"] .product-card .demo-btn,
body.fs-php-rendered-index #store[data-render="php"] .product-card .demo-btn.download-btn,
body.fs-php-rendered-index #store[data-render="php"] .product-card .demo-btn.fs-download-ready,
body.fs-php-rendered-index .fs-featured-mini-demo,
body.fs-php-rendered-index .fs-featured-mini-demo.download-btn,
body.fs-php-rendered-index .fs-featured-mini-demo.fs-download-ready{
  background:linear-gradient(135deg,rgba(8,47,73,.95),rgba(12,74,110,.88))!important;
  border:1px solid rgba(56,189,248,.34)!important;
  color:#dff8ff!important;
  box-shadow:0 8px 20px rgba(14,165,233,.12)!important;
}
body.fs-php-rendered-index #store[data-render="php"] .product-card .demo-btn::before,
body.fs-php-rendered-index #store[data-render="php"] .product-card .demo-btn::after,
body.fs-php-rendered-index .fs-featured-mini-demo::before,
body.fs-php-rendered-index .fs-featured-mini-demo::after{content:none!important;display:none!important;}


/* Final Space v420 — professional dark cookie consent matching the website. */
.fs-cookie-consent{position:fixed;inset:0;z-index:2147483000;display:flex;align-items:center;justify-content:center;padding:22px;background:rgba(2,6,23,.76);font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;}
.fs-cookie-card{width:min(920px,94vw);max-height:92vh;overflow:auto;border-radius:30px;background:linear-gradient(145deg,rgba(15,23,42,.98),rgba(8,47,73,.96));color:#e5f3ff;border:1px solid rgba(34,211,238,.32);box-shadow:0 34px 120px rgba(0,0,0,.62),0 0 0 1px rgba(255,255,255,.04) inset;text-align:center;padding:30px 32px 28px;}
.fs-cookie-logo{display:flex;justify-content:center;align-items:center;margin-bottom:16px;}
.fs-cookie-logo img{max-width:310px;max-height:82px;width:auto;height:auto;object-fit:contain;filter:drop-shadow(0 0 18px rgba(56,189,248,.28));}
.fs-cookie-card h2{margin:4px 0 14px;font-size:31px;line-height:1.1;color:#fff;font-weight:1000;letter-spacing:-.02em;}
.fs-cookie-card p{margin:0 auto 22px;max-width:780px;color:#c7d7ef;font-size:18px;line-height:1.55;font-weight:650;}
.fs-cookie-settings{display:none;margin:12px auto 22px;max-width:760px;text-align:left;gap:10px;}
.fs-cookie-settings.open{display:grid;}
.fs-cookie-settings label{display:grid;grid-template-columns:24px minmax(0,1fr);gap:12px;align-items:start;padding:14px 16px;border:1px solid rgba(34,211,238,.20);background:rgba(2,6,23,.38);border-radius:16px;}
.fs-cookie-settings input{width:20px;height:20px;accent-color:#22d3ee;margin-top:2px;}
.fs-cookie-settings b{display:block;color:#fff;font-size:15px;margin-bottom:3px;}
.fs-cookie-settings small{display:block;color:#a8bfd8;font-size:13px;line-height:1.35;font-weight:600;}
.fs-cookie-actions{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px;align-items:center;}
.fs-cookie-btn{min-height:58px;border-radius:14px;padding:14px 18px;font-size:16px;font-weight:900;line-height:1.15;cursor:pointer;transition:transform .15s ease,box-shadow .15s ease,background .15s ease;border:1px solid rgba(147,197,253,.28);background:rgba(15,23,42,.72);color:#dbeafe;}
.fs-cookie-btn:hover{transform:translateY(-1px);box-shadow:0 16px 34px rgba(14,165,233,.18);}
.fs-cookie-btn.primary{background:linear-gradient(135deg,#0ea5e9,#2563eb);color:#fff;border-color:rgba(56,189,248,.52);box-shadow:0 16px 34px rgba(37,99,235,.28);}
.fs-cookie-btn.light{background:rgba(15,23,42,.62);color:#bfdbfe;}
.fs-cookie-btn.ghost{background:rgba(8,47,73,.58);color:#a7f3ff;}
@media(max-width:760px){.fs-cookie-card{padding:24px 18px;border-radius:24px}.fs-cookie-card h2{font-size:24px}.fs-cookie-card p{font-size:15px}.fs-cookie-actions{grid-template-columns:1fr;gap:10px}.fs-cookie-btn{min-height:52px;font-size:15px}.fs-cookie-logo img{max-width:260px;max-height:66px}}

/* Final Space v420 — demo is never a download/owned button. */
#store .product-card .product-actions .demo-btn,
#store .product-card .product-actions [data-fs-demo]{background:linear-gradient(135deg,rgba(8,47,73,.95),rgba(12,74,110,.88))!important;border:1px solid rgba(56,189,248,.26)!important;color:#dff8ff!important;box-shadow:0 8px 20px rgba(14,165,233,.12)!important;}
#store .product-card .product-actions .demo-btn::after,
#store .product-card .product-actions [data-fs-demo]::after{content:none!important;display:none!important;}

/* Final Space v421 — keep two-product catalogue in one row on tablet/small desktop. */
@media (min-width:641px) and (max-width:980px){
  body.fs-php-rendered-index #store[data-render="php"].fs-product-count-2,
  body.fs-php-rendered-index #store[data-render="php"].fs-page-count-2,
  body.fs-php-rendered-index #store[data-render="php"].fs-count-2,
  body.fs-php-rendered-index #store[data-render="php"].fs-pro-store-grid.fs-product-count-2,
  body.fs-php-rendered-index #store[data-render="php"].fs-store-grid.fs-product-count-2{
    display:grid!important;
    grid-template-columns:repeat(2,minmax(260px,360px))!important;
    max-width:760px!important;
    width:100%!important;
    gap:22px!important;
    justify-content:center!important;
  }
  body.fs-php-rendered-index #store[data-render="php"].fs-product-count-2 > .product-card{
    max-width:360px!important;
    min-width:0!important;
  }
}


/* FinalSpace v422 — server-side catalog filters only. Never let old JS hide PHP-rendered product cards. */
body.fs-php-rendered-index #store[data-render="php"] > .product-card.fs-pro-hidden,
body.fs-php-rendered-index #store[data-render="php"] > .fs-php-product-card.fs-pro-hidden{
  display:flex!important;
  visibility:visible!important;
  opacity:1!important;
}
@media (min-width:520px) and (max-width:980px){
  body.fs-php-rendered-index #store[data-render="php"].fs-product-count-2,
  body.fs-php-rendered-index #store[data-render="php"].fs-page-count-2,
  body.fs-php-rendered-index #store[data-render="php"].fs-count-2,
  body.fs-php-rendered-index #store[data-render="php"].fs-pro-store-grid.fs-product-count-2,
  body.fs-php-rendered-index #store[data-render="php"].fs-store-grid.fs-product-count-2{
    display:grid!important;
    grid-template-columns:repeat(2,minmax(220px,360px))!important;
    max-width:760px!important;
    width:100%!important;
    gap:22px!important;
    justify-content:center!important;
  }
}

/* FinalSpace v423 — restore original catalog row layout without hiding hacks.
   Desktop: 3 cards per row. Two visible products: one centered row. One product: centered.
   Mobile only stacks to one column. */
body.fs-php-rendered-index main#products.fs-pro-products-main,
body.fs-php-rendered-index main.fs-pro-products-main{
  width:min(1180px, calc(100% - 32px))!important;
  max-width:1180px!important;
  margin-left:auto!important;
  margin-right:auto!important;
  padding-left:0!important;
  padding-right:0!important;
}
body.fs-php-rendered-index #store[data-render="php"].fs-store-grid,
body.fs-php-rendered-index #store[data-render="php"].fs-pro-store-grid{
  display:grid!important;
  grid-template-columns:repeat(3, minmax(280px, 360px))!important;
  gap:26px!important;
  width:100%!important;
  max-width:1132px!important;
  margin-left:auto!important;
  margin-right:auto!important;
  justify-content:center!important;
  justify-items:center!important;
  align-items:start!important;
  padding:0!important;
  background:transparent!important;
}
body.fs-php-rendered-index #store[data-render="php"].fs-product-count-1,
body.fs-php-rendered-index #store[data-render="php"].fs-page-count-1,
body.fs-php-rendered-index #store[data-render="php"].fs-count-1{
  grid-template-columns:minmax(280px, 360px)!important;
  max-width:390px!important;
}
body.fs-php-rendered-index #store[data-render="php"].fs-product-count-2,
body.fs-php-rendered-index #store[data-render="php"].fs-page-count-2,
body.fs-php-rendered-index #store[data-render="php"].fs-count-2{
  grid-template-columns:repeat(2, minmax(280px, 360px))!important;
  max-width:746px!important;
}
body.fs-php-rendered-index #store[data-render="php"] > .product-card.fs-php-product-card,
body.fs-php-rendered-index #store[data-render="php"] > .product-card.fs-pro-card-ready{
  width:100%!important;
  max-width:360px!important;
  min-width:0!important;
  justify-self:center!important;
  align-self:start!important;
  margin:0!important;
}
@media (max-width:1180px) and (min-width:761px){
  body.fs-php-rendered-index #store[data-render="php"].fs-store-grid,
  body.fs-php-rendered-index #store[data-render="php"].fs-pro-store-grid{
    grid-template-columns:repeat(2, minmax(280px, 360px))!important;
    max-width:746px!important;
  }
}
@media (max-width:760px){
  body.fs-php-rendered-index main#products.fs-pro-products-main,
  body.fs-php-rendered-index main.fs-pro-products-main{
    width:min(100%, calc(100% - 24px))!important;
  }
  body.fs-php-rendered-index #store[data-render="php"].fs-store-grid,
  body.fs-php-rendered-index #store[data-render="php"].fs-pro-store-grid,
  body.fs-php-rendered-index #store[data-render="php"].fs-product-count-1,
  body.fs-php-rendered-index #store[data-render="php"].fs-product-count-2,
  body.fs-php-rendered-index #store[data-render="php"].fs-product-count-3,
  body.fs-php-rendered-index #store[data-render="php"].fs-page-count-1,
  body.fs-php-rendered-index #store[data-render="php"].fs-page-count-2,
  body.fs-php-rendered-index #store[data-render="php"].fs-page-count-3,
  body.fs-php-rendered-index #store[data-render="php"].fs-count-1,
  body.fs-php-rendered-index #store[data-render="php"].fs-count-2,
  body.fs-php-rendered-index #store[data-render="php"].fs-count-3{
    grid-template-columns:minmax(0, min(100%, 390px))!important;
    max-width:390px!important;
  }
  body.fs-php-rendered-index #store[data-render="php"] > .product-card.fs-php-product-card,
  body.fs-php-rendered-index #store[data-render="php"] > .product-card.fs-pro-card-ready{
    max-width:390px!important;
  }
}


/* FinalSpace v441: stable PHP catalog grid and admin metric header cleanup */
body.fs-php-rendered-index #store[data-render="php"].fs-pro-store-grid,
body.fs-php-rendered-index #store[data-render="php"].fs-store-grid{
  grid-template-columns:repeat(3,minmax(280px,360px))!important;
  max-width:1160px!important;
  justify-content:center!important;
  margin-left:auto!important;
  margin-right:auto!important;
  overflow:visible!important;
}
body.fs-php-rendered-index #store[data-render="php"].fs-product-count-1{grid-template-columns:minmax(280px,360px)!important;max-width:380px!important;}
body.fs-php-rendered-index #store[data-render="php"].fs-product-count-2{grid-template-columns:repeat(2,minmax(280px,360px))!important;max-width:760px!important;}
body.fs-php-rendered-index #store[data-render="php"] > .product-card.fs-php-product-card{justify-self:center!important;}
@media(max-width:1180px){body.fs-php-rendered-index #store[data-render="php"].fs-pro-store-grid,body.fs-php-rendered-index #store[data-render="php"].fs-store-grid{grid-template-columns:repeat(2,minmax(280px,360px))!important;max-width:760px!important;}}
@media(max-width:760px){body.fs-php-rendered-index #store[data-render="php"].fs-pro-store-grid,body.fs-php-rendered-index #store[data-render="php"].fs-store-grid{grid-template-columns:minmax(280px,390px)!important;max-width:420px!important;}}

/* FinalSpace v443 — product title above image */
.product-card>.fs-product-name-top{display:block!important;padding:14px 16px 8px!important;margin:0!important;color:#fff!important;font-weight:1000!important;font-size:clamp(18px,2vw,24px)!important;line-height:1.16!important;text-align:left!important;letter-spacing:-.02em!important;}
.product-card>.product-gallery{margin-top:0!important;}
.product-card .product-info>.product-name{display:none!important;}


/* FinalSpace v444 — centered product name value-header UI */
body.fs-php-rendered-index #store[data-render="php"] .product-card > .fs-product-name-top,
.product-card > .fs-product-name-top{
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  min-height:52px!important;
  padding:12px 16px!important;
  margin:14px 14px 10px!important;
  border:1px solid rgba(14,165,233,.34)!important;
  border-radius:18px!important;
  background:linear-gradient(180deg,rgba(15,23,42,.92),rgba(2,6,23,.72))!important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08),0 10px 28px rgba(14,165,233,.12)!important;
  color:#fff!important;
  text-align:center!important;
  font-weight:1000!important;
  font-size:clamp(19px,2.05vw,27px)!important;
  line-height:1.14!important;
  letter-spacing:-.035em!important;
  text-shadow:0 2px 14px rgba(14,165,233,.20)!important;
  overflow:visible!important;
  white-space:normal!important;
  text-overflow:clip!important;
}
body.fs-php-rendered-index #store[data-render="php"] .product-card > .fs-product-name-top::before,
.product-card > .fs-product-name-top::before{
  content:''!important;
  width:8px!important;height:8px!important;border-radius:99px!important;
  background:#22d3ee!important;
  box-shadow:0 0 14px rgba(34,211,238,.9)!important;
  margin-right:10px!important;
  flex:0 0 auto!important;
}
body.fs-php-rendered-index #store[data-render="php"] .product-card > .product-gallery{margin-top:0!important;}


/* FinalSpace v445 — visible badge in product title header + cleaner centered title */
body.fs-php-rendered-index #store[data-render="php"] .product-card > .fs-product-name-top,
.product-card > .fs-product-name-top{
  display:grid!important;
  grid-template-columns:auto minmax(0,1fr)!important;
  align-items:center!important;
  justify-content:stretch!important;
  column-gap:12px!important;
  min-height:58px!important;
  padding:12px 15px!important;
  margin:14px 14px 11px!important;
  border:1px solid rgba(34,211,238,.45)!important;
  border-radius:18px!important;
  background:linear-gradient(180deg,rgba(15,23,42,.96),rgba(2,8,23,.82))!important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.10),0 14px 34px rgba(14,165,233,.16)!important;
  color:#fff!important;
  text-align:center!important;
  font-weight:1000!important;
  font-size:clamp(19px,2.05vw,27px)!important;
  line-height:1.14!important;
  letter-spacing:-.035em!important;
  text-shadow:0 2px 16px rgba(14,165,233,.24)!important;
}
body.fs-php-rendered-index #store[data-render="php"] .product-card > .fs-product-name-top::before,
.product-card > .fs-product-name-top::before{content:none!important;display:none!important;}
.product-card > .fs-product-name-top .fs-title-text{
  display:block!important;
  min-width:0!important;
  text-align:center!important;
  overflow:hidden!important;
  text-overflow:ellipsis!important;
  white-space:normal!important;
}
.product-card > .fs-product-name-top .fs-title-dot{
  width:10px!important;height:10px!important;border-radius:99px!important;
  background:#22d3ee!important;box-shadow:0 0 16px rgba(34,211,238,.95)!important;
  justify-self:center!important;
}
.product-card > .fs-product-name-top .fs-title-badge{
  position:static!important;
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  min-width:48px!important;
  max-width:112px!important;
  padding:7px 10px!important;
  border-radius:999px!important;
  font-size:10px!important;
  line-height:1!important;
  letter-spacing:.11em!important;
  text-transform:uppercase!important;
  font-weight:1000!important;
  color:#ffffff!important;
  border:1px solid rgba(255,255,255,.35)!important;
  background:linear-gradient(135deg,#0891b2,#2563eb)!important;
  box-shadow:0 0 0 1px rgba(255,255,255,.08) inset,0 8px 22px rgba(37,99,235,.34)!important;
  text-shadow:0 1px 6px rgba(0,0,0,.38)!important;
  overflow:hidden!important;
  text-overflow:ellipsis!important;
  white-space:nowrap!important;
}
.product-card > .fs-product-name-top .fs-title-badge.pg-badge-hot{background:linear-gradient(135deg,#f97316,#ef4444)!important;box-shadow:0 0 0 1px rgba(255,255,255,.10) inset,0 8px 22px rgba(249,115,22,.38)!important;}
.product-card > .fs-product-name-top .fs-title-badge.pg-badge-new{background:linear-gradient(135deg,#16a34a,#22c55e)!important;box-shadow:0 0 0 1px rgba(255,255,255,.10) inset,0 8px 22px rgba(34,197,94,.34)!important;}
.product-card > .fs-product-name-top .fs-title-badge.pg-badge-featured{background:linear-gradient(135deg,#7c3aed,#2563eb)!important;box-shadow:0 0 0 1px rgba(255,255,255,.10) inset,0 8px 22px rgba(124,58,237,.38)!important;}
.product-card > .fs-product-name-top .fs-title-badge.pg-badge-best{background:linear-gradient(135deg,#eab308,#f97316)!important;box-shadow:0 0 0 1px rgba(255,255,255,.10) inset,0 8px 22px rgba(234,179,8,.35)!important;}
.product-card .product-gallery .pg-badge,.product-card .pg-main .pg-badge{display:none!important;}
@media(max-width:560px){.product-card > .fs-product-name-top{grid-template-columns:1fr!important;row-gap:8px!important}.product-card > .fs-product-name-top .fs-title-badge,.product-card > .fs-product-name-top .fs-title-dot{justify-self:center!important}}


/* FinalSpace v446 — compact title header, balanced badge + title layout */
body.fs-php-rendered-index #store[data-render="php"] .product-card > .fs-product-name-top,
.product-card > .fs-product-name-top{
  display:grid!important;
  grid-template-columns:minmax(42px,82px) minmax(0,1fr) minmax(42px,82px)!important;
  align-items:center!important;
  min-height:44px!important;
  padding:8px 12px!important;
  margin:10px 12px 9px!important;
  border-radius:14px!important;
  column-gap:8px!important;
  font-size:clamp(17px,1.65vw,23px)!important;
  line-height:1.08!important;
  letter-spacing:-.025em!important;
  background:linear-gradient(180deg,rgba(12,22,42,.96),rgba(3,10,24,.88))!important;
  border:1px solid rgba(34,211,238,.52)!important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.10),0 9px 22px rgba(14,165,233,.13)!important;
}
.product-card > .fs-product-name-top::after{
  content:''!important;
  display:block!important;
  width:100%!important;
  height:1px!important;
}
.product-card > .fs-product-name-top .fs-title-text{
  grid-column:2!important;
  justify-self:center!important;
  text-align:center!important;
  width:100%!important;
  color:#ffffff!important;
}
.product-card > .fs-product-name-top .fs-title-badge,
.product-card > .fs-product-name-top .fs-title-dot{
  grid-column:1!important;
  justify-self:start!important;
}
.product-card > .fs-product-name-top .fs-title-badge{
  min-width:42px!important;
  max-width:82px!important;
  padding:6px 9px!important;
  font-size:9px!important;
  letter-spacing:.08em!important;
  border-radius:999px!important;
}
.product-card > .fs-product-name-top .fs-title-dot{
  width:9px!important;
  height:9px!important;
  margin-left:0!important;
}
.product-card > .fs-product-name-top .fs-title-badge.pg-badge-hot{background:linear-gradient(135deg,#fb923c,#ef4444)!important;color:#fff!important;}
.product-card > .fs-product-name-top .fs-title-badge.pg-badge-new{background:linear-gradient(135deg,#22c55e,#06b6d4)!important;color:#fff!important;}
.product-card > .fs-product-name-top .fs-title-badge.pg-badge-featured{background:linear-gradient(135deg,#8b5cf6,#0ea5e9)!important;color:#fff!important;}
.product-card > .fs-product-name-top .fs-title-badge.pg-badge-best{background:linear-gradient(135deg,#facc15,#f97316)!important;color:#111827!important;text-shadow:none!important;}
@media(max-width:560px){
  .product-card > .fs-product-name-top{grid-template-columns:minmax(36px,68px) 1fr minmax(36px,68px)!important;min-height:42px!important;padding:8px 10px!important;}
  .product-card > .fs-product-name-top .fs-title-badge{min-width:38px!important;max-width:68px!important;font-size:8px!important;padding:6px 7px!important;}
}

/* FinalSpace v447 — title closer to badge and full-length title fix */
body.fs-php-rendered-index #store[data-render="php"] .product-card > .fs-product-name-top,
.product-card > .fs-product-name-top{
  display:grid!important;
  grid-template-columns:auto minmax(0,1fr)!important;
  align-items:center!important;
  justify-content:start!important;
  column-gap:10px!important;
  min-height:40px!important;
  padding:7px 10px!important;
  margin:8px 10px 8px!important;
}
.product-card > .fs-product-name-top::after{display:none!important;content:none!important;}
.product-card > .fs-product-name-top .fs-title-badge,
.product-card > .fs-product-name-top .fs-title-dot{
  grid-column:1!important;
  justify-self:start!important;
  flex:0 0 auto!important;
}
.product-card > .fs-product-name-top .fs-title-text{
  grid-column:2!important;
  justify-self:start!important;
  text-align:left!important;
  width:100%!important;
  max-width:100%!important;
  white-space:nowrap!important;
  overflow:visible!important;
  text-overflow:clip!important;
  font-size:clamp(16px,1.25vw,21px)!important;
  line-height:1.05!important;
}
.product-card > .fs-product-name-top .fs-title-badge{
  min-width:auto!important;
  max-width:none!important;
  padding:6px 13px!important;
  font-size:9px!important;
  box-shadow:0 0 18px rgba(248,113,113,.45), inset 0 1px 0 rgba(255,255,255,.3)!important;
}
@media(max-width:560px){
  .product-card > .fs-product-name-top{
    grid-template-columns:auto minmax(0,1fr)!important;
    column-gap:8px!important;
    min-height:38px!important;
    padding:7px 9px!important;
  }
  .product-card > .fs-product-name-top .fs-title-text{
    font-size:clamp(15px,4.8vw,19px)!important;
  }
}


/* ============================================================
   FinalSpace v450 — header button uniformity, safe product grid,
   clearer compact title boxes, professional buy buttons
   ============================================================ */
body.fs-php-rendered-index .fs-header,
body.fs-php-rendered-index #fs-main-header-v211{
  overflow:visible!important;
}
body.fs-php-rendered-index .fs-header-wrap{
  max-width:1500px!important;
  width:min(calc(100vw - 28px),1500px)!important;
  grid-template-columns:minmax(260px,1fr) minmax(260px,520px) minmax(360px,1fr)!important;
  gap:14px!important;
  align-items:center!important;
}
body.fs-php-rendered-index .fs-right{
  display:flex!important;
  align-items:center!important;
  justify-content:flex-end!important;
  gap:8px!important;
  flex-wrap:nowrap!important;
  min-width:0!important;
}
body.fs-php-rendered-index .fs-right .fs-btn,
body.fs-php-rendered-index .fs-header .fs-btn,
body.fs-php-rendered-index #fs-btn-owned,
body.fs-php-rendered-index #fs-btn-referrals,
body.fs-php-rendered-index #fs-btn-tickets,
body.fs-php-rendered-index #fs-btn-payouts,
body.fs-php-rendered-index #fs-btn-payouts-anchor .fs-btn,
body.fs-php-rendered-index #fs-btn-disconnect,
body.fs-php-rendered-index #fs-btn-connect{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  height:42px!important;
  min-height:42px!important;
  padding:0 13px!important;
  border-radius:12px!important;
  line-height:1!important;
  font-size:12px!important;
  font-weight:950!important;
  letter-spacing:-.01em!important;
  white-space:nowrap!important;
  border:1px solid rgba(96,165,250,.26)!important;
  background:linear-gradient(135deg,#0ea5e9,#2563eb)!important;
  color:#fff!important;
  box-shadow:0 10px 24px rgba(37,99,235,.20), inset 0 1px 0 rgba(255,255,255,.18)!important;
  text-decoration:none!important;
  box-sizing:border-box!important;
}
body.fs-php-rendered-index .fs-right .fs-btn:hover,
body.fs-php-rendered-index .fs-header .fs-btn:hover{
  transform:translateY(-1px)!important;
  box-shadow:0 14px 30px rgba(37,99,235,.28), inset 0 1px 0 rgba(255,255,255,.24)!important;
}
body.fs-php-rendered-index #fs-btn-disconnect{
  background:linear-gradient(135deg,#1d4ed8,#2563eb)!important;
}
body.fs-php-rendered-index #fs-btn-connect{
  min-width:132px!important;
}

body.fs-php-rendered-index #store[data-render="php"].fs-pro-store-grid,
body.fs-php-rendered-index #store[data-render="php"].fs-store-grid{
  display:grid!important;
  grid-template-columns:repeat(3,minmax(0,340px))!important;
  gap:28px!important;
  max-width:1100px!important;
  width:min(100%,1100px)!important;
  justify-content:center!important;
  align-items:start!important;
  overflow:visible!important;
  margin-left:auto!important;
  margin-right:auto!important;
  box-sizing:border-box!important;
}
body.fs-php-rendered-index #store[data-render="php"] > .product-card.fs-php-product-card,
body.fs-php-rendered-index #store[data-render="php"] > .product-card.fs-pro-card-ready,
body.fs-php-rendered-index #store[data-render="php"] > .product-card{
  width:100%!important;
  max-width:340px!important;
  min-width:0!important;
  justify-self:center!important;
  box-sizing:border-box!important;
  overflow:hidden!important;
  isolation:isolate!important;
  border:1px solid rgba(14,165,233,.30)!important;
  box-shadow:0 18px 42px rgba(0,0,0,.26), inset 0 1px 0 rgba(255,255,255,.06)!important;
}
body.fs-php-rendered-index #store[data-render="php"] > .product-card:hover{
  transform:translateY(-3px)!important;
  z-index:3!important;
}
body.fs-php-rendered-index #store[data-render="php"] .product-gallery,
body.fs-php-rendered-index #store[data-render="php"] .product-info,
body.fs-php-rendered-index #store[data-render="php"] .product-actions{
  width:100%!important;
  max-width:100%!important;
  box-sizing:border-box!important;
  margin-left:0!important;
  margin-right:0!important;
}
body.fs-php-rendered-index #store[data-render="php"] .product-gallery{
  padding:10px 10px 8px!important;
}
body.fs-php-rendered-index #store[data-render="php"] .pg-main{
  border-radius:16px!important;
  border-color:rgba(56,189,248,.28)!important;
  background:linear-gradient(180deg,rgba(15,23,42,.94),rgba(2,6,23,.92))!important;
}
body.fs-php-rendered-index #store[data-render="php"] .product-info{
  padding:14px 14px 16px!important;
  gap:12px!important;
}
body.fs-php-rendered-index #store[data-render="php"] .product-actions{
  padding:0!important;
  display:grid!important;
  gap:10px!important;
}
body.fs-php-rendered-index #store[data-render="php"] .product-actions.has-demo{
  grid-template-columns:minmax(96px,.42fr) minmax(0,1fr)!important;
}

body.fs-php-rendered-index #store[data-render="php"] .product-card > .fs-product-name-top,
.product-card > .fs-product-name-top{
  grid-template-columns:auto minmax(0,1fr)!important;
  column-gap:9px!important;
  min-height:40px!important;
  padding:7px 10px!important;
  margin:8px 10px 8px!important;
  border-radius:14px!important;
  border:1px solid rgba(34,211,238,.62)!important;
  background:linear-gradient(180deg,rgba(10,25,48,.98),rgba(2,10,24,.93))!important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.14),0 10px 24px rgba(14,165,233,.16)!important;
  overflow:hidden!important;
}
.product-card > .fs-product-name-top .fs-title-badge{
  padding:6px 12px!important;
  min-width:42px!important;
  max-width:82px!important;
  font-size:8.5px!important;
  letter-spacing:.08em!important;
  flex:0 0 auto!important;
}
.product-card > .fs-product-name-top .fs-title-dot{
  width:8px!important;
  height:8px!important;
  margin-left:2px!important;
  box-shadow:0 0 14px rgba(34,211,238,.95),0 0 28px rgba(14,165,233,.38)!important;
}
.product-card > .fs-product-name-top .fs-title-text{
  min-width:0!important;
  max-width:100%!important;
  width:100%!important;
  display:block!important;
  color:#fff!important;
  font-size:clamp(15px,1.12vw,19px)!important;
  line-height:1.04!important;
  font-weight:1000!important;
  text-align:left!important;
  white-space:nowrap!important;
  overflow:hidden!important;
  text-overflow:ellipsis!important;
  letter-spacing:-.025em!important;
  text-shadow:0 2px 12px rgba(14,165,233,.22)!important;
}

body.fs-php-rendered-index #store[data-render="php"] .product-card .buy-btn,
body.fs-php-rendered-index #store[data-render="php"] .product-card button.buy-btn,
body.fs-php-rendered-index #store[data-render="php"] .product-card a.buy-btn,
body.fs-php-rendered-index .fs-featured-mini-buy{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  width:100%!important;
  min-height:44px!important;
  height:auto!important;
  max-height:none!important;
  padding:12px 14px!important;
  border-radius:16px!important;
  border:1px solid rgba(125,211,252,.22)!important;
  background:linear-gradient(135deg,#075985 0%,#0ea5e9 46%,#2563eb 100%)!important;
  color:#ffffff!important;
  font-size:13px!important;
  font-weight:1000!important;
  line-height:1.18!important;
  letter-spacing:-.01em!important;
  text-align:center!important;
  box-shadow:0 16px 30px rgba(37,99,235,.26), inset 0 1px 0 rgba(255,255,255,.20)!important;
  cursor:pointer!important;
  transition:transform .18s ease, box-shadow .18s ease, filter .18s ease!important;
  white-space:normal!important;
  box-sizing:border-box!important;
}
body.fs-php-rendered-index #store[data-render="php"] .product-card .buy-btn:hover,
body.fs-php-rendered-index .fs-featured-mini-buy:hover{
  transform:translateY(-1px)!important;
  filter:saturate(1.08)!important;
  box-shadow:0 20px 38px rgba(37,99,235,.34), inset 0 1px 0 rgba(255,255,255,.24)!important;
}
body.fs-php-rendered-index #store[data-render="php"] .product-card .buy-btn.download-btn,
body.fs-php-rendered-index #store[data-render="php"] .product-card .buy-btn.fs-download-ready,
body.fs-php-rendered-index #store[data-render="php"] .product-card button.fs-download-ready,
body.fs-php-rendered-index .fs-featured-mini-buy.fs-featured-download-ready{
  background:linear-gradient(135deg,#15803d,#22c55e)!important;
  border-color:rgba(134,239,172,.30)!important;
  box-shadow:0 16px 32px rgba(34,197,94,.24), inset 0 1px 0 rgba(255,255,255,.20)!important;
}
body.fs-php-rendered-index #store[data-render="php"] .product-card .demo-btn,
body.fs-php-rendered-index .fs-featured-mini-demo{
  min-height:44px!important;
  height:auto!important;
  border-radius:16px!important;
  border:1px solid rgba(56,189,248,.30)!important;
  background:linear-gradient(135deg,rgba(8,47,73,.96),rgba(12,74,110,.92))!important;
  box-shadow:0 12px 26px rgba(14,165,233,.14), inset 0 1px 0 rgba(255,255,255,.12)!important;
}

body.fs-php-rendered-index .fs-pro-benefits{
  margin-top:46px!important;
  gap:18px!important;
  overflow:visible!important;
}
body.fs-php-rendered-index .fs-benefit-card,
body.fs-php-rendered-index .fs-pro-card,
body.fs-php-rendered-index #fs-pro-updates-v1723 .fs-pro-card{
  border-color:rgba(56,189,248,.26)!important;
  background:linear-gradient(180deg,rgba(15,23,42,.94),rgba(2,10,24,.90))!important;
  box-shadow:0 18px 42px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.06)!important;
}
@media(max-width:1120px){
  body.fs-php-rendered-index #store[data-render="php"].fs-pro-store-grid,
  body.fs-php-rendered-index #store[data-render="php"].fs-store-grid{
    grid-template-columns:repeat(2,minmax(0,340px))!important;
    max-width:732px!important;
    width:min(100%,732px)!important;
  }
  body.fs-php-rendered-index .fs-header-wrap{
    grid-template-columns:1fr!important;
    gap:10px!important;
    padding:10px 0!important;
  }
  body.fs-php-rendered-index .fs-center,
  body.fs-php-rendered-index .fs-brand,
  body.fs-php-rendered-index .fs-right{
    grid-column:1!important;
    justify-self:center!important;
    justify-content:center!important;
  }
  body.fs-php-rendered-index .fs-right{flex-wrap:wrap!important;}
}
@media(max-width:760px){
  body.fs-php-rendered-index #store[data-render="php"].fs-pro-store-grid,
  body.fs-php-rendered-index #store[data-render="php"].fs-store-grid{
    grid-template-columns:minmax(0,340px)!important;
    max-width:360px!important;
    width:min(100%,360px)!important;
    gap:22px!important;
  }
  body.fs-php-rendered-index #store[data-render="php"] > .product-card{max-width:340px!important;}
  body.fs-php-rendered-index #store[data-render="php"] .product-actions.has-demo{grid-template-columns:1fr!important;}
  body.fs-php-rendered-index .fs-right .fs-btn,
  body.fs-php-rendered-index .fs-header .fs-btn{height:40px!important;min-height:40px!important;padding:0 11px!important;font-size:11.5px!important;}
}


/* ============================================================
   FinalSpace v451 — centered full product image fit
   Fixes: main catalogue images no longer cut on the right, media is
   centered, gallery uses maximum safe card width, and card spacing
   remains locked so products do not overlap.
   ============================================================ */
body.fs-php-rendered-index #store[data-render="php"].fs-pro-store-grid,
body.fs-php-rendered-index #store[data-render="php"].fs-store-grid{
  grid-template-columns:repeat(3,minmax(0,350px))!important;
  max-width:1128px!important;
  width:min(100%,1128px)!important;
  gap:26px!important;
  justify-content:center!important;
  align-items:start!important;
  overflow:visible!important;
  box-sizing:border-box!important;
}
body.fs-php-rendered-index #store[data-render="php"] > .product-card.fs-php-product-card,
body.fs-php-rendered-index #store[data-render="php"] > .product-card.fs-pro-card-ready,
body.fs-php-rendered-index #store[data-render="php"] > .product-card{
  width:100%!important;
  max-width:350px!important;
  min-width:0!important;
  overflow:hidden!important;
  box-sizing:border-box!important;
}
body.fs-php-rendered-index #store[data-render="php"] .product-gallery{
  width:100%!important;
  max-width:100%!important;
  padding:8px 8px 6px!important;
  margin:0!important;
  overflow:visible!important;
  box-sizing:border-box!important;
}
body.fs-php-rendered-index #store[data-render="php"] .product-gallery .pg-main,
body.fs-php-rendered-index #store[data-render="php"] .pg-main{
  width:100%!important;
  max-width:100%!important;
  height:232px!important;
  min-height:232px!important;
  aspect-ratio:auto!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  overflow:hidden!important;
  box-sizing:border-box!important;
  padding:0!important;
  border-radius:16px!important;
  background:linear-gradient(180deg,rgba(2,10,24,.92),rgba(2,6,23,.98))!important;
}
body.fs-php-rendered-index #store[data-render="php"] .product-gallery .pg-main img,
body.fs-php-rendered-index #store[data-render="php"] .product-card .pg-main img,
body.fs-php-rendered-index #store[data-render="php"] .pg-main > img{
  display:block!important;
  width:100%!important;
  height:100%!important;
  max-width:100%!important;
  max-height:100%!important;
  object-fit:contain!important;
  object-position:center center!important;
  margin:0 auto!important;
  transform:none!important;
  border-radius:15px!important;
  background:transparent!important;
}
body.fs-php-rendered-index #store[data-render="php"] .product-gallery .pg-thumbs{
  width:100%!important;
  max-width:100%!important;
  justify-content:flex-start!important;
  padding-left:2px!important;
  padding-right:2px!important;
  box-sizing:border-box!important;
}
body.fs-php-rendered-index #store[data-render="php"] .pg-arrow{
  z-index:5!important;
}
body.fs-php-rendered-index #store[data-render="php"] .product-card > .fs-product-name-top{
  width:calc(100% - 20px)!important;
  max-width:calc(100% - 20px)!important;
  margin:8px 10px 8px!important;
  box-sizing:border-box!important;
}
body.fs-php-rendered-index #store[data-render="php"] .product-card .product-info{
  width:100%!important;
  max-width:100%!important;
  box-sizing:border-box!important;
}
body.fs-php-rendered-index #store[data-render="php"] .product-card .product-actions{
  width:100%!important;
  max-width:100%!important;
  box-sizing:border-box!important;
}
body.fs-php-rendered-index #store[data-render="php"] .product-card .buy-btn,
body.fs-php-rendered-index #store[data-render="php"] .product-card .demo-btn{
  max-width:100%!important;
  box-sizing:border-box!important;
}
@media(max-width:1120px){
  body.fs-php-rendered-index #store[data-render="php"].fs-pro-store-grid,
  body.fs-php-rendered-index #store[data-render="php"].fs-store-grid{
    grid-template-columns:repeat(2,minmax(0,350px))!important;
    max-width:728px!important;
    width:min(100%,728px)!important;
  }
}
@media(max-width:760px){
  body.fs-php-rendered-index #store[data-render="php"].fs-pro-store-grid,
  body.fs-php-rendered-index #store[data-render="php"].fs-store-grid{
    grid-template-columns:minmax(0,350px)!important;
    max-width:370px!important;
    width:min(100%,370px)!important;
    gap:22px!important;
  }
  body.fs-php-rendered-index #store[data-render="php"] > .product-card.fs-php-product-card,
  body.fs-php-rendered-index #store[data-render="php"] > .product-card.fs-pro-card-ready,
  body.fs-php-rendered-index #store[data-render="php"] > .product-card{max-width:350px!important;}
  body.fs-php-rendered-index #store[data-render="php"] .product-gallery .pg-main,
  body.fs-php-rendered-index #store[data-render="php"] .pg-main{height:220px!important;min-height:220px!important;}
}


/* ===== Combined from fs_public_faq_ui_v448.css — Final Space public bundle v456 ===== */
/* FinalSpace v448 — unified customer/HTML guide FAQ-style UI
   Makes public customer pages match the FAQ page: dark radial background, glass cards,
   blue/cyan border system, professional buttons/forms, responsive topbar/footer.
*/
:root{--fs448-bg:#07101f;--fs448-panel:#101b2d;--fs448-panel2:#0b1425;--fs448-line:rgba(148,163,184,.22);--fs448-text:#eaf3ff;--fs448-muted:#a9bddb;--fs448-blue:#1d9bf0;--fs448-cyan:#22d3ee;--fs448-green:#22c55e;--fs448-amber:#f59e0b;--fs448-red:#ef4444;--fs448-shadow:0 24px 80px rgba(0,0,0,.42)}
html{scroll-behavior:smooth}body{margin:0!important;background:radial-gradient(circle at 10% 0%,rgba(56,189,248,.18),transparent 34%),radial-gradient(circle at 92% 10%,rgba(34,197,94,.10),transparent 32%),var(--fs448-bg)!important;color:var(--fs448-text)!important;font-family:Inter,system-ui,-apple-system,Segoe UI,Arial,sans-serif!important;line-height:1.55}a{color:#9fe6ff}.fs-topbar,.fs-public-topbar-v448,.fs-topbar-v278,.fs-topbar-v299{background:rgba(30,41,59,.92)!important;padding:18px 30px!important;display:flex!important;justify-content:space-between!important;align-items:center!important;gap:14px!important;border-bottom:1px solid rgba(255,255,255,.08)!important;position:sticky!important;top:0!important;z-index:99990!important;margin:0!important}.fs-brand,.fs-public-brand{font-size:22px!important;font-weight:1000!important;color:#93c5fd!important;text-decoration:none!important;display:inline-flex!important;align-items:center!important;gap:12px!important;min-height:62px!important;white-space:nowrap!important}.fs-brand img,.fs-public-brand img{display:block!important;width:auto!important;height:auto!important;max-width:min(360px,42vw)!important;max-height:64px!important;border-radius:0!important;object-fit:contain!important;background:transparent!important;filter:drop-shadow(0 0 14px rgba(56,189,248,.32))!important}.fs-brand-text-fallback{font-size:22px!important;font-weight:1000!important;color:#fff!important;line-height:1.1!important}.fs-nav,.fs-public-nav{display:flex!important;gap:10px!important;flex-wrap:wrap!important;align-items:center!important;justify-content:flex-end!important}.fs-nav a,.fs-public-nav a{display:inline-flex!important;align-items:center!important;justify-content:center!important;min-height:40px!important;padding:0 14px!important;border-radius:12px!important;background:#0b2239!important;border:1px solid rgba(255,255,255,.12)!important;color:#fff!important;text-decoration:none!important;font-weight:900!important;white-space:nowrap!important}.fs-nav a.primary,.fs-public-nav a.primary{background:linear-gradient(135deg,#0ea5e9,#2563eb)!important}.fs-nav a:hover,.fs-public-nav a:hover{background:#123456!important;text-decoration:none!important}.fs-legal-wrap,.wrap,.fs-wrap,main.wrap{max-width:1180px!important;margin:0 auto!important;padding:28px!important;color:var(--fs448-text)!important;line-height:1.65!important}.fs-legal-card,.card,.fs-card,.fs-panel,.note,details.note,section.card{border:1px solid var(--fs448-line)!important;background:linear-gradient(135deg,rgba(15,23,42,.95),rgba(7,24,40,.94))!important;border-radius:26px!important;box-shadow:var(--fs448-shadow)!important;padding:24px!important;color:var(--fs448-text)!important}.fs-legal-card>h1:first-child,.card>h1:first-child,.fs-hero h1,.hero h1,h1{color:#fff!important;font-weight:1000!important;letter-spacing:-.045em}.fs-legal-card>h1:first-child,.card>h1:first-child{font-size:clamp(34px,5vw,58px)!important;line-height:1!important;margin:0 0 14px!important}.fs-legal-wrap h2,.wrap h2,.fs-title,h2{color:#fff!important;font-weight:1000!important}.fs-legal-muted,.muted,.fs-muted,.fs-desc{color:var(--fs448-muted)!important}.fs-input,input,textarea,select{border:1px solid #2b3c55!important;background:#07111f!important;color:#fff!important;border-radius:16px!important;padding:13px 14px!important;outline:none!important}input:focus,textarea:focus,select:focus,.fs-input:focus{border-color:#38bdf8!important;box-shadow:0 0 0 3px rgba(56,189,248,.12)!important}.fs-btn,.fs-btn2,.btn,.btn2,button[type=submit],.fs-copy-btn,.fs-max-btn,.fs-pay-filter{display:inline-flex!important;align-items:center!important;justify-content:center!important;gap:8px!important;border-radius:14px!important;min-height:42px!important;padding:11px 16px!important;background:linear-gradient(135deg,#0ea5e9,#2563eb)!important;color:#fff!important;text-decoration:none!important;font-weight:1000!important;border:1px solid rgba(96,165,250,.28)!important;cursor:pointer!important}.fs-btn2,.btn2,.btn.ghost,.fs-pay-filter{background:#0b2239!important;border:1px solid rgba(255,255,255,.12)!important}.row{display:flex!important;gap:12px!important;flex-wrap:wrap!important}.col{flex:1!important;min-width:240px!important}.fs-public-hero-v448{border:1px solid var(--fs448-line);background:linear-gradient(135deg,rgba(15,23,42,.95),rgba(7,24,40,.94));border-radius:30px;box-shadow:var(--fs448-shadow);padding:30px;margin:28px auto 18px;max-width:1180px}.fs-public-kicker-v448{display:inline-flex;align-items:center;gap:8px;color:#7dd3fc;text-transform:uppercase;letter-spacing:.14em;font-size:12px;font-weight:1000}.fs-public-kicker-v448:before{content:"";width:8px;height:8px;border-radius:50%;background:var(--fs448-green);box-shadow:0 0 18px rgba(34,197,94,.8)}.fs-public-footer-v448,.fs-public-footer-v278,footer{width:100%!important;border-top:1px solid rgba(148,163,184,.16)!important;background:linear-gradient(180deg,rgba(7,16,31,.78),rgba(5,11,22,.96))!important;padding:28px!important;text-align:center!important;color:#94a3b8!important;margin-top:34px!important}.fs-pay-card,.ticket,.faq-item{border:1px solid rgba(148,163,184,.18)!important;background:linear-gradient(180deg,rgba(15,23,42,.88),rgba(7,15,28,.88))!important;border-radius:20px!important}.fs-stat,.fs-mini-card{border-radius:18px!important;background:rgba(15,23,42,.75)!important;border:1px solid rgba(148,163,184,.14)!important}.ok{border-color:rgba(34,197,94,.35)!important;color:#bbf7d0!important}.warn,.bad{border-color:rgba(245,158,11,.35)!important;color:#fde68a!important}@media(max-width:900px){.fs-topbar,.fs-public-topbar-v448,.fs-topbar-v278,.fs-topbar-v299{display:block!important;padding:16px!important;position:relative!important}.fs-nav,.fs-public-nav{margin-top:12px!important;justify-content:flex-start!important}.fs-nav a,.fs-public-nav a{width:100%!important}.fs-brand img,.fs-public-brand img{max-width:min(300px,80vw)!important;max-height:58px!important}.fs-legal-wrap,.wrap,.fs-wrap,main.wrap{padding:16px!important}.fs-legal-card,.card,.fs-card,.fs-panel,.note,details.note,section.card{padding:20px!important}}


/* ===== Combined from fs_customer_wallet_charts.css — Final Space public bundle v456 ===== */
/* FinalSpace v402 sharper customer wallet analytics */
.fs-wallet-analytics-v402{display:grid;grid-template-columns:minmax(0,1.25fr) minmax(320px,.85fr);gap:22px;margin:24px 0 30px;clear:both}.fs-v402-card{position:relative;overflow:hidden;border:1px solid rgba(0,229,255,.70);border-radius:24px;padding:19px 21px;background:radial-gradient(circle at 14% 0%,rgba(0,229,255,.26),transparent 48%),linear-gradient(180deg,rgba(8,42,76,.98),rgba(1,9,22,.98));box-shadow:0 24px 68px rgba(0,0,0,.42),0 0 0 1px rgba(0,229,255,.15),inset 0 1px 0 rgba(255,255,255,.10)}.fs-v402-card:after{content:"";position:absolute;left:0;right:0;bottom:0;height:5px;background:linear-gradient(90deg,#00F5FF,#0066FF,#00FF99)}.fs-v402-head{display:flex;justify-content:space-between;align-items:center;gap:12px;margin-bottom:10px}.fs-v402-head strong{text-transform:capitalize;color:#fff;font-size:22px;font-weight:1000;letter-spacing:.01em;text-shadow:0 0 16px rgba(0,245,255,.18)}.fs-v402-head span{text-transform:uppercase;letter-spacing:.17em;color:#84FFFF;font-size:12px;font-weight:1000}.fs-v402-line{width:100%;height:180px;display:block;filter:drop-shadow(0 0 20px rgba(0,245,255,.42))}.fs-v402-kpis{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;margin-top:12px}.fs-v402-kpis span{border:1px solid rgba(0,245,255,.32);border-radius:15px;background:rgba(0,10,24,.58);padding:11px 13px;min-height:64px}.fs-v402-kpis small{display:block;text-transform:capitalize;color:#dbeafe;font-weight:1000;font-size:12px}.fs-v402-kpis b{display:block;color:#fff;font-size:24px;line-height:1.1;margin-top:5px}.fs-v402-kpis em{display:block;color:#9cc7ff;font-style:normal;font-size:11px;margin-top:3px;text-transform:capitalize}.fs-v402-card p{margin:12px 0 0;text-transform:capitalize;color:#b9d7ff;font-size:13px;font-weight:900}.fs-v402-donutbox{display:grid;grid-template-columns:170px minmax(0,1fr);gap:22px;align-items:center;min-height:226px}.fs-v402-donut{width:164px;height:164px;border-radius:50%;display:grid;place-items:center;box-shadow:0 0 0 1px rgba(0,245,255,.65),0 0 52px rgba(0,102,255,.48)}.fs-v402-donut i{width:72px;height:72px;border-radius:50%;display:block;background:#020a18;box-shadow:inset 0 0 0 1px rgba(190,225,255,.18)}.fs-v402-legend{display:grid;gap:13px}.fs-v402-legend span{display:grid;grid-template-columns:14px minmax(0,1fr) auto;gap:10px;align-items:center;color:#f1f8ff;font-size:14px;font-weight:1000}.fs-v402-legend i{width:13px;height:13px;border-radius:50%;box-shadow:0 0 18px currentColor}.fs-v402-legend b{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;text-transform:capitalize}.fs-v402-legend em{font-style:normal;color:#7DFFFF;font-size:15px;font-weight:1000}@media(max-width:980px){.fs-wallet-analytics-v402{grid-template-columns:1fr}.fs-v402-kpis{grid-template-columns:repeat(2,1fr)}.fs-v402-donutbox{grid-template-columns:132px minmax(0,1fr);min-height:160px}.fs-v402-donut{width:124px;height:124px}.fs-v402-donut i{width:56px;height:56px}.fs-v402-line{height:145px}}


/* FinalSpace v402 customer chart readability */
.fs-wallet-analytics-v402{margin:26px 0!important;clear:both!important;position:relative!important;z-index:1!important}
.fs-wallet-analytics-v402 .fs-v401-head strong,.fs-wallet-analytics-v402 .fs-v401-legend b,.fs-wallet-analytics-v402 .fs-v401-kpis small,.fs-wallet-analytics-v402 .fs-v401-kpis em,.fs-wallet-analytics-v402 .fs-v401-card p{text-transform:uppercase!important;letter-spacing:.02em!important}
.fs-wallet-analytics-v402 .fs-v401-card{min-width:0!important;overflow:hidden!important}
.fs-wallet-analytics-v402 .fs-v401-legend b{max-width:220px!important}


/* ===== Combined from fs_v400_customer_fixes.css — Final Space public bundle v456 ===== */
/* FinalSpace v400 sharper graphics + stable buttons */
.fs-owned-sql-v400{background:linear-gradient(135deg,#00d47e,#12b84f)!important;color:#fff!important;box-shadow:0 0 24px rgba(0,212,126,.20)!important}.fs-wallet-analytics-head strong,.fs-page-analytics-head strong,.fs-live-panel span{text-transform:uppercase!important}.fs-live-line{filter:drop-shadow(0 0 10px rgba(0,234,255,.38))!important}.fs-live-line polyline{stroke:#00eaff!important;stroke-width:4!important}.fs-live-donut{box-shadow:0 0 0 1px rgba(0,234,255,.48),0 0 24px rgba(0,102,255,.30)!important}.fs-live-legend span{text-transform:uppercase!important}.fs-page-analytics-card,.fs-live-panel{border-color:rgba(0,220,255,.45)!important}


/* FinalSpace v457 — prevent connected/disconnected buttons showing together */
body.fs-wallet-connected #fs-btn-connect,
html.fs-wallet-connected #fs-btn-connect {
  display: none !important;
}
body.fs-wallet-connected #fs-btn-disconnect,
html.fs-wallet-connected #fs-btn-disconnect,
body.fs-wallet-connected #fs-btn-owned,
body.fs-wallet-connected #fs-btn-referrals,
body.fs-wallet-connected #fs-btn-tickets,
body.fs-wallet-connected #fs-btn-payouts {
  display: inline-flex !important;
}
body.fs-wallet-disconnected #fs-btn-disconnect,
html.fs-wallet-disconnected #fs-btn-disconnect,
body.fs-wallet-disconnected #fs-btn-owned,
body.fs-wallet-disconnected #fs-btn-referrals,
body.fs-wallet-disconnected #fs-btn-tickets,
body.fs-wallet-disconnected #fs-btn-payouts,
body.fs-wallet-disconnected .fs-wallet-only {
  display: none !important;
}
body.fs-wallet-disconnected #fs-btn-connect,
html.fs-wallet-disconnected #fs-btn-connect {
  display: inline-flex !important;
}


/* fs-v458-strict-wallet-state: menu visibility is controlled by wallet state only; connect button must not trigger wallet popup directly. */


/* FinalSpace v459 safe accessibility/search quality helpers */
.fs-skip-link{position:absolute;left:12px;top:-80px;z-index:999999;background:#0ea5e9;color:#fff;padding:10px 14px;border-radius:10px;font-weight:900;text-decoration:none;box-shadow:0 12px 30px rgba(14,165,233,.35)}
.fs-skip-link:focus{top:12px;outline:3px solid #fff;outline-offset:3px}
a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible{outline:3px solid rgba(34,211,238,.95)!important;outline-offset:3px!important}
[aria-hidden="true"]{pointer-events:none}


/* FinalSpace v460 accessibility/SEO quality-check safe fixes */
.fs-visually-hidden{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important;}
.fs-btn,.fs-filter-chip,.fs-ref-btn,.fs-pro-btn,.fs-cookie-btn,.buy-btn,.demo-btn,.download-btn,.fs-sort-apply{min-height:44px!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;}
.fs-sort-form{display:flex!important;gap:10px!important;align-items:center!important;flex-wrap:wrap!important;}
.fs-sort-apply{border:1px solid rgba(56,189,248,.34)!important;background:linear-gradient(135deg,#075985,#1d4ed8)!important;color:#fff!important;border-radius:14px!important;padding:10px 16px!important;font-weight:950!important;cursor:pointer!important;box-shadow:0 10px 28px rgba(2,132,199,.22)!important;}
.fs-btn-blue,.fs-btn-ghost,.fs-filter-chip.active,.fs-ref-btn,.fs-pro-btn.primary,.fs-cookie-btn.accept,.buy-btn{background:linear-gradient(135deg,#075985,#1d4ed8)!important;color:#fff!important;text-shadow:0 1px 2px rgba(0,0,0,.35)!important;}
.fs-btn-ghost{border-color:rgba(147,197,253,.42)!important;}
body,.fs-catalog-header p,.fs-ref-desc,.muted,.product-desc-text,.fs-benefit-card p,.fs-pro-card p{font-size:16px!important;line-height:1.55!important;}
.fs-tag,.fs-stat-note,.fs-purchase-main small,.fs-ref-stat span{font-size:14px!important;color:#dbeafe!important;opacity:1!important;}
.fs-title-badge{font-size:11px!important;min-height:24px!important;padding:6px 12px!important;}
.pg-main img,.fs-featured-mini-media img,.fs-brand img{max-width:100%;height:auto;}
.pg-thumb img{width:48px!important;height:48px!important;object-fit:cover!important;}
.fs-footer-links.fs-footer-social-icons,.fs-footer-social-icons{display:flex!important;gap:10px!important;align-items:center!important;justify-content:center!important;}
a[target="_blank"]::after{content:"";}


/* v461 referral page overflow containment */
.fs-ref-wrap,.fs-ref-card,.fs-ref-panel,.fs-ref-grid,.fs-ref-inputrow,.fs-ref-stats,.fs-ref-wallet-stats,.fs-ref-wallet-stat-grid,.fs-ref-buyer-stats{box-sizing:border-box;max-width:100%;min-width:0;overflow:hidden}
.fs-ref-card{width:100%;overflow:hidden}
.fs-ref-grid{grid-template-columns:minmax(0,1fr) minmax(280px,320px)!important;align-items:stretch!important}
.fs-ref-grid>*{min-width:0;max-width:100%}
.fs-ref-inputrow{display:grid!important;grid-template-columns:minmax(0,1fr) auto auto!important;align-items:center!important;width:100%;max-width:100%;gap:10px!important}
.fs-ref-link{display:block!important;width:100%!important;max-width:100%!important;min-width:0!important;overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important;box-sizing:border-box!important}
.fs-ref-link:hover,.fs-ref-link:focus{white-space:normal!important;overflow-wrap:anywhere!important;word-break:break-word!important;text-overflow:clip!important}
.fs-ref-stats{grid-template-columns:repeat(3,minmax(0,1fr))!important;min-width:0!important;max-width:100%!important}
.fs-ref-stat{min-width:0!important;max-width:100%!important;overflow:hidden!important;padding:14px 10px!important}
.fs-ref-stat strong{font-size:24px!important;line-height:1.1!important;overflow-wrap:anywhere!important}
.fs-ref-stat span{display:block!important;overflow-wrap:anywhere!important;line-height:1.25!important}
.fs-ref-btn{max-width:100%;white-space:normal;text-align:center;line-height:1.2}
.fs-ref-wallet-stat,.fs-ref-visitor-stat,.fs-ref-buyer-row,.fs-ref-activity-card{min-width:0;max-width:100%;overflow:hidden}
.fs-ref-wallet-stat strong,.fs-ref-visitor-stat strong,.fs-ref-activity-meta,.fs-ref-buyer-row{overflow-wrap:anywhere;word-break:break-word}
@media(max-width:1180px){.fs-ref-grid{grid-template-columns:1fr!important}.fs-ref-stats{grid-template-columns:repeat(3,minmax(0,1fr))!important}}
@media(max-width:720px){.fs-ref-inputrow{grid-template-columns:1fr!important}.fs-ref-stats{grid-template-columns:1fr!important}.fs-ref-link{white-space:normal!important;overflow-wrap:anywhere!important}.fs-ref-panel{padding:16px!important}}


/* FinalSpace v462: customer pages use centered professional width, not full-page stretch */
body:not(.fs-php-rendered-index) main,
body:not(.fs-php-rendered-index) .wrap,
body:not(.fs-php-rendered-index) .fs-ref-wrap,
body:not(.fs-php-rendered-index) .fs-payout-wrap,
body:not(.fs-php-rendered-index) .fs-ticket-wrap{
  width:min(1120px,calc(100% - 40px))!important;
  max-width:1120px!important;
  margin-left:auto!important;
  margin-right:auto!important;
  box-sizing:border-box!important;
}
body:not(.fs-php-rendered-index) .fs-wallet-analytics-v411,
body:not(.fs-php-rendered-index) .fs-wallet-analytics-v402,
body:not(.fs-php-rendered-index) .fs-wallet-analytics-v401,
body:not(.fs-php-rendered-index) .fs-wallet-analytics-v400{
  width:100%!important;
  max-width:1120px!important;
  margin-left:auto!important;
  margin-right:auto!important;
  box-sizing:border-box!important;
}
body:not(.fs-php-rendered-index) .fs-v411-card,
body:not(.fs-php-rendered-index) .fs-v402-card,
body:not(.fs-php-rendered-index) .fs-v401-card,
body:not(.fs-php-rendered-index) .fs-panel,
body:not(.fs-php-rendered-index) .fs-ref-card,
body:not(.fs-php-rendered-index) .fs-ref-panel,
body:not(.fs-php-rendered-index) .hero{
  max-width:100%!important;
  box-sizing:border-box!important;
}
body:not(.fs-php-rendered-index) .fs-ref-grid,
body:not(.fs-php-rendered-index) .fs-grid,
body:not(.fs-php-rendered-index) .fs-ref-wallet-stat-grid,
body:not(.fs-php-rendered-index) .fs-ref-inputrow{
  min-width:0!important;
  max-width:100%!important;
  box-sizing:border-box!important;
}
body:not(.fs-php-rendered-index) .fs-ref-link,
body:not(.fs-php-rendered-index) .walletline,
body:not(.fs-php-rendered-index) input[readonly]{
  min-width:0!important;
  max-width:100%!important;
  overflow:hidden!important;
  text-overflow:ellipsis!important;
}
@media(max-width:1180px){
  body:not(.fs-php-rendered-index) main,
  body:not(.fs-php-rendered-index) .wrap,
  body:not(.fs-php-rendered-index) .fs-ref-wrap,
  body:not(.fs-php-rendered-index) .fs-payout-wrap,
  body:not(.fs-php-rendered-index) .fs-ticket-wrap{width:min(100% - 24px,1120px)!important;padding-left:0!important;padding-right:0!important;}
  body:not(.fs-php-rendered-index) .fs-wallet-analytics-v411{grid-template-columns:1fr!important;}
}
@media(max-width:760px){
  body:not(.fs-php-rendered-index) main,
  body:not(.fs-php-rendered-index) .wrap,
  body:not(.fs-php-rendered-index) .fs-ref-wrap,
  body:not(.fs-php-rendered-index) .fs-payout-wrap,
  body:not(.fs-php-rendered-index) .fs-ticket-wrap{width:calc(100% - 18px)!important;}
}


/* FinalSpace v464: mobile/PWA and gallery swipe usability */
.product-gallery{touch-action:pan-y;}
.product-gallery:focus-visible{outline:3px solid rgba(56,189,248,.9);outline-offset:4px;border-radius:20px;}
.product-gallery .pg-main{touch-action:pan-y;user-select:none;}
.product-gallery .pg-main img{-webkit-user-drag:none;user-select:none;}
.pg-arrow{appearance:none;-webkit-appearance:none;padding:0!important;line-height:1!important;min-width:44px!important;min-height:44px!important;width:44px!important;height:44px!important;font-size:26px!important;font-weight:1000!important;background:rgba(2,6,23,.86)!important;border:1px solid rgba(125,211,252,.75)!important;color:#fff!important;box-shadow:0 12px 26px rgba(0,0,0,.35),0 0 18px rgba(14,165,233,.26)!important;}
.pg-arrow.left{left:8px!important;}
.pg-arrow.right{right:8px!important;}
.pg-arrow:not(.disabled):hover,.pg-arrow:not(.disabled):focus-visible{background:linear-gradient(135deg,#0369a1,#1d4ed8)!important;outline:3px solid rgba(125,211,252,.65)!important;outline-offset:2px;}
.pg-arrow.disabled{pointer-events:none!important;opacity:.28!important;}
@media(max-width:760px){.pg-arrow{width:46px!important;height:46px!important;min-width:46px!important;min-height:46px!important}.product-gallery .pg-main::after{content:'Swipe images';position:absolute;right:10px;bottom:10px;padding:5px 9px;border-radius:999px;background:rgba(2,6,23,.72);border:1px solid rgba(125,211,252,.35);color:#dff7ff;font-size:11px;font-weight:900;letter-spacing:.02em;pointer-events:none;opacity:.78}.product-gallery[data-count="1"] .pg-main::after{content:none}}



/* FinalSpace v464 - enlarged image modal arrows */
.fs-v464-zoom-arrow{
  position:fixed!important;
  top:50%!important;
  transform:translateY(-50%)!important;
  z-index:2147483000!important;
  width:52px!important;
  height:52px!important;
  min-width:52px!important;
  min-height:52px!important;
  border-radius:999px!important;
  border:1px solid rgba(226,232,240,.65)!important;
  background:rgba(15,23,42,.82)!important;
  color:#fff!important;
  font-size:36px!important;
  line-height:1!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  cursor:pointer!important;
  box-shadow:0 18px 45px rgba(0,0,0,.35)!important;
}
.fs-v464-zoom-arrow:hover,.fs-v464-zoom-arrow:focus{
  background:rgba(14,165,233,.95)!important;
  outline:3px solid rgba(125,211,252,.55)!important;
  outline-offset:2px!important;
}
.fs-zoom-prev.fs-v464-zoom-arrow{left:clamp(12px,4vw,64px)!important}
.fs-zoom-next.fs-v464-zoom-arrow{right:clamp(12px,4vw,64px)!important}
@media(max-width:700px){
  .fs-v464-zoom-arrow{width:46px!important;height:46px!important;min-width:46px!important;min-height:46px!important;font-size:30px!important}
}



/* FinalSpace v526 global public UI polish */
.product-card,.feature-card,.fs-ref-panel,.fs-card,.fs-wallet-card,.fs-modal-card{box-shadow:0 16px 40px rgba(0,0,0,.22),inset 0 1px 0 rgba(255,255,255,.03);transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease}
.product-card:hover,.feature-card:hover,.fs-ref-panel:hover,.fs-card:hover{transform:translateY(-2px);box-shadow:0 22px 54px rgba(0,0,0,.30),0 0 0 1px rgba(56,189,248,.06),inset 0 1px 0 rgba(255,255,255,.04)}
.buy-btn,.download-btn,.fs-btn,.btn,.product-actions button,.product-actions a{box-shadow:0 12px 26px rgba(37,99,235,.22);transition:transform .18s ease,box-shadow .18s ease,filter .18s ease}
.buy-btn:hover,.download-btn:hover,.fs-btn:hover,.btn:hover,.product-actions button:hover,.product-actions a:hover{transform:translateY(-1px);box-shadow:0 16px 34px rgba(37,99,235,.30);filter:saturate(1.05)}
.pg-thumb,.product-thumb,.thumb,.gallery-thumb{transition:transform .16s ease,border-color .16s ease,box-shadow .16s ease}
.pg-thumb:hover,.product-thumb:hover,.thumb:hover,.gallery-thumb:hover{transform:translateY(-1px);box-shadow:0 12px 24px rgba(0,0,0,.20)}


/* FinalSpace v539 global public UI upgrade */
:root{
  --fs539-glow:0 18px 44px rgba(10,20,40,.34),0 0 0 1px rgba(96,165,250,.08),inset 0 1px 0 rgba(255,255,255,.04);
}
body:before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size:52px 52px;
  mask-image:radial-gradient(circle at center, #000 0%, transparent 74%);
  opacity:.22;
  z-index:0;
}
.fs-legal-card,.card,.fs-card,.fs-panel,.note,details.note,section.card,.hero,.product-card,.feature-card,.fs-ref-panel,.fs-wallet-card,.fs-modal-card{
  position:relative!important;
  overflow:hidden!important;
  box-shadow:var(--fs539-glow)!important;
}
.fs-legal-card:before,.card:before,.fs-card:before,.fs-panel:before,.note:before,details.note:before,section.card:before,.hero:before,.product-card:before,.feature-card:before,.fs-ref-panel:before,.fs-wallet-card:before,.fs-modal-card:before{
  content:"";
  position:absolute;
  left:0;right:0;top:0;height:3px;
  background:linear-gradient(90deg,rgba(56,189,248,.95),rgba(37,99,235,.90),rgba(34,197,94,.65),transparent 90%);
  opacity:.96;
}
.fs-legal-card:hover,.card:hover,.fs-card:hover,.fs-panel:hover,.product-card:hover,.feature-card:hover,.fs-ref-panel:hover{
  transform:translateY(-2px)!important;
}
.fs-nav a,.fs-public-nav a,.fs-btn,.fs-btn2,.btn,.btn2,button[type=submit],.fs-copy-btn,.fs-max-btn,.fs-pay-filter{
  box-shadow:0 10px 26px rgba(37,99,235,.22)!important;
}
.fs-nav a:before,.fs-public-nav a:before,.fs-btn:before,.fs-btn2:before,.btn:before,.btn2:before,button[type=submit]:before,.fs-copy-btn:before,.fs-max-btn:before,.fs-pay-filter:before{
  content:"✦";
  font-size:12px;
  opacity:.9;
}
.fs-stat,.fs-mini-card,.fs-ref-wallet-stat,.fs-ref-visitor-stat,.fs-ref-buyer-stat,.fs-v402-kpis span,.fs-v411-kpis span{
  position:relative;
  box-shadow:0 14px 34px rgba(2,6,23,.24), inset 0 1px 0 rgba(255,255,255,.03)!important;
}
.fs-stat:after,.fs-mini-card:after,.fs-ref-wallet-stat:after,.fs-ref-visitor-stat:after,.fs-ref-buyer-stat:after,.fs-v402-kpis span:after,.fs-v411-kpis span:after{
  content:"";
  position:absolute;
  right:-22px;top:-22px;width:78px;height:78px;border-radius:50%;
  background:radial-gradient(circle,rgba(56,189,248,.14),transparent 70%);
}
.fs-title,h2,.fs-ref-section-heading h2,.fs-wallet-analytics-head strong,.fs-page-analytics-head strong{
  letter-spacing:-.03em!important;
}
.fs-ref-section-heading h2:after,.fs-wallet-analytics-head strong:after,.fs-page-analytics-head strong:after{
  content:"";
  display:block;
  width:88px;height:3px;margin-top:10px;border-radius:999px;
  background:linear-gradient(90deg,#38bdf8,#2563eb,transparent);
}
.fs-ref-visitor-meta span b,.fs-ref-buyer-row b,.fs-ref-activity-meta b{color:#fff!important}
.fs-ref-visitor-meta span{
  backdrop-filter:blur(8px);
}
.fs-ref-visitor-stat:nth-child(1):before{content:"👁"!important}
.fs-ref-visitor-stat:nth-child(2):before{content:"👥"!important}
.fs-ref-visitor-stat:nth-child(3):before{content:"🕒"!important}
.fs-ref-visitor-stat:nth-child(4):before{content:"🌍"!important}
.fs-ref-visitor-source:before{content:"🔹";margin-right:6px;opacity:.9}
.fs-ref-visitor-meta span:nth-child(1):before{content:"📱"}
.fs-ref-visitor-meta span:nth-child(2):before{content:"🔗"}
.fs-ref-visitor-meta span:nth-child(3):before{content:"🌍"}
.fs-ref-visitor-meta span:nth-child(4):before{content:"👛"}
.fs-ref-visitor-meta span:before{flex:0 0 auto}
.fs-v402-card,.fs-v411-card,.fs-live-panel,.fs-page-analytics-card{
  box-shadow:var(--fs539-glow)!important;
}
.ticket,.faq-item,.fs-pay-card{overflow:hidden}
@media(max-width:900px){
  .fs-nav a:before,.fs-public-nav a:before,.fs-btn:before,.fs-btn2:before,.btn:before,.btn2:before,button[type=submit]:before,.fs-copy-btn:before,.fs-max-btn:before,.fs-pay-filter:before{display:none}
}


/* ===== MERGED PUBLIC UI v543 ===== */
/* Final Space v540 — visible customer UI command-center layer */
:root{
  --fs540-cyan:#22d3ee;
  --fs540-blue:#2563eb;
  --fs540-green:#22c55e;
  --fs540-purple:#8b5cf6;
  --fs540-orange:#f59e0b;
  --fs540-panel:#08162a;
  --fs540-panel2:#0d2038;
  --fs540-line:rgba(96,165,250,.22);
  --fs540-text:#f8fbff;
  --fs540-muted:#a8bdd8;
  --fs540-shadow:0 28px 78px rgba(0,0,0,.42),inset 0 1px 0 rgba(255,255,255,.05);
}
body.fs540-public-ui{background:
  radial-gradient(circle at 8% 3%,rgba(34,211,238,.15),transparent 27rem),
  radial-gradient(circle at 92% 8%,rgba(37,99,235,.14),transparent 28rem),
  #030b17!important;
}
.fs540-public-command{
  position:relative;
  z-index:5;
  width:min(1420px,calc(100% - 36px));
  margin:22px auto 14px;
  padding:22px;
  display:grid;
  grid-template-columns:76px minmax(0,1fr) auto;
  align-items:center;
  gap:18px;
  border:1px solid rgba(56,189,248,.34);
  border-radius:26px;
  background:
    radial-gradient(circle at 88% 18%,rgba(37,99,235,.24),transparent 23rem),
    radial-gradient(circle at 8% 0%,rgba(34,211,238,.16),transparent 18rem),
    linear-gradient(145deg,rgba(10,30,54,.98),rgba(5,14,30,.98));
  box-shadow:var(--fs540-shadow),0 0 54px rgba(14,165,233,.10);
  overflow:hidden;
}
.fs540-public-command:before{
  content:"";position:absolute;left:0;right:0;top:0;height:4px;
  background:linear-gradient(90deg,var(--fs540-cyan),var(--fs540-blue),var(--fs540-purple),var(--fs540-green));
}
.fs540-public-command:after{
  content:"";position:absolute;right:-70px;bottom:-100px;width:280px;height:280px;border-radius:50%;
  border:1px solid rgba(56,189,248,.12);box-shadow:0 0 0 34px rgba(37,99,235,.025),0 0 0 72px rgba(34,211,238,.018);
}
.fs540-command-icon{
  position:relative;z-index:1;width:70px;height:70px;border-radius:22px;display:grid;place-items:center;
  color:#fff;font-size:30px;font-weight:1000;
  background:linear-gradient(145deg,rgba(14,165,233,.34),rgba(37,99,235,.30));
  border:1px solid rgba(125,211,252,.38);
  box-shadow:0 18px 42px rgba(14,165,233,.24),inset 0 1px 0 rgba(255,255,255,.16);
}
.fs540-command-copy{position:relative;z-index:1;min-width:0}
.fs540-command-kicker{display:flex;align-items:center;gap:8px;color:#7dd3fc;text-transform:uppercase;letter-spacing:.15em;font-size:11px;font-weight:1000}
.fs540-command-kicker:before{content:"";width:8px;height:8px;border-radius:50%;background:#22c55e;box-shadow:0 0 16px rgba(34,197,94,.85)}
.fs540-command-copy h1{margin:6px 0 5px!important;color:#fff!important;font-size:clamp(25px,2.6vw,39px)!important;line-height:1.05!important;letter-spacing:-.045em!important}
.fs540-command-copy p{margin:0;max-width:850px;color:#b8cbe2;font-size:14px;line-height:1.55}
.fs540-command-status{position:relative;z-index:1;display:grid;grid-template-columns:repeat(2,minmax(150px,1fr));gap:9px;min-width:330px}
.fs540-status-chip{display:flex;align-items:center;gap:9px;min-height:48px;padding:10px 12px;border:1px solid rgba(96,165,250,.18);border-radius:14px;background:rgba(3,14,29,.66);color:#dff4ff;font-size:12px;font-weight:900}
.fs540-status-chip i{width:28px;height:28px;display:grid;place-items:center;border-radius:9px;background:rgba(34,211,238,.14);border:1px solid rgba(34,211,238,.25);color:#8be9ff;font-style:normal}
.fs540-status-chip:nth-child(2) i{background:rgba(139,92,246,.15);border-color:rgba(139,92,246,.28);color:#c4b5fd}
.fs540-status-chip:nth-child(3) i{background:rgba(34,197,94,.14);border-color:rgba(34,197,94,.25);color:#86efac}
.fs540-status-chip:nth-child(4) i{background:rgba(245,158,11,.14);border-color:rgba(245,158,11,.25);color:#fcd34d}
.fs540-public-modules{
  position:relative;z-index:4;width:min(1420px,calc(100% - 36px));margin:0 auto 24px;
  display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;
}
.fs540-module-card{
  position:relative;overflow:hidden;display:grid;grid-template-columns:48px minmax(0,1fr);gap:12px;align-items:center;
  min-height:94px;padding:14px;border:1px solid rgba(96,165,250,.16);border-radius:18px;
  background:linear-gradient(160deg,rgba(12,30,53,.96),rgba(5,15,31,.96));
  box-shadow:0 16px 38px rgba(0,0,0,.26),inset 0 1px 0 rgba(255,255,255,.03);
  transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease;
}
.fs540-module-card:hover{transform:translateY(-3px);border-color:rgba(56,189,248,.35);box-shadow:0 24px 48px rgba(0,0,0,.34),0 0 30px rgba(14,165,233,.08)}
.fs540-module-card:after{content:"";position:absolute;left:0;right:0;bottom:0;height:3px;background:linear-gradient(90deg,var(--fs540-cyan),var(--fs540-blue),transparent 75%)}
.fs540-module-icon{width:46px;height:46px;border-radius:15px;display:grid;place-items:center;font-size:20px;color:#fff;background:linear-gradient(145deg,rgba(14,165,233,.26),rgba(37,99,235,.18));border:1px solid rgba(125,211,252,.24)}
.fs540-module-card:nth-child(2) .fs540-module-icon{background:linear-gradient(145deg,rgba(139,92,246,.25),rgba(37,99,235,.18))}
.fs540-module-card:nth-child(3) .fs540-module-icon{background:linear-gradient(145deg,rgba(34,197,94,.22),rgba(14,165,233,.16))}
.fs540-module-card:nth-child(4) .fs540-module-icon{background:linear-gradient(145deg,rgba(245,158,11,.22),rgba(239,68,68,.14))}
.fs540-module-copy b{display:block;color:#fff;font-size:14px;margin-bottom:4px}
.fs540-module-copy span{display:block;color:#91a9c6;font-size:11.5px;line-height:1.45}
.fs540-decorated-heading{display:flex!important;align-items:center!important;gap:10px!important}
.fs540-heading-icon{flex:0 0 34px;width:34px;height:34px;border-radius:11px;display:grid;place-items:center;background:linear-gradient(145deg,rgba(14,165,233,.22),rgba(37,99,235,.16));border:1px solid rgba(96,165,250,.22);font-size:15px;color:#a5f3fc;box-shadow:0 10px 24px rgba(14,165,233,.12)}
.fs540-metric-card{position:relative!important;padding-right:54px!important}
.fs540-metric-badge{position:absolute;right:14px;top:14px;width:34px;height:34px;border-radius:11px;display:grid;place-items:center;background:rgba(14,165,233,.14);border:1px solid rgba(56,189,248,.22);font-size:15px;color:#8be9ff;box-shadow:0 10px 24px rgba(14,165,233,.10)}
.fs540-country-badge{display:inline-flex;align-items:center;gap:6px;padding:4px 8px;border-radius:999px;background:rgba(34,197,94,.11);border:1px solid rgba(34,197,94,.22);color:#bbf7d0;font-weight:900;font-size:11px}
.fs540-country-badge.is-unknown{background:rgba(148,163,184,.08);border-color:rgba(148,163,184,.16);color:#cbd5e1}
.fs540-public-ui .fs-featured-shell,.fs540-public-ui .fs-catalog-header,.fs540-public-ui .fs-ref-panel,.fs540-public-ui .fs-pay-card,.fs540-public-ui .ticket,.fs540-public-ui .faq-item,.fs540-public-ui .fs-card,.fs540-public-ui .card{
  box-shadow:0 22px 58px rgba(0,0,0,.32),inset 0 1px 0 rgba(255,255,255,.04)!important;
}
.fs540-public-ui .fs-featured-shell,.fs540-public-ui .fs-catalog-header,.fs540-public-ui .fs-ref-panel,.fs540-public-ui .fs-pay-card,.fs540-public-ui .ticket,.fs540-public-ui .faq-item{
  border-color:rgba(96,165,250,.22)!important;
}
.fs540-public-ui .product-card{border-color:rgba(56,189,248,.24)!important;background:linear-gradient(180deg,rgba(10,25,45,.98),rgba(4,13,28,.98))!important}
.fs540-public-ui .product-card:hover{border-color:rgba(34,211,238,.48)!important;box-shadow:0 26px 60px rgba(0,0,0,.38),0 0 34px rgba(14,165,233,.10)!important}
.fs540-public-ui table thead th{background:rgba(14,165,233,.08)!important;color:#bfe8ff!important}
.fs540-public-ui table tbody tr:hover{background:rgba(37,99,235,.05)!important}
@media(max-width:1100px){.fs540-public-command{grid-template-columns:68px minmax(0,1fr)}.fs540-command-status{grid-column:1/-1;grid-template-columns:repeat(4,minmax(0,1fr));min-width:0}.fs540-public-modules{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:720px){.fs540-public-command{width:calc(100% - 18px);grid-template-columns:52px minmax(0,1fr);padding:16px;border-radius:20px}.fs540-command-icon{width:50px;height:50px;border-radius:16px;font-size:22px}.fs540-command-copy h1{font-size:25px!important}.fs540-command-status{grid-template-columns:1fr 1fr}.fs540-status-chip{min-width:0}.fs540-public-modules{width:calc(100% - 18px);grid-template-columns:1fr}.fs540-module-card{min-height:84px}.fs540-decorated-heading{align-items:flex-start!important}}

/* v543 merged icon safety */
.fs540-metric-badge{font-style:normal!important;display:grid!important;position:absolute!important;right:14px!important;top:14px!important;width:34px!important;height:34px!important;min-height:0!important;padding:0!important;margin:0!important;border-radius:11px!important;z-index:5!important;line-height:1!important}
.fs-v402-kpis > span,.fs-v411-kpis > span{position:relative!important;overflow:hidden!important}
.fs-v402-kpis > span > .fs540-metric-badge,.fs-v411-kpis > span > .fs540-metric-badge{border:1px solid rgba(56,189,248,.28)!important;background:rgba(8,47,73,.88)!important;box-shadow:0 8px 20px rgba(14,165,233,.22)!important}
.fs-nav a:before,.fs-public-nav a:before,.fs-btn:before,.fs-btn2:before,.btn:before,.btn2:before,button[type=submit]:before,.fs-copy-btn:before,.fs-max-btn:before,.fs-pay-filter:before{content:none!important;display:none!important}

/* ===== END MERGED PUBLIC UI v543 ===== */
