body {
  font-family: Arial, sans-serif;
  background:#eeeeee;
  margin: 0;
}
.mainpage{
   background: linear-gradient(
  to bottom right,
  #FFAB76 20%,
  #FDD7AA 50%,
  #F3C583 100%
);
}
header {
  background: #222;
  color: white;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-icon {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

.products {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
  row-gap: 14px;
  justify-content: center;
  margin-top: 40px;
}

.card {
  background: #222;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  width: 23%;
  height: 420px;
  margin-bottom: 20px;
  color: white;
  position: relative;
   /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
    transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease;
  will-change: transform;
}
.card:hover{
  top: -10px;
  cursor: pointer;
transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}
.text{
  padding-bottom: 0px;
}
img{
  padding-bottom: 0;
  width: 100%;
  height: 65%;
}
.bangles{
  height: 65%;
}
button {
  padding: 12px 15px;
  border: none;
  background: #FF8A3D ;
  color:black;
  font-size: larger;
  font-weight: bolder;
  cursor: pointer;
  border-radius: 25px;
}
button:hover{
  background-color: #222;
  color: #FF8A3D;
  border: 2px solid #FF8A3D;
}
.cart-page {
  width: 60%;
  margin: 40px auto;
  background: white;
  padding: 20px;
  border-radius: 20px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  /* gap: 50px; */
}
.item-info {
  display: flex;
  gap: 130px;
  /* gap: 20%; */
  align-items: center;
}
.checkout{
 display: flex;
  justify-content: center;
  border-radius: 23px;
}
.checkout button:hover{
  border: 3px solid #FF8A3D;
  
}
@media (max-width: 600px) {
   .cart-page{
    width: 90%;
    padding: 10px;
   }
  .cart-item {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-bottom: 30px;
  }

  /* Row 1 */
  .item-info {
    justify-content: space-between;
  }

  /* Row 2 (right side) */
  .jsbuttons {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
  }
}

.qty-btn{
  background-color: white;
  padding: 4px 10px;
}
.qty-btn:hover{
  color: black;
  background-color: white;
  border: none;
}
.jsbuttons{
  display: flex;
  height: 37px;
}
.box{
  border: 1px solid black;
  gap: 15px;
  padding: 2px;
  border-radius: 7px;
}
.remove{
  background-color: white;
font-weight: lighter;
font-size: 14px;
}
.remove:hover{
  cursor : pointer;
  color:black;
  font-weight: bold;
  background: white;
  border: none;
}
.back{
  background-color: white;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 10px;
  font-weight: 500;
  color: black;
}
.last{
  display: flex;
  justify-content: center;
  padding-bottom: 35px;
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
}
@media (max-width:420px) {
  .card{
  width: 75%;
    }
}
