.grspc-wrap{
  border:1px solid #e5e5e5;
  border-radius:12px;
  padding:16px;
  margin:16px 0;
  background:#fff;
}
.grspc-title{
  margin:0 0 12px;
}
.grspc-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
}
@media (max-width: 860px){
  .grspc-grid{ grid-template-columns: 1fr; }
}
.grspc-field{
  margin-bottom:12px;
}
.grspc-field label{
  display:block;
  font-weight:600;
  margin-bottom:6px;
}
.grspc-field input[type="number"],
.grspc-field input[type="email"]{
  width:100%;
  padding:8px 10px;
  border:1px solid #ddd;
  border-radius:10px;
}
.grspc-field input[type="file"]{
  display:block;
  margin:6px 0;
}
.grspc-help{
  display:block;
  color:#666;
  font-size:12px;
  margin-top:4px;
}
.grspc-error{
  display:none;
  color:#b00020;
  font-size:12px;
  margin-top:4px;
}
.grspc-divider{
  border-top:1px solid #eee;
  margin:12px 0;
}
.grspc-table{
  width:100%;
  border-collapse:collapse;
  overflow:hidden;
  border-radius:12px;
}
.grspc-table th,
.grspc-table td{
  padding:10px;
  border:1px solid #eee;
}
.grspc-table thead th{
  background:#f7f7f7;
  text-align:left;
}
.grspc-actions{
  display:flex;
  gap:12px;
  align-items:center;
}
.grspc-status{
  font-size:13px;
  color:#333;
}
.grspc-previews{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:10px;
  margin-top:8px;
}
@media (max-width: 560px){
  .grspc-previews{ grid-template-columns:1fr; }
}
.grspc-preview{
  border:1px solid #eee;
  border-radius:12px;
  padding:10px;
}
.grspc-preview-label{
  font-size:12px;
  color:#666;
  margin-bottom:6px;
}
.grspc-preview img{
  width:100%;
  height:auto;
  border-radius:10px;
  display:block;
}
.grspc-has-wc-qty .grspc-qty-field{
  display:none; /* hide calculator qty when WooCommerce qty box exists */
}
