```css
/* =====================================
   LEMARA CUSTOMER CSS
   Login / Register / Account / Orders
===================================== */


/* =====================================
   FONT & RESET
===================================== */

@font-face{

    font-family:'Vazirmatn';

    src:url('../fonts/Vazirmatn-Regular.woff2');

}


*{

    box-sizing:border-box;

}


body{

    font-family:Vazirmatn,sans-serif;

    direction:rtl;

    background:#f8f8f8;

    color:#222;

}


/* =====================================
   CUSTOMER CONTAINER
===================================== */

.customer-container{

    width:100%;

    max-width:1100px;

    margin:50px auto;

    padding:0 25px;

}


/* =====================================
   MAIN CUSTOMER BOX
===================================== */

.customer-box{

    width:100%;

    background:#fff;

    border-radius:30px;

    padding:45px;

    margin:0 auto;

    box-shadow:0 15px 40px rgba(0,0,0,.07);

}


.customer-box h1{

    text-align:center;

    font-size:30px;

    margin-bottom:30px;

}


.customer-box h2{

    text-align:center;

    font-size:24px;

    margin-bottom:25px;

}


.customer-box p{

    font-size:15px;

    line-height:2;

}


/* =====================================
   FORMS
===================================== */

.customer-form{

    width:100%;

    max-width:650px;

    margin:auto;

    display:flex;

    flex-direction:column;

    gap:15px;

}


.customer-form input,
.customer-form textarea,
.customer-form select{

    width:100%;

    padding:16px 18px;

    border:1px solid #ddd;

    border-radius:15px;

    font-family:inherit;

    font-size:16px;

    outline:none;

    transition:.3s;

}


.customer-form input:focus,
.customer-form textarea:focus,
.customer-form select:focus{

    border-color:#b08d57;

    box-shadow:0 0 0 3px rgba(176,141,87,.15);

}


.customer-form textarea{

    min-height:120px;

}


.customer-btn{

    width:100%;

    background:#111;

    color:#fff;

    border:none;

    padding:15px;

    border-radius:30px;

    cursor:pointer;

    font-size:16px;

    transition:.3s;

}


.customer-btn:hover{

    background:#b08d57;

}


/* =====================================
   LOGIN / REGISTER LINKS
===================================== */

.auth-links{

    text-align:center;

    margin-top:25px;

}


.auth-links a{

    color:#b08d57;

    font-weight:bold;

}


/* =====================================
   ACCOUNT PAGE
===================================== */

.account-info{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

}


.account-card{

    background:#fafafa;

    border:1px solid #eee;

    border-radius:20px;

    padding:25px;

    text-align:center;

}


.account-card h3{

    font-size:18px;

    margin-bottom:10px;

}


.account-card p{

    color:#666;

    line-height:2;

}


/* =========================================
   CUSTOMER DASHBOARD
========================================= */

.dashboard-cards{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

    margin:30px 0 40px;

}


.dashboard-card{

    background:#fff;

    border:1px solid #eee;

    border-radius:24px;

    padding:25px 18px;

    min-height:150px;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    text-align:center;

    box-shadow:0 8px 25px rgba(0,0,0,.05);

    transition:.3s ease;

}


.dashboard-card:hover{

    transform:translateY(-4px);

    box-shadow:0 14px 35px rgba(0,0,0,.09);

}


.dashboard-card h3{

    margin:0 0 12px;

    font-size:15px;

    font-weight:600;

    color:#777;

}


.dashboard-card strong{

    display:block;

    font-size:25px;

    line-height:1.4;

    color:#222;

    font-weight:700;

}


.dashboard-card span{

    display:block;

    margin-top:4px;

    font-size:13px;

    color:#999;

}


/* =========================================
   WALLET CARD
========================================= */

.dashboard-card:nth-child(3){

    background:#fffaf2;

    border-color:#ead8b8;

}


.dashboard-card:nth-child(3) strong{

    color:#b08d57;

}


.dashboard-card:nth-child(3) a{

    display:inline-block;

    margin-top:10px;

    color:#b08d57;

    text-decoration:none;

    font-weight:bold;

    font-size:13px;

    padding:6px 12px;

    border-radius:12px;

    transition:.3s ease;

}


.dashboard-card:nth-child(3) a:hover{

    background:#b08d57;

    color:#fff;

}


/* =========================================
   ACCOUNT STATUS
========================================= */

.dashboard-card:nth-child(4) strong{

    font-size:18px;

    color:#3b8d5a;

}


/* =====================================
   ORDERS
===================================== */

.orders-list{

    display:flex;

    flex-direction:column;

    gap:20px;

}


.order-card{

    background:#fff;

    border:1px solid #eee;

    border-radius:25px;

    padding:25px;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

}


.order-card h3{

    font-size:20px;

    margin-bottom:15px;

}


.order-card p{

    color:#555;

    line-height:2;

}


.order-status{

    display:inline-block;

    padding:8px 20px;

    border-radius:30px;

    background:#f5f0e8;

    color:#b08d57;

}


.order-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    margin-top:15px;

    padding:12px 25px;

    background:#111;

    color:#fff;

    border-radius:30px;

    text-decoration:none;

}


.order-btn:hover{

    background:#b08d57;

}


/* =====================================
   ORDER BOX
===================================== */

.order-box{

    width:100%;

    max-width:1100px;

    margin:30px auto;

    padding:35px;

    background:#fff;

    border-radius:30px;

    box-shadow:0 15px 40px rgba(0,0,0,.07);

}


.order-box h2{

    text-align:center;

    margin-bottom:25px;

}


.order-box p{

    line-height:2.2;

    color:#555;

}


/* =====================================
   CART ITEM IN ORDER DETAIL
===================================== */

.cart-item{

    display:flex;

    align-items:center;

    gap:25px;

    background:#fafafa;

    padding:20px;

    border-radius:25px;

    margin-bottom:20px;

}


.cart-item img{

    width:120px;

    height:150px;

    object-fit:cover;

    border-radius:20px;

}


/* =====================================
   STATUS COLORS
===================================== */

.status-wait,
.status-ready,
.status-send,
.status-done{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:10px 25px;

    border-radius:30px;

    font-size:15px;

    font-weight:bold;

}


.status-wait{

    background:#f5f0e8;

    color:#b08d57;

}


.status-ready{

    background:#eef6ff;

    color:#2463eb;

}


.status-send{

    background:#fff3e8;

    color:#e67e22;

}


.status-done{

    background:#eaf8ef;

    color:#198754;

}


/* =====================================
   BUTTONS
===================================== */

.admin-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    background:#111;

    color:#fff !important;

    padding:12px 28px;

    border-radius:30px;

    text-decoration:none;

    font-size:15px;

    transition:.3s;

}


.admin-btn:hover{

    background:#b08d57;

}


/* =====================================
   PROFILE PAGE
===================================== */

.page-title{

    text-align:center;

    font-size:30px;

    margin:50px 0 30px;

}


.profile-box{

    width:100%;

    max-width:800px;

    margin:30px auto;

    background:#fff;

    padding:40px;

    border-radius:30px;

    box-shadow:0 15px 40px rgba(0,0,0,.07);

}


.profile-box label{

    display:block;

    margin:15px 0 8px;

    font-size:15px;

    color:#333;

}


.profile-box input,
.profile-box textarea{

    width:100%;

    padding:15px 18px;

    border:1px solid #ddd;

    border-radius:15px;

    font-family:inherit;

    font-size:15px;

}


.profile-box input:focus,
.profile-box textarea:focus{

    border-color:#b08d57;

    outline:none;

}


/* =====================================
   ALERTS
===================================== */

.success-box{

    background:#eef8ee;

    color:#2d7a2d;

    padding:15px;

    border-radius:15px;

    margin-bottom:20px;

    text-align:center;

}


.error-box{

    background:#fff0f0;

    color:#b00000;

    padding:15px;

    border-radius:15px;

    margin-bottom:20px;

    text-align:center;

}


/* =====================================
   FORGOT PASSWORD
===================================== */

.customer-box form{

    max-width:650px;

    margin:auto;

}


.customer-box form input{

    height:55px;

    padding:14px 20px;

    font-size:15px;

    border:1px solid #e5e5e5;

    border-radius:18px;

    background:#fff;

}


.customer-box form button{

    width:100%;

    margin-top:20px;

}


/* =====================================
   PASSWORD
===================================== */

.password-box{

    position:relative;

}


.password-box input{

    width:100%;

}


#togglePassword{

    position:absolute;

    left:15px;

    top:50%;

    transform:translateY(-50%);

    cursor:pointer;

    font-size:20px;

    user-select:none;

}


/* =====================================
   DESKTOP CUSTOMER BUTTON
===================================== */

@media(min-width:769px){

    .customer-btn{

        display:flex !important;

        align-items:center !important;

        justify-content:center !important;

        visibility:visible !important;

        opacity:1 !important;

        height:55px !important;

        width:220px !important;

        margin:20px auto 0 !important;

        background:#111 !important;

        color:#fff !important;

        border:none;

        border-radius:30px;

        font-size:16px;

        cursor:pointer;

    }

}


/* =========================================
   MOBILE CUSTOMER
========================================= */

@media(max-width:768px){

    .customer-container{

        width:100%;

        margin:18px auto;

        padding:0 10px;

    }


    .customer-box{

        width:100%;

        padding:22px 14px;

        border-radius:22px;

    }


    .customer-box h1{

        font-size:22px;

    }


    .customer-box h2{

        font-size:20px;

        margin-bottom:20px;

    }


    /* =====================================
       DASHBOARD CARDS MOBILE
    ===================================== */

    .dashboard-cards{

        display:grid;

        grid-template-columns:repeat(2,minmax(0,1fr));

        gap:12px;

        margin:22px 0 28px;

    }


    .dashboard-card{

        width:100%;

        min-width:0;

        min-height:125px;

        padding:18px 8px;

        border-radius:18px;

        box-shadow:0 5px 18px rgba(0,0,0,.05);

    }


    .dashboard-card h3{

        font-size:13px;

        margin-bottom:9px;

        white-space:nowrap;

    }


    .dashboard-card strong{

        font-size:21px;

        line-height:1.4;

        white-space:nowrap;

    }


    .dashboard-card span{

        font-size:12px;

        margin-top:3px;

    }


    /* کیف پول در موبایل */

    .dashboard-card:nth-child(3){

        min-height:135px;

    }


    .dashboard-card:nth-child(3) strong{

        font-size:20px;

    }


    .dashboard-card:nth-child(3) a{

        margin-top:8px;

        font-size:12px;

        padding:5px 10px;

    }


    /* وضعیت حساب */

    .dashboard-card:nth-child(4) strong{

        font-size:17px;

    }


    /* =====================================
       BUTTONS MOBILE
    ===================================== */

    .admin-btn{

        width:100%;

        margin:8px 0;

        padding:14px;

    }


    /* =====================================
       PROFILE MOBILE
    ===================================== */

    .profile-box{

        padding:20px;

        border-radius:20px;

    }


    .profile-box input,
    .profile-box textarea{

        font-size:16px;

    }


    /* =====================================
       ORDERS MOBILE
    ===================================== */

    .order-card,
    .order-box{

        padding:18px;

        border-radius:20px;

    }


    .cart-item{

        flex-direction:column;

        text-align:center;

    }


    .cart-item img{

        width:150px;

        height:180px;

    }

}


/* =========================================
   MOBILE SMALL DEVICES
========================================= */

@media(max-width:480px){

    .customer-container{

        padding:0 8px;

    }


    .customer-box{

        padding:20px 11px;

        border-radius:20px;

    }


    .dashboard-cards{

        gap:9px;

        margin:20px 0 25px;

    }


    .dashboard-card{

        min-height:118px;

        padding:16px 6px;

        border-radius:17px;

    }


    .dashboard-card h3{

        font-size:12px;

        margin-bottom:8px;

    }


    .dashboard-card strong{

        font-size:19px;

    }


    .dashboard-card span{

        font-size:11px;

    }


    .dashboard-card:nth-child(3){

        min-height:128px;

    }


    .dashboard-card:nth-child(3) strong{

        font-size:18px;

    }


    .dashboard-card:nth-child(3) a{

        font-size:11px;

        padding:5px 8px;

    }


    .dashboard-card:nth-child(4) strong{

        font-size:16px;

    }

}
```
/* =========================================================
   LEMARA ORDER DETAIL - FINAL UI
   ========================================================= */

.order-box {
    width: calc(100% - 40px);
    max-width: 1000px;
    margin: 30px auto;
    padding: 32px;
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 12px 35px rgba(0,0,0,.06);
    border: 1px solid #f0f0f0;
}

.order-box h2 {
    font-size: 22px;
    margin: 0 0 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    text-align: right;
}

.order-box p {
    margin: 10px 0;
    line-height: 2;
}


/* =========================================================
   ORDER PRODUCT
   ========================================================= */

.order-box .cart-item {
    display: flex;
    align-items: center;
    gap: 25px;
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 22px;
    padding: 18px;
    margin-bottom: 15px;
    transition: .25s ease;
}

.order-box .cart-item:hover {
    border-color: #e4d4ba;
    box-shadow: 0 8px 20px rgba(0,0,0,.05);
}

.order-box .cart-item img {
    width: 115px;
    height: 145px;
    object-fit: cover;
    border-radius: 18px;
    flex-shrink: 0;
}

.order-box .cart-item > div {
    flex: 1;
}

.order-box .cart-item h3 {
    margin: 0 0 12px;
    font-size: 18px;
}

.order-box .cart-item p {
    margin: 5px 0;
    color: #666;
    font-size: 14px;
}

.order-box .cart-item p:last-child {
    color: #222;
    font-weight: bold;
}


/* =========================================================
   ORDER TOTAL
   ========================================================= */

.order-box > h2:last-of-type {
    margin-top: 25px;
    padding: 20px;
    background: #fffaf2;
    border: 1px solid #ead8b8;
    border-radius: 18px;
    text-align: center;
    color: #b08d57;
}

.order-box > h2:nth-last-of-type(2) {
    margin-top: 25px;
    text-align: center;
    border-bottom: none;
    padding-bottom: 0;
}


/* =========================================================
   ORDER ACTIONS
   ========================================================= */

.order-actions {
    width: calc(100% - 40px);
    max-width: 1000px;
    margin: 35px auto 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.order-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 13px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-family: inherit;
    font-size: 14px;
    font-weight: bold;
    transition: .25s ease;
}

.invoice-btn {
    background: #111;
    color: #fff !important;
}

.customer-btn {
    background: #f5f0e8;
    color: #8d6b38 !important;
}

.all-btn {
    background: #eee;
    color: #333 !important;
}

.delete-order-btn {
    background: #fff0f0;
    color: #c0392b !important;
}

.order-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 18px rgba(0,0,0,.08);
}


/* =========================================================
   STATUS
   ========================================================= */

.order-box .status-wait,
.order-box .status-ready,
.order-box .status-send,
.order-box .status-done {
    min-width: 150px;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .order-box {
        width: calc(100% - 20px);
        margin: 18px auto;
        padding: 20px 15px;
        border-radius: 22px;
    }

    .order-box h2 {
        font-size: 19px;
        margin-bottom: 20px;
    }

    .order-box p {
        font-size: 14px;
        line-height: 2;
    }

    .order-box .cart-item {
        flex-direction: row;
        align-items: flex-start;
        gap: 14px;
        padding: 13px;
        border-radius: 18px;
    }

    .order-box .cart-item img {
        width: 90px;
        height: 115px;
        border-radius: 14px;
    }

    .order-box .cart-item h3 {
        font-size: 15px;
        margin-bottom: 8px;
        line-height: 1.8;
    }

    .order-box .cart-item p {
        font-size: 13px;
        margin: 3px 0;
        line-height: 1.8;
    }

    .order-box > h2:last-of-type {
        font-size: 18px;
        padding: 16px 10px;
    }

    .order-box > h2:nth-last-of-type(2) {
        font-size: 18px;
    }

    .order-actions {
        width: calc(100% - 20px);
        margin: 25px auto 35px;
        flex-direction: column;
        gap: 10px;
    }

    .order-action-btn {
        width: 100%;
        min-width: 0;
        padding: 13px 15px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .order-box {
        width: calc(100% - 16px);
        padding: 17px 12px;
    }

    .order-box .cart-item {
        gap: 10px;
        padding: 10px;
    }

    .order-box .cart-item img {
        width: 78px;
        height: 100px;
    }

    .order-box .cart-item h3 {
        font-size: 14px;
    }

    .order-box .cart-item p {
        font-size: 12px;
    }

    .order-box > h2:last-of-type {
        font-size: 17px;
    }

}
/* =========================================
   ORDER STATUS NOTIFICATION
========================================= */

.order-notification{

    margin-top:15px;

    padding:14px 18px;

    background:#fffaf2;

    border:1px solid #ead8b8;

    border-radius:15px;

    color:#7a623d;

    font-size:14px;

    line-height:2;

    text-align:center;

}