﻿.custom-cart-offcanvas {
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    height: 100%;
    background-color: #fff;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: left 0.3s ease-in-out;
    overflow-y: auto;
    padding: 20px;
}

    .custom-cart-offcanvas.open {
        left: 0;
    }

.custom-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.custom-cart-close {
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
}

.custom-cart-product {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.custom-cart-product-details {
    flex: 1;
    margin-right: 15px;
    text-align: right;
}

.custom-cart-title {
    font-size: 14px;
    margin: 0 0 5px 0;
}

.custom-cart-info {
    font-size: 13px;
    color: #555;
}

.custom-cart-img-container img {
    width: 60px;
    height: auto;
    border-radius: 4px;
}

.custom-cart-total {
    margin-top: 20px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #ddd;
    padding-top: 15px;
}

.custom-cart-actions {
    margin-top: 20px;
    text-align: center;
}

.custom-cart-toggle {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    line-height: 1;
    padding-right: 1rem;
}

    .custom-cart-toggle i {
        font-size: 3rem; /* سایز آیکون */
        position: relative;
    }

.custom-cart-count {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #445f84;
    color: white;
    font-size: 0.8rem;
    padding: 3px 6px;
    border-radius: 50%;
}

.custom-cart-label {
    font-size: 1.1rem;
    text-align: center;
    color: #777;
}
