
/* === ESTRUCTURA GENERAL === */
.cart-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 20px;
  background: #fff;
  flex-wrap: wrap;
}

/* === IMAGEN FIJA === */
.img-box {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.img-box img {
  width: auto;
  height: 100%;
  max-height: 150px;
  object-fit: contain;
  display: block;
}

/* === CONTENIDO DERECHA: COLUMNA FLEX-VERTICAL === */
.cart-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  gap: 10px;
}

/* === BLOQUE SUPERIOR: TÍTULO + CANTIDAD + TACHO === */
.info-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}

.cart-item .brand-badge img{
  height:22px;
  max-width:80px;
  object-fit:contain;
  display:block;
  margin-top:4px;
  opacity:.95;
}

.checkout-summary .cs-title{ display:flex; flex-direction:column; gap:4px; }
.checkout-summary .cs-brand img{
  height:18px; width:auto; max-width:140px;
  object-fit:contain; display:block; opacity:.95;
}


.titulo {
  font-size: 15px;
  font-weight: 600;
  color: #c00;
  line-height: 1.2;
  text-align: left;
}

.cantidad-con-eliminar {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: nowrap;
}

input.qty {
  width: 60px;
  height: 30px;
  text-align: center;
  padding: 4px;
  border-radius: 4px;
  border: 1px solid #ccc;
  line-height: 1;
  margin: 0;
}

.eliminar {
  font-size: 15px;
  color: #888;
  display: flex;
  align-items: center;
  height: 30px;
  transition: color 0.2s ease;
}

.eliminar:hover {
  color: #c00;
}


/* === BLOQUE INFERIOR: PRECIO === */
.info-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.subtotal {
  font-weight: bold;
  color: #000;
  font-size: 15px;
}

.precio-detalle-mini {
  font-size: 11px;
  color: #777;
  margin-top: 3px;
  font-style: italic;
}

/* === TOTALES === */
.cart-totales-wrapper {
  margin-top: 40px;
  #border-top: 2px solid #eee;
  padding-top: 0px;
  display: flex;
  justify-content: flex-end;
}

.cart-totales-inner {
  max-width: 420px;
  width: 100%;
}

.cart-totales-inner h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cart-totales-inner table {
  width: 100%;
  margin-bottom: 10px;
}

.cart-totales-inner td,
.cart-totales-inner th {
  padding: 6px 8px;
  font-size: 14px;
  vertical-align: top;
}

.cart-totales-inner td {
  text-align: right;
}

.cart-totales-inner tr:last-child td {
  font-weight: bold;
  font-size: 16px;
}

.cart-totales-inner em {
  font-size: 12px;
  color: #666;
  display: block;
  margin-top: 8px;
}

/* === BOTONES === */
.cart-action-bar-bottom {
  margin-top: 25px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  min-height: 48px;
}

.cart-action-bar-bottom form,
.cart-buttons-secondary {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-button-secondary {
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  color: #333;
  padding: 10px 18px;
  border-radius: 4px;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background-color 0.2s ease;
  min-height: 42px;
}

.cart-button-secondary--light {
  background-color: transparent;
  border: 1px solid #ddd;
  color: #c00;
}

.cart-button-secondary--light:hover {
  background-color: #fcecec;
  border-color: #c00;
  color: #900;
}

.cart-button-secondary i {
  margin-right: 6px;
}

.cart-action-bar-bottom .btn-danger {
  height: 42px;
  padding: 10px 20px;
  font-size: 15px;
  border-radius: 4px;
  display: inline-flex;
  width: 100%;
  align-items: center;
  gap: 6px;
  justify-content: flex-end;

}

/* === BOToN ACTUALIZAR CARRITO === */
.btn-actualizar-carrito {
  background-color: #fff;
  color: #c00;
  border: 1px solid #ddd;
  padding: 10px 18px;
  font-size: 15px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.btn-actualizar-carrito i {
  color: #c00;
  font-size: 16px;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .cart-item {
    flex-direction: column;
  }

  .cart-content {
    flex-direction: column;
    width: 100%;
  }

  .info-left {
    order: 1;
    width: 100%;
  }

  .info-right {
    order: 2;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
  }

  .cart-details {
    text-align: right;
  }

  .titulo-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .cantidad-con-eliminar {
    justify-content: center;
  }

  .eliminar {
    align-self: center;
  }

  .cart-action-bar-bottom {
    justify-content: center;
  }

  .btn-actualizar-carrito {
    width: 100%;
    justify-content: center;
    font-size: 16px;
    padding: 12px;
  }
}
