#cart-container {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    transition: transform 0.3s ease;
    z-index: 1000001;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
}

#cart-container.hidden {
    transform: translateX(100%);
}

.cart-panel {
    padding: 40px 23px 20px 23px;
    transform: translateX(0);
}

.cart-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 29px;
}

.cart-header-name {
    margin: 0;
    font-size: 24px;
    font-weight: 500;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    overflow-y: auto;
    padding-bottom: 38px;
}

.cart-item-content {
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart-item-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 80%;
    gap: 16px;
}

.product-img-cart {
    max-height: 63px;
    height: 63px;
    object-fit: cover;
    object-position: 50% 50%;
    border-radius: 4px;
}

.cart-item-top-center {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
}

.cart-item-name {
    font-size: 18px;
    font-weight: 400;
    line-height: 126%;
    vertical-align: middle;
}

.cart-item-format {
    color: rgba(43, 43, 43, 0.5);
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
}

.cart-product-quantity-control {
    width: max-content;
    border: 1px solid #8A8A8A;
    border-radius: 1px;
    padding: 7px 5px;
}

.cart-product-quantity-decrease,
.cart-product-quantity-increase {
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
}

.cart-product-quantity {
    padding: 0 24px;
    color: #8A8A8A;
    font-weight: 500;
    font-size: 16px;
}

.cart-item-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.cart-item-bottom-price-name {
    font-size: 18px;
    line-height: 150%;
    font-weight: 500;
}

.cart-item-price-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.cart-item-price-discount {
    text-decoration: line-through;
    color: rgba(43, 43, 43, 0.5);
    font-weight: 300;
    font-size: 18px;
    line-height: 32px;
}

.cart-item-price {
    font-size: 18px;
    line-height: 32px;
    font-weight: 600;
}

.cart-item-thrash {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
}

.header-bottom {
    padding-top: 20px;
    flex-shrink: 0;
    margin-top: auto;
    border-top: 1px solid rgba(0, 0, 0, 0.3);

    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.cart-full-price {
    display: flex;
    flex-direction: column;
}

.cart-full-price-text {
    font-size: 18px;
    font-weight: 500;
    line-height: 150%;
}

.cart-full-price-value {
    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
}

.cart-button-to-buy {
    background-color: rgba(146, 106, 84, 1);
    color: #FFFFFF;
    border-radius: 4px;
    border: none;

    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 600;
}

@media (min-width: 576px) {
    #cart-container {
        width: 70vw;
    }
}

@media (min-width: 768px) {
    .cart-panel {
        padding: 64px 44px 47px 44px;
    }

    #cart-container {
        width: 66.5vw;
    }

    .cart-header-name {
        font-size: 48px;
    }

    .cart-item-content {
        padding: 30px;
    }

    .cart-item-thrash {
        top: 30px;
        right: 30px;
    }

    .cart-item-top {
        gap: 20px;
    }

    .product-img-cart {
        height: 84px;
    }

    .cart-full-price-text {
        font-size: 20px;
    }

    .cart-full-price-value {
        font-size: 24px;
    }

    .cart-button-to-buy {
        padding: 0 31px;

    }
}

@media (min-width: 992px) {
    #cart-container {
        width: 40vw;
    }
}

@media (min-width: 1200px) {
    #cart-container {
        width: 55vw;
    }

    .cart-panel {
        padding: 64px 60px 62px 60px;
    }

    .cart-item-top,
    .cart-items {
        gap: 30px;
    }

    .cart-item-name,
    .cart-item-bottom-price-name,
    .cart-item-price-discount,
    .cart-item-price {
        font-size: 20px;
    }

    .cart-item-format {
        font-size: 16px;
    }
}

@media (min-width: 1730px) {
    #cart-container {
        width: 49vw;
        max-width: 849px;
    }

    .cart-panel {
        padding: 64px 100px 62px 100px;
    }
}
