
  .st-wrap, .st-wrap *{ box-sizing:border-box; }
  .st-title{ margin:0 0 14px; font-size:20px; font-weight:1000; color:#111; }

  .st-card{
    background:#fff;
    border:1px solid rgba(0,0,0,.07);
    border-radius:18px;
    box-shadow:0 18px 45px rgba(0,0,0,.06);
    overflow:hidden;
  }

  .st-card-pad{ padding:16px; }

  .st-table thead th{ font-weight:1000; color:#111; font-size:13px; white-space:nowrap; }
  .st-table td{ font-weight:800; font-size:13px; color:#222; vertical-align:middle; }
  .td-muted{ color:#777; font-weight:800; }
  .st-img{ width:48px;height:48px;object-fit:cover;border-radius:10px; }

  .st-row{ display:grid; grid-template-columns: 1fr 420px; gap: 16px; align-items:start; }
  @media (max-width: 992px){ .st-row{ grid-template-columns: 1fr; } }

  .st-kv{ display:flex; justify-content:space-between; gap:10px; font-size:13px; font-weight:900; }
  .st-kv span{ color:#555; font-weight:900; }
  .st-kv strong{ color:#111; font-weight:1000; }

  .st-btn{
    height:40px;
    padding:0 14px;
    border-radius:14px;
    border:1px solid rgba(0,0,0,.10);
    background:#fff;
    color:#111;
    font-weight:1000;
    font-size:13px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    cursor:pointer;
    text-decoration:none;
    white-space:nowrap;
  }
  .st-btn-primary{
    border:0;
    color:#fff;
    background: linear-gradient(90deg, #ff4d4f 0%, #ff8a00 100%);
    box-shadow: 0 12px 26px rgba(255, 77, 79, .22);
  }
  .st-btn-secondary{ background:#f7f7f7; }

  .st-input{
    height:40px;
    border-radius:14px;
    border:1px solid rgba(0,0,0,.12);
    padding:0 12px;
    font-weight:900;
    width:100%;
  }

  .st-alert{
    margin-top:10px;
    padding:10px 12px;
    border-radius:14px;
    font-size:13px;
    font-weight:900;
    border:1px solid rgba(0,0,0,.08);
    background:#fff;
    display:none;
  }
  .st-alert.ok{ border-color: rgba(46,204,113,.35); background: rgba(46,204,113,.10); color:#1e7e34; }
  .st-alert.err{ border-color: rgba(255,77,79,.35); background: rgba(255,77,79,.10); color:#b10012; }

  .st-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:24px;
    padding:0 10px;
    border-radius:999px;
    font-size:12px;
    font-weight:1000;
    border:1px solid rgba(0,0,0,.08);
    background:#fff;
  }
  .st-badge-ok{ border-color: rgba(46,204,113,.35); color:#1e7e34; background: rgba(46,204,113,.12); }
  .st-badge-warn{ border-color: rgba(241,196,15,.35); color:#8a6d00; background: rgba(241,196,15,.12); }

  .st-addons-grid{
    display:grid;
    grid-template-columns: repeat(auto-fill,minmax(180px,1fr));
    gap:12px;
  }
  .st-addon{
    border:1px solid rgba(0,0,0,.08);
    border-radius:16px;
    padding:10px;
    display:flex;
    flex-direction:column;
    gap:8px;
    background:#fff;
  }
  .st-addon img{ width:100%; height:110px; object-fit:cover; border-radius:12px; }
  .st-addon .name{ font-weight:1000; font-size:13px; color:#111; }
  .st-addon .price{ font-weight:1000; }
  .st-addon .old{ text-decoration:line-through; color:#888; margin-left:6px; font-weight:900; }

  @media (max-width: 576px){
    .shop-page-area{ padding-top: 40px !important; padding-bottom: 40px !important; }
  }
