.side-cart {
  position: fixed;
  top: 0;
  right: -320px; 
  width: 300px;
  height: 100%;
  background-color: #fff9fc;
  box-shadow: -4px 0 12px rgba(0,0,0,0.2);
  transition: right 0.3s ease;
  padding: 20px;
  z-index: 999;
  border-left: 2px solid #e09ecb;
}

.side-cart.open {
  right: 0;
}

.close {
  float: right;
  font-size: 24px;
  cursor: pointer;
}

.product {
  background-color: #fff6fb;
  border: 2px solid #e4b5d8;
  border-radius: 10px;
  padding: 16px 20px;
  margin: 20px auto;
  max-width: 320px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
  text-align: center;
}

.product:hover {
  transform: translateY(-5px);
}

.product h3 {
  font-size: 1.4rem;
  color: #4a2040;
  margin-bottom: 12px;
  font-weight: 600;
}

.add-to-cart {
  background-color: #d663a6;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.25s ease;
}

.add-to-cart:hover {
  background-color: #b84d8d;
}
@media (max-width: 480px) {
  .product {
    max-width: 90%;
    padding: 14px;
  }

  .add-to-cart {
    width: 100%;
  }
}
.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  padding: 30px;
}

.product {
  flex: 0 1 calc(33.333% - 24px);
  box-sizing: border-box;
}
.total-line {
  margin-bottom: 5px; 
}

.checkout-btn {
  display: block;
  width: 100%;
  padding: 10px 0;
  background-color: #e09ecb;
  color: white;
  font-size: 1.05rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 0; 
  transition: background-color 0.3s ease;
}

.checkout-btn:hover {
  background-color: #c55eb0;
}
.Product-name {
  color: black;
}
