@media (max-width: 767px) {
    #sticky-cart-bar {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
        padding: 10px 16px;
        z-index: 9999;
        border-top: 1px solid #eee;
    }

    #sticky-cart-bar .price {
        font-size: 16px;
        margin-bottom: 8px;
        direction: ltr;
        text-align: left;
    }

    #sticky-cart-bar .price del {
        color: #999;
        margin-left: 10px;
        text-decoration: line-through;
        text-decoration-color:red;
    }

    #sticky-cart-bar .price span.new-price {
        color: #2dcea2;
        font-weight: bold;
    }

    #sticky-cart-bar button {
        background: #2dcea2;
        color: #fff;
        font-size: 16px;
        border: none;
        padding: 10px;
        border-radius: 8px;
        cursor: pointer;
        width: 100%;
    }

    #sticky-cart-bar button:hover {
        opacity: 0.9;
    }
    
    .sticky-cart-button {
    display:flex;
    align-items:center;
    justify-content:center;
    position: relative;
    width: 100%;
    height: 50px;
    background-color: #2dcea2;
    color: #fff;
    border: none;
    font-family: 'IranYekan', sans-serif;
    font-size: 16px;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
}

.sticky-cart-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    line-height: 1;
}

.sticky-cart-text {
    display: inline-block;
}








}
