/* body {
  font-family: Arial, sans-serif;
  background: #f5f0e8;
  padding: 40px;
} */

/* h1 {
  text-align: center;
  margin-bottom: 30px;
} */

.cart-container {
  max-width: 1000px;
  margin: auto;
}

.cart-item {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 15px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-name {
  font-size: 20px;
  font-weight: bold;
}

.product-category {
  color: #666;
  margin-top: 5px;
}

.product-price {
  font-size: 22px;
  font-weight: bold;
  color: #a07830;
}

.empty-cart {
  text-align: center;
  font-size: 22px;
  margin-top: 50px;
}

.total {
  text-align: right;
  font-size: 24px;
  font-weight: bold;
  margin-top: 20px;
}

.remove-btn {
  background: red;
  color: white;
  border: none;
  padding: 8px 15px;
  cursor: pointer;
  border-radius: 5px;
}

.cart-actions{
  display:flex;
  gap:10px;
  margin-top:10px;
}

.order-btn{
  background:#25D366;
  color:white;
  border:none;
  padding:8px 15px;
  cursor:pointer;
  border-radius:5px;
  font-weight:600;
  transition:.3s;
}

.order-btn:hover{
  background:#1da851;
}

/* whatsapp */

.whatsapp-wrap{
  display:flex;
  justify-content:flex-end;
  margin-top:30px;
}

.whatsapp-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;

  padding:14px 28px;

  background:#25D366;
  color:#fff;

  border:none;
  border-radius:50px;

  font-size:16px;
  font-weight:600;

  cursor:pointer;
  transition:all .3s ease;

  box-shadow:0 8px 20px rgba(37,211,102,.25);

  text-decoration:none;
}

.whatsapp-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 25px rgba(37,211,102,.35);
}

/* Navbar CSS */
.section{
  text-align: center;
}
/* ye image addtocart image css hai */
.item-image {
    width: 90px;
    height: 90px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ye short dis  */
.item-short-description{
    margin-top:8px;
    font-size:13px;
    color:#666;
    line-height:1.5;
    max-width:400px;
}
