
/* Extra CSS para el cotizador (mantiene el look del sitio) */
.cotiza_section .heading_container p { max-width: 820px; }

.cotiza-card{
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}

.cotiza-toolbar{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cotiza-search{ flex: 1 1 420px; }
.cotiza-actions{ display:flex; gap:10px; flex: 0 0 auto; }

.cotiza-product-title{
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
}
.cotiza-product-meta{
  display:flex;
  gap:8px;
  flex-wrap: wrap;
  margin: 10px 0 8px;
}
.cotiza-product-desc{
  font-size: 14px;
  margin-bottom: 12px;
}

.cotiza-product-media{
  padding: 12px;
  border-bottom: 1px solid rgba(0,0,0,.06);
  display:flex;
  justify-content:center;
  align-items:center;
  min-height: 160px;
}
.cotiza-img{
  width: 100%;
  max-width: 260px;
  max-height: 160px;
  object-fit: contain;
}
.cotiza-img-placeholder{
  width: 100%;
  max-width: 260px;
  height: 160px;
  border-radius: 10px;
  border: 1px dashed rgba(0,0,0,.2);
  display:flex;
  align-items:center;
  justify-content:center;
  color: rgba(0,0,0,.35);
  font-size: 28px;
}

.cotiza-sticky{ top: 18px; }

.cotiza-cart-item{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.cotiza-cart-item:last-child{ border-bottom: none; }

.cotiza-cart-title{ font-weight: 600; font-size: 14px; }
.cotiza-cart-controls{
  display:flex;
  align-items:center;
  gap: 6px;
  white-space: nowrap;
}
.cotiza-cart-qty{
  display:inline-block;
  min-width: 22px;
  text-align:center;
  font-weight: 700;
}

.cotiza-result{
  display:flex;
  gap: 14px;
  padding: 12px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  margin-bottom: 10px;
}
.cotiza-res-left{ width: 90px; flex: 0 0 90px; }
.cotiza-res-img{
  width: 90px; height: 70px; object-fit: contain;
}
.cotiza-res-img-ph{
  width: 90px; height: 70px;
  border-radius: 10px;
  border: 1px dashed rgba(0,0,0,.2);
  display:flex;
  align-items:center;
  justify-content:center;
  color: rgba(0,0,0,.35);
  font-size: 22px;
}
.cotiza-res-title{ font-weight: 700; }
.cotiza-res-meta{ display:flex; gap:8px; flex-wrap:wrap; margin-top:6px; }

@media (max-width: 991px){
  .cotiza-sticky{ position: static !important; }
}
