
/* ==========================================
   SushiTime — Static Page
   ========================================== */
.st-static, .st-static *{ box-sizing:border-box; }

.st-head{
  display:flex;
  flex-wrap:wrap;
  align-items:flex-end;
  justify-content:space-between;
  gap:10px;
  margin-bottom:14px;
}

.st-title{
  margin:0;
  font-size:22px;
  font-weight:1000;
  color:#111;
  line-height:1.15;
}

/* main card */
.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);
  padding:18px;
}

/* content from HTML editor */
.st-content{
  color:#333;
  font-weight:700;
  line-height:1.7;
  font-size:14px;
}

.st-content h1, .st-content h2, .st-content h3, .st-content h4{
  color:#111;
  font-weight:1000;
  line-height:1.25;
  margin: 16px 0 10px;
}
.st-content h2{ font-size:18px; }
.st-content h3{ font-size:16px; }

.st-content p{ margin: 0 0 12px; }
.st-content p:last-child{ margin-bottom: 0; }

.st-content ul, .st-content ol{
  margin: 0 0 12px 18px;
  padding: 0;
}
.st-content li{ margin: 4px 0; }

.st-content a{
  color:#ff4d4f;
  font-weight:900;
  text-decoration:none;
}
.st-content a:hover{ text-decoration:underline; }

.st-content hr{
  border:0;
  border-top:1px dashed rgba(0,0,0,.12);
  margin:14px 0;
}

.st-content blockquote{
  margin: 0 0 12px;
  padding: 10px 12px;
  border-left: 3px solid rgba(255,77,79,.45);
  background: rgba(255,77,79,.06);
  border-radius: 12px;
  color:#333;
}

.st-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}

.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-primary:hover{ filter:brightness(1.03); transform: translateY(-1px); }
.st-btn-primary:active{ transform: translateY(0); }

@media (max-width: 576px){
  .shop-page-area{ padding-top: 45px !important; padding-bottom: 45px !important; }
  .st-card{ padding:14px; }
  .st-title{ font-size:20px; }
  .st-actions .st-btn{ width:100%; }
}
