/* Form container */
.form-wrap{
  background: rgba(10,14,20,0.7);
  border:1px solid var(--border);
  border-radius:14px;
  overflow:hidden;
  box-shadow: 0 12px 35px rgba(0,0,0,.5);
}

.inner{ padding:18px 18px 22px; }

h2{ margin:0 0 12px; font-size:18px; font-weight:700; }

.step{
  margin-top:10px;
  padding-top:12px;
  border-top:1px dashed rgba(255,255,255,.08);
}

.label{
  display:flex;
  gap:8px;
  align-items:center;
  font-size:12px;
  color:var(--muted);
  margin:10px 0 6px;
}

.req{ color:var(--danger); font-weight:700; }

/* GRID kortelėms */
.grid-3{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}
@media (max-width:720px){ .grid-3{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:420px){ .grid-3{ grid-template-columns:1fr; } }

.style-card{
  position:relative;
  border:1px solid rgba(255,255,255,.10);
  border-radius:10px;
  height:78px;
  overflow:hidden;
  background:
    linear-gradient(0deg, rgba(0,0,0,.55), rgba(0,0,0,.55)),
    radial-gradient(600px 260px at 20% 10%, rgba(255,255,255,.14), transparent 60%),
    radial-gradient(500px 250px at 80% 80%, rgba(47,134,255,.20), transparent 55%),
    linear-gradient(135deg, #2b2b2b, #1a1a1a);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  user-select:none;
  transition:.15s transform, .15s border-color, .15s box-shadow;
}

.style-card:hover{
  transform: translateY(-1px);
  border-color: rgba(47,134,255,.45);
  box-shadow: 0 10px 22px rgba(0,0,0,.35);
}

.style-card input{ position:absolute; inset:0; opacity:0; cursor:pointer; }

.style-card.selected{
  border-color: rgba(47,134,255,.9);
  box-shadow: 0 0 0 2px rgba(47,134,255,.25) inset;
}

.style-card img{
  max-width:95%;
  max-height:60px;
  object-fit:contain;
  pointer-events:none;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.6));
}

/* 3 stulpeliai: spalva / tvirtinimas / kiekis+sumos dėžutė */
.row{
  display:grid;
  grid-template-columns: 1fr 1fr 220px;
  gap:10px;
  margin-top:10px;
}
@media (max-width:720px){ .row{ grid-template-columns:1fr; } }

select,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea{
  width:100%;
  background: rgba(18,26,36,.75);
  border:1px solid rgba(255,255,255,.10);
  color:var(--text);
  border-radius:10px;
  padding:10px 12px;
  outline:none;
  min-height:42px;
}

textarea{ min-height:88px; resize:vertical; }

.grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
@media (max-width:720px){ .grid-2{ grid-template-columns:1fr; } }

.drop{
  margin-top:10px;
  border:1px dashed rgba(255,255,255,.18);
  background: rgba(18,26,36,.55);
  border-radius:12px;
  padding:18px;
  text-align:center;
}

.drop .icon{ font-size:26px; margin-bottom:8px; opacity:.9; }
.drop small{ color:var(--muted); }

.file-name{
  margin-top:8px;
  color: rgba(232,240,255,.9);
  font-size:12px;
  word-break:break-word;
}

.actions{
  padding:14px 18px 18px;
  border-top:1px solid rgba(255,255,255,.08);
  background: rgba(10,14,20,.65);
}

button{
  width:100%;
  border:none;
  border-radius:12px;
  padding:12px 14px;
  font-weight:800;
  color:white;
  cursor:pointer;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  box-shadow: 0 12px 26px rgba(47,134,255,.22);
}

.note{ margin-top:10px; font-size:12px; color:var(--muted); }
.status{ margin-top:10px; font-size:13px; }

#logoPreview{
  display:none;
  max-width:180px;
  margin:10px auto 0;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.15);
}

/* Kainų išklotinės dėžutė */
.sum-box{
  margin-top:8px;
  padding:10px 10px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(18,26,36,.55);
  font-size:12px;
  line-height:1.35;
  word-break:break-word;
  overflow:hidden;
}

.sum-line{ color: rgba(232,240,255,.92); }

.sum-total{
  margin-top:8px;
  padding-top:8px;
  border-top:1px dashed rgba(255,255,255,.12);
  font-weight:800;
  color:#fff;
}

/* =========================
   DARBUOTOJŲ LENTELĖ
   ========================= */

.emp-head{
  margin-top:8px;
  color: rgba(232,240,255,.75);
  font-size:12px;
}

.emp-grid{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:10px;
}

@media (max-width:720px){
  .emp-wrap{
    overflow-x:auto;
    padding-bottom:6px;
  }
  .emp-grid{
    min-width: 720px; /* kad stulpeliai nesusispaustų */
  }
}

.emp-wrap{
  margin-top:10px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
