
:root{
  --primary:#025AFF;
  --secondary:#FF0000;
  --bg:#f3f4ff;
  --card-bg:#ffffff;
  --radius:14px;
  --shadow:0 10px 25px rgba(15,23,42,.18);
  --font:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}
#kcaw-wizard{margin:0;padding:0;}
#wizard-pro{
  max-width:900px;margin:30px auto;padding:24px 24px 32px;
  background:var(--card-bg);border-radius:var(--radius);
  box-shadow:var(--shadow);border:2px solid var(--primary);
  font-family:var(--font);
}
.wp-header{display:flex;align-items:center;gap:12px;margin-bottom:10px;}
.wp-logo-circle{
  width:40px;height:40px;border-radius:999px;
  background:var(--primary);color:#fff;display:flex;
  align-items:center;justify-content:center;font-weight:800;
  box-shadow:0 4px 10px rgba(37,99,235,.6);
}
.wp-title{font-size:26px;font-weight:700;color:#0f172a;margin:0;}
.wp-subtitle{font-size:13px;color:#64748b;margin:4px 0 16px;}
.wp-progress-wrap{margin-bottom:16px;}
.wp-progress-label{font-size:13px;color:#475569;margin-bottom:4px;display:flex;justify-content:space-between;}
.wp-progress-bar{width:100%;height:8px;background:#e5e7eb;border-radius:999px;overflow:hidden;}
.wp-progress-fill{height:100%;background:linear-gradient(90deg,var(--primary),#38bdf8);}
.wp-question{font-size:20px;font-weight:600;margin-bottom:10px;color:#0f172a;display:flex;align-items:center;gap:8px;}
.wp-question-icon{width:26px;height:26px;border-radius:999px;background:#eff6ff;color:var(--primary);display:flex;align-items:center;justify-content:center;font-size:15px;}
.wp-options{display:grid;grid-template-columns:repeat(2,1fr);gap:10px;margin-top:8px;}
.wp-btn{padding:11px 12px;font-size:14px;border-radius:999px;font-weight:600;cursor:pointer;border:1px solid transparent;transition:.15s;display:flex;justify-content:center;align-items:center;gap:6px;}
.wp-btn-primary{background:var(--primary);color:#ffffff;box-shadow:0 4px 10px rgba(37,99,235,.45);}
.wp-btn-primary:hover{transform:translateY(-1px);box-shadow:0 6px 14px rgba(37,99,235,.55);}
.wp-btn-secondary{background:#e5e7eb;color:#111827;}
.wp-btn-secondary:hover{background:#d1d5db;}
.wp-nav-row{margin-top:14px;display:flex;gap:8px;}
.wp-nav-row .wp-btn{flex:1;}
.wp-results-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:10px;margin-top:4px;}
.wp-results-title{font-size:19px;font-weight:600;color:#0f172a;}
.wp-results-chip{font-size:12px;padding:4px 8px;border-radius:999px;background:#eef2ff;color:#4338ca;font-weight:600;}
.wp-results-intro{font-size:13px;color:#4b5563;margin-bottom:14px;}
.wp-product-list{display:flex;flex-direction:column;gap:12px;}
.wp-product-card{
  display:grid;grid-template-columns:120px 1fr;gap:12px;
  padding:12px 12px 12px 10px;background:var(--bg);
  border-radius:14px;border:1px solid rgba(148,163,184,.7);
  transition:.15s;position:relative;overflow:hidden;
}
.wp-product-card::after{
  content:"";position:absolute;inset:auto -20px -40px;height:40px;
  background:linear-gradient(90deg,rgba(2,90,255,.08),transparent);
  opacity:0;transition:.2s;
}
.wp-product-card:hover{transform:translateY(-1px);box-shadow:0 10px 20px rgba(15,23,42,.18);}
.wp-product-card:hover::after{opacity:1;}
.wp-product-image-wrap{position:relative;}
.wp-product-tag{position:absolute;left:4px;top:4px;padding:2px 6px;border-radius:999px;background:#f97316;color:#fff;font-size:10px;font-weight:700;}
.wp-product-card img{width:120px;height:90px;object-fit:cover;border-radius:10px;background:#cbd5f5;}
.wp-product-main{display:flex;flex-direction:column;gap:4px;}
.wp-product-name{font-weight:700;font-size:15px;color:#020617;}
.wp-product-meta{font-size:12px;color:#475569;}
.wp-product-bottom{display:flex;justify-content:space-between;align-items:flex-end;margin-top:6px;gap:10px;}
.wp-product-price{color:var(--primary);font-weight:800;font-size:16px;}
.wp-product-actions{display:flex;gap:6px;flex-wrap:wrap;}
.wp-chip{font-size:11px;padding:3px 7px;border-radius:999px;background:#e5e7eb;color:#111827;}
.wp-link-btn{font-size:11px;padding:5px 9px;border-radius:999px;background:#0f172a;color:white;text-decoration:none;display:inline-flex;align-items:center;gap:5px;}
.wp-link-btn span{font-size:13px;}
.wp-empty{padding:14px;border-radius:10px;border-left:4px solid var(--secondary);background:#fee2e2;font-size:14px;color:#7f1d1d;margin-bottom:8px;}
.wp-restart{margin-top:20px;background:var(--secondary);color:#ffffff;width:100%;}
@media(max-width:700px){
  #wizard-pro{margin:16px auto;padding:16px;}
  .wp-options{grid-template-columns:1fr;}
  .wp-product-card{grid-template-columns:1fr;}
}
