/* ======================================================
   CARRITO - ESTILOS GENERALES
====================================================== */

.cart-page {
  padding: 40px 0;
  background: #faf7f5;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.container {
  width: 95%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */

.cart-header {
  margin-bottom: 25px;
}

.cart-header h2 {
  font-size: 32px;
  color: #362822;
  margin-bottom: 5px;
}

.cart-header p {
  color: #777;
  font-size: 15px;
}

/* ======================================================
   CARRITO VACÍO
====================================================== */

.cart-empty {
  text-align: center;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  margin-top: 20px;
}

.cart-empty img {
  margin-bottom: 20px;
  height: 200px;
  border-radius: 14px;
}

.cart-empty h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #362822;
}

.cart-empty p {
  color: #777;
  margin-bottom: 20px;
}

.cart-empty .btn {
  background: #c78634;
  color: #fff;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

.cart-empty .btn:hover {
  background: #a86a28;
}

/* ======================================================
   LAYOUT PRINCIPAL
====================================================== */

.cart-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  align-items: start;
}

/* ======================================================
   PRODUCTOS
====================================================== */

.cart-products {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-card {
  display: flex;
  gap: 20px;
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.cart-card:hover {
  transform: translateY(-3px);
}

/* IMAGEN */

.cart-card-image img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
}

/* CONTENIDO */

.cart-card-content {
  flex: 1;
}

/* TOP */

.cart-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.cart-card-top h3 {
  font-size: 18px;
  color: #362822;
  margin-bottom: 5px;
}

.cart-card-top p {
  font-size: 14px;
  color: #888;
}

/* BOTÓN ELIMINAR */

.cart-remove {
  color: #c78634;
  font-size: 18px;
  transition: 0.3s;
}

.cart-remove:hover {
  color: #a86a28;
  transform: scale(1.1);
}

/* BOTTOM */

.cart-card-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cart-column span {
  font-size: 12px;
  color: #888;
  display: block;
  margin-bottom: 5px;
}

.cart-column strong {
  font-size: 15px;
  color: #362822;
}

/* CANTIDAD */

.qty-control {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f4f1ee;
  padding: 6px 10px;
  border-radius: 10px;
}

.qty-control a {
  text-decoration: none;
  color: #362822;
  font-size: 18px;
  font-weight: bold;
}

.qty-control span {
  min-width: 20px;
  text-align: center;
}

/* ======================================================
   RESUMEN
====================================================== */

.cart-summary {
  display: flex;
  justify-content: flex-end;
}

.summary-card {
  width: 320px;
  background: #fff;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  height: fit-content;
}

.summary-card h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #362822;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 14px;
  color: #555;
}

.summary-card hr {
  border: none;
  border-top: 1px solid #eee;
  margin: 15px 0;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #362822;
}

.summary-total strong {
  color: #c78634;
}

/* BOTÓN PRINCIPAL */

.cart-checkout-btn {
  display: block;
  text-align: center;
  background: #c78634;
  color: #fff;
  padding: 12px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  margin-bottom: 12px;
}

.cart-checkout-btn:hover {
  background: #a86a28;
}

/* SEGUNDO BOTÓN */

.continue-shopping {
  display: block;
  text-align: center;
  color: #666;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 15px;
}

.continue-shopping:hover {
  color: #c78634;
}

/* SEGURIDAD */

.secure-payment {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #888;
  margin-top: 10px;
}

.secure-payment i {
  color: #3ca45b;
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width: 900px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .summary-card {
    width: 100%;
  }

  .cart-summary {
    justify-content: stretch;
  }
}

@media (max-width: 600px) {
  .cart-card {
    flex-direction: column;
  }

  .cart-card-image img {
    width: 100%;
    height: 200px;
  }

  .cart-card-bottom {
    flex-direction: column;
    gap: 10px;
  }
}
