/* carrito-cotizacion.css */

.catalogo-hero {
  background: #f5f5f5;
  padding: 45px 0;
  margin-bottom: 35px;
}

.catalogo-hero h1 {
  font-weight: 800;
  color: #1f2f46;
}

.catalogo-hero p {
  color: #555;
  font-size: 18px;
}

.catalogo-wrap {
  padding-bottom: 70px;
}

.categoria-title {
  color: #1f2f46;
  margin: 35px 0 20px;
  font-weight: 800;
  border-left: 6px solid #e46f25;
  padding-left: 12px;
}

.card-producto {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 22px;
  min-height: 230px;
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
  transition: all .2s ease;
}

.card-producto:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 18px rgba(0,0,0,.12);
}

.card-producto h4 {
  color: #1f2f46;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.card-producto p {
  color: #666;
  font-size: 14px;
}

.btn-ficha,
.btn-cotizar {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px 12px;
  border-radius: 6px;
  margin-top: 10px;
  text-decoration: none;
  font-weight: 700;
  border: none;
  cursor: pointer;
}

.btn-ficha {
  background: #1f2f46;
  color: #fff;
}

.btn-ficha:hover {
  color: #fff;
  text-decoration: none;
}

.btn-cotizar {
  background: #e46f25;
  color: #fff;
}

.sin-ficha {
  display: block;
  color: #999;
  font-size: 14px;
  margin-top: 15px;
}

#botonCarrito {
  position: fixed;
  right: 25px;
  bottom: 95px;
  background: #e46f25;
  color: #fff;
  padding: 14px 18px;
  border-radius: 50px;
  z-index: 9999;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0,0,0,.3);
}

#contadorCarrito {
  background: #1f2f46;
  padding: 3px 8px;
  border-radius: 20px;
  margin-left: 5px;
}

#panelCarrito {
  position: fixed;
  right: -390px;
  top: 0;
  width: 370px;
  height: 100vh;
  background: #fff;
  z-index: 10000;
  box-shadow: -5px 0 20px rgba(0,0,0,.25);
  padding: 20px;
  overflow-y: auto;
  transition: right .3s ease;
}

#panelCarrito.abierto {
  right: 0;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.panel-header h5 {
  color: #1f2f46;
  font-weight: 800;
}

#cerrarCarrito {
  border: none;
  background: #e46f25;
  color: #fff;
  font-size: 22px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  line-height: 28px;
  cursor: pointer;
}

.item-cotizacion {
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

.item-cotizacion strong {
  display: block;
  color: #1f2f46;
}

.item-cotizacion input {
  width: 70px;
  margin-top: 5px;
}

.eliminar-item {
  color: #c00;
  cursor: pointer;
  font-size: 13px;
}

#respuestaCotizacion {
  margin-top: 12px;
}

@media (max-width: 700px) {
  #panelCarrito {
    width: 100%;
    right: -100%;
  }

  #botonCarrito {
    right: 15px;
    bottom: 120px;
  }
}
