.cardh1 {
    font-size: 2vh;
    font-weight: 500;
    margin: 2%;
}
.cardh2 {
    font-size: 1.5vh;
    color: #bababa;
    font-weight: 400;
    margin-top: 1%;
}
.sdelcard {
    position: absolute;
    height: 100%;
    right: -100%;
    opacity: 0;
    border-radius: 1vh;
    background-color: #ff0000;
    width: 100%;
    display: flex;
    align-items: center;
    font-size: 2vh;
    font-weight: 500;
    justify-content: flex-start;
    transition: all 0.2s ease-out;
}
.sdelimg {
    width: 4vh;
    margin-left: 4vh;
}
.cart-item.deleting {
    transition: all 0.2s ease-out;
    transform: translateX(-100%);
    opacity: 0;
}
.cart-info {
    display: flex;
    flex-direction: column;
    font-size: 1.2vh;
    gap: 0.2vh;
}
.btncart {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.cartbutton {
    padding: 2vh;
    margin-top: 1vh;
    border: none;
    border-radius: 1vh;
    box-shadow: 0 0 1vh #0e0e0e;
}
.product-card {
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .product-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 5px;
        }

        .product-card h3 {
            margin: 10px 0;
            color: #333;
        }

        .product-price {
            font-size: 1.2em;
            color: #2c3e50;
            font-weight: bold;
            margin: 10px 0;
        }

        /* Стили корзины */
.sc-c-cart {
    position: fixed;
    z-index: 10211;
    bottom: 0;
    left: 0;
    scale: 0.5;
    opacity: 0;
    width: 100%;
    height: 10%;
    color: #ffffff;
    z-index: -1;
    transition: all 0.2s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cart-container {
    color: #ffffff;
    width: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    height: 100%;
    transition: all 0.2s ease-out;
    padding: 1vh 1vh 25vh 1vh;
    border-radius: 0px;
    box-sizing: border-box;
    max-width: 600px;
    backdrop-filter: blur(40px);
}
.sc-c-cart.open {
    transition: all 0.2s ease-out;
    z-index: 10211;
    height: 100%;
    scale: 1;
    opacity: 1;
}
.cart-container-bottom {
    color: #ffffff;
    width: 100%;
    height: fit-content;
    z-index: 10212;
    padding: 20px;
    border-radius: 0px;
    box-sizing: border-box;
    max-width: 600px;
    backdrop-filter: blur(40px);
    box-shadow: 0 -1vh 3vh rgb(0 0 0 / 48%);
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1vh;
    transition: all 0.2s ease-out;
    border-bottom: 0.1vh solid #ffffff12;
}

        .quantity-controls {
            display: flex;
            align-items: center;
            margin-bottom: 1vh;
            user-select: none;
        }

        .quantity-controls button {
            background: none;
            border: none;
            width: 5vh;
            cursor: pointer;
        }

        .cart-total {
            font-size: 1.2em;
            font-weight: bold;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 2px solid #ffae00;
        }
        .btnproddel {
            width: 25px;
            height: 25px;
            cursor: pointer;
            background: none;
            border: none;
        }
        .imgcardcontrols {
            width: 25px;
            height: 25px;
            cursor: pointer;
        }
        .sandq {
            font-size: 2.5vh;
            font-weight: 500;
        }
        .qandc {
            font-size: 1.6vh;
            font-weight: 500;
        }
        .cart-name {
            font-size: 1.6vh;
            font-weight: 500;
            margin-top: 1vh;
            margin-bottom: 1vh;
            max-width: 18vh;
        }
    .prodimg {
    width: 6vh;
    height: 6vh;
    background-size: cover;
    background-position: center;
    margin-right: 1.6vh;
    border-radius: 1vh;
    background-color: black;
    pointer-events: none;
    }
        .lcart {
            display: flex;
            align-items: center; 
        }
        .rcart {
            margin-right: 2vh;
            display: flex;
            pointer-events: none;
        }