/* =========================================================
   RC31.307 — TIEMPO ESTIMADO DE ENTREGA EN MI PEDIDO
   Sólo presentación. La estimación base nace del backend y
   se muestra únicamente durante la etapa del carrito.
========================================================= */
.pcTiempoEntrega{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:9px;
  min-width:0;
  padding:8px 12px;
  border:1px solid #d9e7df;
  border-radius:16px;
  background:#f3fbf6;
  color:#17212b;
}
.pcTiempoEntrega[hidden]{display:none!important}
.pcTiempoEntregaIcono{
  display:grid;
  place-items:center;
  width:34px;
  height:34px;
  flex:0 0 34px;
  border-radius:11px;
  background:#e2f5e8;
  font-size:18px;
}
.pcTiempoEntregaTexto{display:grid;gap:1px;min-width:0;text-align:left}
.pcTiempoEntregaTexto small{
  color:#63706a;
  font-size:10px;
  font-weight:800;
  line-height:1.1;
  white-space:nowrap;
}
.pcTiempoEntregaTexto strong{
  color:#13251a;
  font-size:14px;
  font-weight:950;
  line-height:1.15;
  white-space:nowrap;
}
@media (max-width:900px){
  body #panelCarrito .cabeceraCarrito{align-items:center!important}
  body #panelCarrito .tituloCarrito{min-width:0!important}
  .pcTiempoEntrega{
    margin-left:auto;
    padding:6px 8px;
    gap:6px;
    border-radius:13px;
  }
  .pcTiempoEntregaIcono{width:29px;height:29px;flex-basis:29px;border-radius:9px;font-size:15px}
  .pcTiempoEntregaTexto small{font-size:8px}
  .pcTiempoEntregaTexto strong{font-size:11px}
}
@media (max-width:390px){
  .pcTiempoEntregaIcono{display:none}
  .pcTiempoEntrega{padding:6px 7px}
  .pcTiempoEntregaTexto strong{font-size:10px}
}
