*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    padding-bottom: 100px;
}

#card-box{
    /* background-color: aquamarine; */
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.cards{
    width: 250px;
    height: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;

}
.img-box{
    width: 250px;
    height: 250px;
    border-radius: 8px;
    /* background-image: url("https://i.pinimg.com/736x/db/67/74/db677410736dc3340490ade1e2c6c934.jpg"); */
    /* background-position: center;
    background-size:cover;
    background-repeat: no-repeat; */
}
.img-box img{
    width: 100%;
    height: 100%;
    border-radius: 8px;
    /* object-fit: cover; */
}
.cards i{
    padding-right: 5px;
    /* color: orange; */
}
.cards button{
    margin-top: 10px;
    padding: 5px 25px;
    border-radius: 25px;
    border: 1px solid black;
    background-color: white;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
  
}
button:hover{
    background-color:#e67e22;
    color: white;

}
.details{
    width: 100%;
    display: flex;
    flex-direction: column;

    padding: 15px 0;
}
.details h5{
    color: grey;
    font-size: 13px;
}
.details h4{
    font-size: 15px;
}
.details h6{
    color: #e74c3c;
    font-size: 14px;
}

.cart-details{
    width: 350px;
    height: auto;
    background-color: rgb(243, 243, 243);
    border-radius: 8px;
    padding: 20px;
}

.cart-details h2{
    font-size: 22px;
    font-weight: 700;
    color: #e74c3c;
}

.total-amount button{
    margin-left: 40px;
    padding: 5px 10px ;
    font-weight: 600;
    /* border: none; */
    border-radius: 25px;
}

.cart-items{
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.items h5{
    font-size: 15px;
}
.items h6{
    font-size: 13px;
}
.cart-items i{
    border: 1px solid black;
    padding: 5px 8px;
    cursor: pointer;
    border-radius: 5px;
}

hr{
    color: black;
}
.cart-details h3{
    display: none;
    visibility: hidden;
}

@media print {
    body * {
        visibility: hidden;
    }
    .cart-details, .cart-details * {
        visibility: visible;
    }
    .cart-details {
        position: absolute;
        top: 0;
        left: 0;
    }
    .cart-details h2{
        visibility: hidden;

    }
    .cart-details button{
        visibility: hidden;
    }
    .cart-items i{
        visibility: hidden;
    }
    .cart-details h3{
        display: block;
        visibility: visible;
    }

}