/* Full-width a reset odsazení */
.vinci-form-wrap { width:100%; margin:0; }
.vinci-form { width:100%; margin:0; }

/* Mřížka polí */
.vf-grid {
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
}
@media (max-width: 720px){
  .vf-grid { grid-template-columns: 1fr; }
}
.vf-field { display:flex; flex-direction:column; gap:6px; }
.vf-span-2 { grid-column: 1 / -1; }
.vf-field input, .vf-field textarea {
  width:100%; border:1px solid #ddd; border-radius:10px;
  padding:.8rem 1rem; font-size:16px; line-height:1.4;
}
.req { color:#d00; margin-left:4px; }

/* Uploader */
.vf-upload { margin:14px 0 8px; }
.vinci-dropzone {
  border:2px dashed #e7e7e7; border-radius:14px; padding:18px; text-align:center;
  cursor:pointer; transition: background .15s ease;
  background:#fafafa;
}
.vinci-dropzone:hover, .vinci-dropzone:focus { background:#f4f4f4; outline:none; }
.vinci-dropzone small { display:block; color:#666; margin-top:4px; }

/* Přehled souborů */
.vinci-filelist { margin-top:10px; }
.vf-item {
  padding:.45rem .6rem; background:#fff; border:1px solid #eee;
  border-radius:10px; margin:.25rem 0; display:flex; gap:.5rem; align-items:center;
}
.vf-name { font-weight:500; }
.vf-size { color:#666; font-size:.9em; }

/* GDPR + submit */
.vf-consent { font-size:.95em; color:#333; margin:12px 0; }
.vf-submit.button-muj { min-width: 180px; }

/* Antispam honeypot */
.hp { position:absolute !important; left:-9999px !important; width:1px; height:1px; opacity:0; }