/*
Theme Name: ghostfit
Version: 0.5
*/
:root{
 --ink:#111;
 --paper:#f7f7f4;
 --muted:#8a8a86;
}
*{box-sizing:border-box}
body{background:var(--paper);font-family:-apple-system,BlinkMacSystemFont,Inter,system-ui,sans-serif;color:var(--ink)}
#ghostfit-app{max-width:960px;margin:0 auto;padding:48px 24px}
.header{text-align:center;margin-bottom:24px}
.header h1{font-weight:600;letter-spacing:.02em;margin:0}
.header p{color:var(--muted);margin:6px 0 0}
.ghost-switch{display:flex;gap:10px;justify-content:center;margin:18px 0 28px}
.ghost-switch button{background:none;border:1px solid #ccc;padding:8px 14px;cursor:pointer}
.ghost-switch button.active{border-color:#000}
.ghost-stage{position:relative;width:600px;margin:0 auto}
.layer{position:absolute;left:0;width:100%}
.dot{position:absolute;width:22px;height:22px;border-radius:50%;background:#000;color:#fff;
display:flex;align-items:center;justify-content:center;cursor:pointer;animation:pulse 1.6s infinite}
@keyframes pulse{0%{transform:scale(1)}50%{transform:scale(1.15)}100%{transform:scale(1)}}
.sold{position:absolute;inset:0;background:rgba(255,255,255,.88);
display:none;align-items:center;justify-content:center;font-weight:600;color:var(--muted)}
.cart{margin:40px auto 0;max-width:520px;border-top:1px solid #ddd;padding-top:20px}
.cart ul{list-style:none;padding:0;margin:0}
.cart li{display:flex;justify-content:space-between;margin:6px 0}
.buy{display:inline-block;margin-top:18px;padding:12px 22px;background:#000;color:#fff;text-decoration:none}
