/* ================= GIỎ HÀNG ================= */
.cart-wrap{
  max-width:900px;
  margin:0 auto;
}

/* TABLE */
.cart-table{
  width:100%;
  border-collapse:collapse;
  background:#ffffff;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.cart-table th{
  background:#2f8f5b;
  color:#fff;
  padding:14px;
  font-weight:600;
}

.cart-table td{
  padding:14px;
  border-bottom:1px solid #e5e7eb;
  text-align:center;
}

.cart-table tr:last-child td{
  border-bottom:none;
}

/* TÊN SP */
.cart-table td:first-child{
  text-align:left;
  font-weight:600;
}

/* ===== SỐ LƯỢNG ===== */
.qty-form{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}

.qty-form span{
  min-width:28px;
  font-weight:600;
}

.qty-form button{
  width:30px;
  height:30px;
  border:0;
  border-radius:50%;
  background:#e6f4ec;
  color:#166534;
  font-size:18px;
  cursor:pointer;
  transition:.2s;
}

.qty-form button:hover{
  background:#2f8f5b;
  color:#fff;
}

/* ===== XÓA ===== */
.del{
  color:#dc2626;
  font-size:18px;
  text-decoration:none;
  font-weight:bold;
}

.del:hover{
  opacity:.7;
}

/* ===== TỔNG TIỀN ===== */
.cart-total{
  margin-top:18px;
  text-align:right;
  font-size:20px;
  font-weight:700;
  color:#166534;
}

/* ===== NÚT ĐẶT HÀNG ===== */
.checkout-btn{
  display:inline-block;
  margin-top:14px;
  float:right;
  background:#2f8f5b;
  color:#fff;
  padding:12px 22px;
  border-radius:999px;
  font-weight:600;
  text-decoration:none;
  transition:.2s;
}

.checkout-btn:hover{
  background:#256d46;
}

/* ===== GIỎ TRỐNG ===== */
.cart-empty{
  background:#ffffff;
  padding:30px;
  border-radius:16px;
  text-align:center;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

/* ================= MOBILE ================= */
@media (max-width:768px){
  .cart-table th:nth-child(2),
  .cart-table td:nth-child(2){
    display:none; /* Ẩn cột giá trên mobile */
  }

  .checkout-btn{
    float:none;
    width:100%;
    text-align:center;
  }
}
