/* ===== JYCC THANKYOU (Clean + Mobile Friendly) ===== */

.jycc-wrap{
  max-width: 980px;
  margin: 0 auto;
  padding: 18px 14px;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

.jycc-card{
  background:#fff;
  border:1px solid #eef2f7;
  border-radius:18px;
  box-shadow: 0 10px 30px rgba(15,23,42,.05);
  overflow:hidden;
}

.jycc-head{
  padding:18px 18px 14px;
  border-bottom:1px solid #f1f5f9;
}

.jycc-title{
  margin:0;
  font-size:20px;
  line-height:1.2;
  font-weight:900;
  color:#0f172a;
  letter-spacing:-0.2px;
}

.jycc-subtitle{
  margin:8px 0 0;
  font-size:14px;
  color:#475569;
}

.jycc-subtitle-2{
  font-size:14px;
  font-weight:800;
  color:#0f172a;
  margin:0 0 10px;
}

.jycc-grid{
  display:grid;
  grid-template-columns: 1.2fr .9fr;
  gap:14px;
  padding:14px;
}

.jycc-section{
  background:#fff;
  border:1px solid #eef2f7;
  border-radius:16px;
  padding:14px;
}

.jycc-section-title{
  margin:0 0 10px;
  font-size:14px;
  font-weight:900;
  color:#0f172a;
}

.jycc-summary-row{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:14px;
  padding:10px 0;
  border-top:1px dashed #eef2f7;
}

.jycc-summary-row:first-of-type{
  border-top:0;
  padding-top:2px;
}

.jycc-summary-label{
  font-size:13px;
  color:#64748b;
  min-width: 140px;
}

.jycc-summary-value{
  font-size:13px;
  color:#0f172a;
  font-weight:700;
  text-align:right;
  flex:1;
}

.jycc-note-label{
  font-size:12px;
  color:#64748b;
  margin-bottom:6px;
  font-weight:700;
}

.jycc-note{
  font-size:12px;
  color:#64748b;
}

.jycc-box{
  border:1px solid #eef2f7;
  background:#fff;
  border-radius:14px;
  padding:10px 12px;
  color:#0f172a;
}

.jycc-box-soft{
  background:#f8fafc;
}

.jycc-items{
  padding:0;
  overflow:hidden;
}

.jycc-item-row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:10px 12px;
  border-bottom:1px solid #f1f5f9;
}

.jycc-item-row:last-child{
  border-bottom:0;
}

.jycc-item-name{
  font-size:13px;
  font-weight:800;
  color:#0f172a;
}

.jycc-item-qty{
  margin-top:4px;
  font-size:12px;
  color:#64748b;
  font-weight:700;
}

.jycc-item-right{
  font-size:13px;
  font-weight:900;
  color:#0f172a;
  white-space:nowrap;
}

.jycc-address{
  line-height:1.6;
}

.jycc-paybox{
  margin-top:10px;
}

.jycc-paybox-title{
  margin:0 0 8px;
  font-size:13px;
  font-weight:900;
  color:#0f172a;
}

.jycc-accounts{
  padding:0;
  overflow:hidden;
}

.jycc-account{
  padding:10px 12px;
  border-bottom:1px solid #f1f5f9;
}

.jycc-account:last-child{
  border-bottom:0;
}

.jycc-account-bank{
  font-size:13px;
  font-weight:900;
  color:#0f172a;
}

.jycc-account-meta{
  margin-top:6px;
  font-size:12px;
  color:#334155;
  line-height:1.6;
}

.jycc-actions{
  margin-top:14px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.jycc-actions-row{
  display:flex;
  gap:10px;
}

.jycc-btn,
.jycc-btn-outline{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  width:100%;
  text-decoration:none;
  border-radius:14px;
  padding:12px 14px;
  font-weight:900;
  font-size:13px;
  letter-spacing:.2px;
  transition: transform .08s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
  user-select:none;
}

.jycc-btn{
  background:#0f172a;
  color:#fff;
  border:1px solid #0f172a;
  box-shadow: 0 10px 22px rgba(15,23,42,.12);
}

.jycc-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(15,23,42,.16);
}

.jycc-btn-outline{
  background:#fff;
  color:#0f172a;
  border:1px solid #e2e8f0;
}

.jycc-btn-outline:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(15,23,42,.10);
}

.jycc-btn-wa{
  background:#16a34a;
  border-color:#16a34a;
  box-shadow: 0 10px 22px rgba(22,163,74,.16);
}

.jycc-btn-wa:hover{
  box-shadow: 0 14px 28px rgba(22,163,74,.22);
}

.jycc-mt-10{ margin-top:10px; }
.jycc-mt-14{ margin-top:14px; }

/* ===== Responsive ===== */
@media (max-width: 860px){
  .jycc-grid{
    grid-template-columns: 1fr;
  }
  .jycc-summary-label{
    min-width: 120px;
  }
}

@media (max-width: 420px){
  .jycc-head{ padding:16px; }
  .jycc-title{ font-size:18px; }
  .jycc-section{ padding:12px; }
  .jycc-actions-row{ flex-direction:column; }
}
