.mobile-sticky-bar {
    display: none;
}

body.no-scroll .mobile-sticky-bar {
    display: none !important;
}

@media (max-width: 900px) {
    .mobile-sticky-bar {
        display: flex;
        flex-direction: column;
        gap: 15px;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: #fce6e4;
        padding: 15px;
        box-shadow: 0 -4px 15px rgba(0,0,0,0.1);
        z-index: 9999;
        box-sizing: border-box;
        transform: translateY(100%);
        transition: transform 0.3s ease-in-out;
    }

    .mobile-sticky-bar.visible {
        transform: translateY(0);
    }

    .sticky-info {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .sticky-img {
        width: 65px;
        height: 65px;
        border-radius: 10px;
        object-fit: cover;
        flex-shrink: 0;
    }

    .sticky-text {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .sticky-title {
        font-size: 15px;
        font-weight: 800;
        color: #000;
        line-height: 1.3;
        margin: 0;
    }

    .sticky-price {
        display: flex;
        gap: 8px;
        align-items: baseline;
    }

    .sticky-old-price {
        font-size: 14px;
        color: #000;
        text-decoration: line-through;
        font-weight: 600;
    }

    .sticky-new-price {
        font-size: 16px;
        color: #000;
        font-weight: 800;
    }

    .sticky-add-btn {
        width: 100%;
        background-color: #E88597;
        color: black;
        font-size: 16px;
        font-weight: 800;
        padding: 15px;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        text-transform: uppercase;
        transition: background-color 0.3s ease;
        text-align: center;
    }

    .sticky-add-btn:active {
        background-color: #d67486;
    }
}