.site__header {
    padding-top: 84px;
    padding-bottom: 7px;
    position: relative;
    z-index: 1;
    background: black;
    text-align: center;
}

.site__header {
    padding-top: 84px;
    padding-bottom: 7px;
    position: relative;
    z-index: 1;
    background: black;
    text-align: center;
}

.cart-icon {
    position: fixed;
    top: 100px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: url('https://icons.veryicon.com/png/o/miscellaneous/flower-mall-color-icon/shopping-cart-114.png')
        no-repeat center center;
    background-size: contain;
    cursor: pointer;

    z-index: 10000000000;
}

.cart-icon .item-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: red;
    color: white;
    border-radius: 50%;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: bold;
}

.product {
    margin: 20px;
    padding: 10px;
    border: 1px solid #ccc;
}

.cart {
    position: fixed;
    top: 88px;
    right: 1px;
    background: #fff;
    border: 1px solid #ccc;
    padding: 10px;
    width: 350px;
    max-height: 500px;
    overflow-y: auto;
    z-index: 10000000000;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.cart-total {
    margin-top: 10px;
    font-weight: bold;
}

.close-cart {
    text-align: right;
}

.checkout-button {
    display: block;
    margin-top: 10px;
    background: green;
    color: white;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

span {
    background: #e6e6e6;
    margin-right: 6px;
}

button {
    background: #2f4ad0;
    transition: all 0.4s ease;
    color: aliceblue;
    padding: 8px;
    border: none;
    font-weight: var(--font-weight-bold);
    margin-top: 5px;
}
