/*Carrito*/
.navbar-cart {
  position: relative;
}

/* DROPDOWN */
#cart-toggle {
  position: relative;
}
.shopping-item {
  position: absolute;
  top: calc(100% + 14px);
  right: -20px;
  width: 360px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.15);
  padding: 22px 24px;
  display: none;
  z-index: 9999;
  animation: fadeSlide .25s ease;
}

/* ANIMACIÓN */
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.shopping-item.active {
  display: block;
}

/* FLECHITA */
.shopping-item::before {
  content: "";
  position: absolute;
  top: -10px;
  right: 22px;
  width: 18px;
  height: 18px;
  background: #ffffff;
  transform: rotate(45deg);
}
/* HEADER */
.dropdown-cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  margin-bottom: 18px;
  color: #444;
}

.dropdown-cart-header a {
  color: #1e63d5;
  font-weight: 600;
  text-decoration: none;
}
.dropdown-cart-header a:hover {
  opacity: 0.8;
}


/* Separador suave */
.shopping-list {
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  padding: 16px 0;
  margin: 10px 0;
}

.total {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 15px;
  margin-top: 10px;
  color: #222;
}

/* BOTÓN */
.button-cart .btn {
  width: 100%;
  margin-top: 14px;
  padding: 12px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1e63d5, #1552b8);
  color: #fff;
  font-weight: 600;
  transition: all .2s ease;
}

.button-cart .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30,99,213,0.35);
}

.total-items {
  position: absolute;
  top: -14px;
  right: -10px;
  background: linear-gradient(135deg, #2b2f42, #1c1f2e);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 7px;
  border-radius: 50%;
  min-width: 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
/* ===== ITEM DEL CARRITO ===== */

.shopping-list li {
  position: relative;   /* clave */
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-bottom: 1px solid #f1f1f1;
}

.shopping-list li:hover {
  background: #f9fbff;
}

/* Imagen contenedor */
.cart-img-head {
  position: relative;
  width: 80px;
  min-width: 80px;
}

.cart-img img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* ===== BADGE DE CANTIDAD (EL 2 NEGRO) ===== */

.quantity-circle {
  position: absolute;
  top: -8px;
  left: -8px;
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  border: 2px solid #fff;
}

/* Contenido */
.content {
  flex: 1;
}

.content h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #1e293b;
}

.content h4 a {
  text-decoration: none;
  color: inherit;
}

.content .quantity {
  font-size: 13px;
  color: #64748b;
}

.content .amount {
  font-weight: 600;
  color: #0f172a;
}

.shopping-list li a.remove {
  position: absolute;
  top: 4px;
  right: 0px;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0,0,0,0.04);
  color: #999;
  font-size: 13px;
  text-decoration: none;
  transition: all .25s ease;
}

.shopping-list li a.remove:hover {
  background: rgba(209, 26, 42, 0.08);
  color: #d11a2a;
  transform: scale(1.08);
}