.cart-container{
  max-width: 980px;
  margin: 24px auto;
  padding: 0 16px;
  display: grid;
  
  gap: 24px;
}
.cart-container h1{
  margin: 0 0 12px;
}
.cart-list{
  display: grid;
  gap: 12px;
}
.cart-item{
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 12px;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 12px;
  background: #fff;
}
.cart-item img{
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 8px;

}
.item-title{
  font-weight: 600;
  margin-bottom: 4px;
}
.item-meta{
  font-size: .9rem;
  color: #666;
  margin-bottom: 8px;
}

.qty-row{
  display: flex;
  align-items: center;
  gap: 8px;
}
.qty-btn{
  width: 32px;
  height: 32px;
  border: 1px solid #ddd;
  background: #f4f4f4;
  cursor: pointer;

}
.qty-value{
  min-width: 24px;
  text-align: center;
}
.item-total{
  font-weight: 600;
}
.cart-summary{
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 16px;
  height: fit-content;
  background: #fff;
}
.cart-summary .row{
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}
.btn-clear, .btn-checkout{
  width: 100%;
  padding: 10px 12px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}
.btn-clear{
  background: #f4f4f4;
}
.btn-checkout{
  background: #111;
  color: #fff;
  margin-top: 8px;
}

@media (max-width: 800px){
  .cart-container{
    grid-template-columns: 1fr;
  }
  .cart-item{
    grid-template-columns:  72px 1fr;
  }

.cart-item img{
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 8px;

}
.cart-item img{
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 8px;

}.cart-item img{
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}  
}