* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    font-size: 16px;
    margin-top: 20px;
}

header {
    background: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    margin-bottom: 50px;
}

.item-count, .total {
    display: inline-block;
    margin-right: 20px;
    font-size: 20px;
    font-weight: bold;
}

.clear-cart {
    background: red;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 20px;
    margin-left: 50px;
}

.container {
    width: 90%;
    display: flex  ;
    margin: auto;
    overflow: hidden;
}

.products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.product-box {
    text-align: center;
    width :300px;
    height :550px;
    background: #fff;
    margin: 20px;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.product-box img {
    width: 100%;
    height: 320px;
    border-radius: 5px;
}

.product-box h3 {
    margin: 10px 0;
    color: #333;
}

.product-box .price {
    color: #333;
    font-size: 20px;
    margin-bottom: 10px;
}

.product-box button {
    background: red;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.5s;
}   