/* Estilos mínimos (fáceis de sobrescrever no tema) */
.aes-quote-wrap{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}

@media (max-width: 900px){
  .aes-quote-wrap{ grid-template-columns: 1fr; }
}

.aes-quote-card{
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 18px;
  background: #fff;
}

.aes-quote-title{
  margin: 0 0 14px;
  font-weight: 800;
}

.aes-quote-notice{
  padding: 10px 12px;
  border-radius: 10px;
  margin-bottom: 12px;
  font-weight: 600;
}
.aes-quote-notice--success{ background: rgba(34,197,94,.12); }
.aes-quote-notice--error{ background: rgba(239,68,68,.12); }

.aes-quote-empty{ color: rgba(0,0,0,.6); }

.aes-quote-items{ display:flex; flex-direction:column; gap: 12px; }

.aes-quote-item{
  display:grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items:center;
  padding: 12px;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  background: rgba(0,0,0,.02);
}

.aes-quote-thumb img{
  width: 72px;
  height: 72px;
  object-fit: contain;
  display:block;
}

.aes-quote-name{
  font-weight: 800;
  text-decoration:none;
}

.aes-quote-meta{
  margin-top: 8px;
  display:flex;
  gap: 12px;
  align-items:center;
  flex-wrap: wrap;
}

.aes-quote-qty{
  display:flex;
  gap: 8px;
  align-items:center;
}

.aes-quote-qty input{
  width: 80px;
  padding: 6px 8px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.12);
}

.aes-quote-remove{
  color: #b91c1c;
  font-weight: 700;
  text-decoration:none;
}

.aes-quote-actions{
  margin-top: 14px;
  display:flex;
  justify-content:flex-end;
}

.aes-quote-form{
  display:flex;
  flex-direction:column;
  gap: 12px;
}

.aes-field label{
  display:block;
  font-weight: 700;
  margin-bottom: 6px;
}

.aes-field input,
.aes-field textarea{
  width: 100%;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 12px;
  padding: 10px 12px;
}

.aes-quote-submit[disabled]{
  opacity: .6;
  cursor: not-allowed;
}

.aes-quote-hint{
  margin-top: 10px;
  font-size: 13px;
  color: rgba(0,0,0,.55);
}

/* Botão no single product (usa classes do Woo) */
.aes-quote-btn-wrap{
  margin-top: 14px;
}
.aes-quote-btn{
  font-weight: 800;
}
