﻿#side-cart {
    position: fixed;
    top: 0;
    right: -400px; 
    width: 380px;
    max-width: 90%;
    height: 100%;
    background-color: #fff;
    box-shadow: -5px 0 15px rgba(0,0,0,0.15);
    z-index: 1050;
    transition: right 0.4s ease-in-out;
    display: flex;
    flex-direction: column;
    font-family: 'Cairo', sans-serif; 
    overflow:auto;
}

    #side-cart.open {
        right: 0;
    }

#cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
}

    #cart-overlay.open {
        opacity: 1;
        visibility: visible;
    }


/* --- هيدر السلة --- */
#side-cart .cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e9ecef;
    flex-shrink: 0;
}

    #side-cart .cart-header .cart-title {
        margin: 0;
        font-size: 1.25rem;
        font-weight: 600;
        color: #212529;
    }

    #side-cart .cart-header .close-cart-btn {
        background: none;
        border: none;
        font-size: 2.2rem;
        color: #6c757d;
        line-height: 1;
        padding: 0;
        cursor: pointer;
    }

        #side-cart .cart-header .close-cart-btn:hover {
            color: #000;
        }


/* --- محتوى السلة --- */
#side-cart .cart-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 0.5rem 1.5rem;
}

#side-cart .cart-item {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

    #side-cart .cart-item:last-child {
        border-bottom: none;
    }

#side-cart .cart-item-img img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 0.25rem;
    border: 1px solid #eee;
}

#side-cart .cart-item-details {
    flex-grow: 1;
    margin: 0 1rem;
    text-align: right; /* ضمان محاذاة النص لليمين */
}

    #side-cart .cart-item-details .item-name {
        font-weight: 600;
        margin-bottom: 0.25rem;
        color: #212529;
    }

    #side-cart .cart-item-details .item-price {
        color: #6c757d;
        font-size: 0.9rem;
        margin: 0;
    }

#side-cart .cart-item .btn-remove {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #dc3545;
    background-color: transparent;
    color: #dc3545;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.2s ease;
    cursor: pointer;
    flex-shrink: 0; /* منع الزر من التقلص */
}

    #side-cart .cart-item .btn-remove:hover {
        background-color: #dc3545;
        color: #fff;
    }

#side-cart .cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: #6c757d;
}


#side-cart .cart-footer {
    padding: 1.5rem;
    background-color: #fff;
    border-top: 1px solid #e9ecef;
    flex-shrink: 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.06);
}

#side-cart .summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

#side-cart .summary-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

    #side-cart .summary-actions .btn {
        padding: 0.75rem;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 0.5rem;
    }

#cart-count{
    position:absolute;
    top:-10px;
    left:35px;
    padding:5px;
    display:flex;
    text-align:center;
    align-items:center;
    justify-content:center;
    font-family:Arial;
    border-radius:50%;
    width:25px;
    height:25px;
}