.djorder-container{
    margin:0 24px !important;
}
@media (max-width:768px){
    .djorder-container{
        margin:0 0 30px 0 !important;
    }
}
/* DJ Order menu app style */
.djorder-menu-app{
    margin:24px 0;
    background:#fff;
    border:0;
    box-shadow:none;
}
.djorder-menu-title{
    display:none;
}
.djorder-menu-layout{
    display:grid;
    grid-template-columns:150px 1fr;
    gap:22px;
    align-items:start;
}
.djorder-category-nav{
    position:sticky;
    top:80px;
    height:calc(100vh - 120px);
    overflow:auto;
    background:#f5f5f5;
    border-radius:0;
    border-right:1px solid #eee;
}
.djorder-category-link{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:78px;
    padding:10px;
    color:#555;
    background:#f5f5f5;
    text-decoration:none;
    font-size:22px;
    font-weight:500;
    border-bottom:1px solid #eee;
}
.djorder-category-link.is-active,
.djorder-category-link:hover{
    background:#fff;
    color:#111;
    font-weight:700;
}
.djorder-menu-content{
    padding:0 12px 90px;
}
.djorder-category-section{
    scroll-margin-top:90px;
    padding-bottom:8px;
}
.djorder-category-title{
    font-size:28px;
    line-height:1.2;
    font-weight:800;
    color:#111;
    margin:0 0 18px;
}
.djorder-menu-item{
    display:grid;
    grid-template-columns:170px 1fr;
    gap:18px;
    align-items:start;
    position:relative;
    padding:18px 64px 20px 0;
    border-bottom:1px solid #eee;
}
.djorder-menu-item img{
    width:170px;
    height:130px;
    object-fit:cover;
    border-radius:12px;
}
.djorder-menu-info{
    min-width:0;
}
.djorder-menu-top{
    display:block;
}
.djorder-menu-name{
    font-size:26px;
    line-height:1.25;
    font-weight:800;
    color:#222;
    margin:0 0 8px;
}
.djorder-menu-desc{
    display:block;
    max-width:100%;
    margin:0 0 16px;
    padding:2px 8px;
    color:#666;
    background:#f3f3f3;
    border-radius:6px;
    font-size:18px;
    line-height:1.35;
    white-space:normal;
    overflow:visible;
    text-overflow:clip;
    word-break:normal;
    overflow-wrap:break-word;
}
.djorder-menu-bottom{
    display:flex;
    align-items:center;
    gap:10px;
    margin-top:18px;
}
.djorder-menu-price{
    color:#ef3b2d;
    font-size:30px;
    line-height:1;
    font-weight:900;
    margin:0;
    padding-right:10%;
}
.djorder-add-form{
    position:static !important;
    right:auto !important;
    bottom:auto !important;
    margin:0 !important;
    display:inline-flex;
    align-items:center;
}
.djorder-add-form input[name="qty"]{
    display:none;
}
.djorder-add-button{
    width:32px;
    height:32px;
    border-radius:50% !important;
    padding:0 !important;
    border:0 !important;
    background:#ffd400 !important;
    color:#111 !important;
    font-size:0 !important;
    line-height:32px !important;
    box-shadow:none !important;
    position:relative;
}
.djorder-add-button::before{
    content:"+";
    display:block;
    font-size:30px;
    line-height:26px;
    font-weight:900;
    text-align:center;
}
.djorder-added-pop{
    position:fixed;
    z-index:99999;
    left:50%;
    bottom:92px;
    transform:translateX(-50%);
    background:#16a34a;
    color:#fff;
    padding:12px 22px;
    border-radius:999px;
    box-shadow:0 8px 22px rgba(0,0,0,.18);
    font-weight:700;
    opacity:0;
    pointer-events:none;
    transition:all .25s ease;
}
.djorder-added-pop.is-visible{
    opacity:1;
    bottom:110px;
}
.djorder-fly-dot{
    position:fixed;
    z-index:99998;
    width:14px;
    height:14px;
    border-radius:50%;
    background:#ffd400;
    pointer-events:none;
    transition:all .65s cubic-bezier(.2,.8,.2,1);
}
@media (max-width:768px){
    .djorder-menu-app{
        margin:16px 0;
    }
    .djorder-menu-layout{
        grid-template-columns:96px 1fr;
        gap:12px;
    }
    .djorder-category-nav{
        top:70px;
        height:calc(100vh - 140px);
    }
    .djorder-category-link{
        min-height:68px;
        font-size:17px;
    }
    .djorder-menu-content{
        padding:0 8px 90px;
    }
    .djorder-category-title{
        font-size:22px;
        margin-bottom:12px;
    }
    .djorder-menu-item{
        grid-template-columns:96px 1fr;
        gap:10px;
        padding:14px 46px 16px 0;
    }
    .djorder-menu-item img{
        width:96px;
        height:84px;
        border-radius:10px;
    }
    .djorder-menu-name{
        font-size:18px;
        margin-bottom:5px;
    }
    .djorder-menu-desc{
        font-size:14px;
        margin-bottom:8px;
        padding:1px 6px;
    }
    .djorder-menu-bottom{
        gap:10px;
        margin-top:10px;
    }
    .djorder-menu-price{
        font-size:22px;
    }
    .djorder-add-form{
        position:static !important;
        right:auto !important;
        bottom:auto !important;
        margin:0 !important;
    }
    .djorder-add-button{
        width:32px;
        height:32px;
        line-height:32px !important;
    }
    .djorder-add-button::before{
        font-size:26px;
        line-height:32px;
    }
}
/* Order detail */
.djorder-items-table th,
.djorder-items-table td{
    vertical-align:middle;
}
.djorder-status-row th,
.djorder-status-row td{
    background:#f0fdf4;
    font-size:20px;
    font-weight:700;
}
.djorder-status-badge{
    display:inline-block;
    padding:8px 18px;
    border-radius:999px;
    background:#16a34a;
    color:#fff;
    font-size:18px;
    font-weight:700;
}
.djorder-status-new{
    background:#2563eb;
}
.djorder-status-accepted{
    background:#16a34a;
}
.djorder-status-preparing,
.djorder-status-processing{
    background:#f59e0b;
}
.djorder-status-delivering{
    background:#7c3aed;
}
.djorder-status-delivered,
.djorder-status-completed{
    background:#2563eb !important;
}
.djorder-status-cancelled{
    background:#dc2626;
}
.djorder-map-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:130px;
    height:42px;
    padding:0 18px;
    border-radius:8px;
    background:#4285F4;
    color:#fff !important;
    text-decoration:none !important;
    font-weight:600;
    border:none;
}
.djorder-map-btn:hover{
    background:#3367D6;
    color:#fff !important;
}
.djorder-wa-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:130px;
    height:42px;
    padding:0 18px;
    border-radius:8px;
    background:#25D366;
    color:#fff !important;
    text-decoration:none !important;
    font-weight:600;
    border:none;
}
.djorder-wa-btn:hover{
    background:#1EBE57;
    color:#fff !important;
}
.djorder-share-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:40px;
    padding:0 16px;
    border-radius:8px;
    background:#25D366;
    color:#fff !important;
    text-decoration:none !important;
    font-weight:600;
}
.djorder-container a.btn.btn-danger[href*="google.com/maps"],
.djorder-container a.btn.btn-danger[href*="google.com/maps/search"]{
    background:#f59e0b !important;
    border-color:#f59e0b !important;
    color:#fff !important;
}
.djorder-container a.btn.btn-danger[href*="google.com/maps"]:hover,
.djorder-container a.btn.btn-danger[href*="google.com/maps/search"]:hover{
    background:#d97706 !important;
    border-color:#d97706 !important;
    color:#fff !important;
}
@media (max-width:768px){
    .djorder-map-btn,
    .djorder-wa-btn{
        flex:1;
        min-width:120px;
    }
}
/* Admin commission panel */
.djorder-admin-commissions{
    max-width:100%;
}
.djorder-threshold-form{
    display:flex;
    gap:10px;
    align-items:center;
    flex-wrap:wrap;
    margin:15px 0 24px;
}
.djorder-threshold-form input{
    max-width:140px;
}
.djorder-table-wrap{
    width:100%;
    overflow-x:auto;
    margin-bottom:180px;
}
.djorder-compact-table{
    width:100%;
    table-layout:fixed;
    font-size:13px;
}
.djorder-compact-table th,
.djorder-compact-table td{
    padding:8px 8px;
    vertical-align:middle;
    line-height:1.35;
}
.djorder-compact-table th{
    white-space:normal !important;
    overflow:visible;
}
.djorder-compact-table td{
    word-break:normal;
    overflow-wrap:normal;
}
.djorder-th-label{
    font-size: 0.85rem;
    display:block;
    white-space:normal !important;
    word-break:normal;
    overflow-wrap:normal;
    line-height:1.25;
}
.djorder-summary-table th:nth-child(1),
.djorder-summary-table td:nth-child(1){
    width:12%;
}
.djorder-summary-table th:nth-child(2),
.djorder-summary-table td:nth-child(2){
    width:13%;
}
.djorder-summary-table th:nth-child(3),
.djorder-summary-table td:nth-child(3){
    width:12%;
}
.djorder-summary-table th:nth-child(4),
.djorder-summary-table td:nth-child(4){
    width:12%;
}
.djorder-summary-table th:nth-child(5),
.djorder-summary-table td:nth-child(5){
    width:13%;
}
.djorder-summary-table th:nth-child(6),
.djorder-summary-table td:nth-child(6){
    width:12%;
}
.djorder-summary-table th:nth-child(7),
.djorder-summary-table td:nth-child(7){
    width:12%;
}
.djorder-summary-table th:nth-child(8),
.djorder-summary-table td:nth-child(8){
    width:14%;
}
.djorder-history-table{
    table-layout:fixed;
    width:100%;
    font-size:12px;
}
.djorder-history-table th:nth-child(1),
.djorder-history-table td:nth-child(1){
    width:5%;
}
.djorder-history-table th:nth-child(2),
.djorder-history-table td:nth-child(2){
    width:7%;
}
.djorder-history-table th:nth-child(3),
.djorder-history-table td:nth-child(3){
    width:11%;
}
.djorder-history-table th:nth-child(4),
.djorder-history-table td:nth-child(4){
    width:8%;
}
.djorder-history-table th:nth-child(5),
.djorder-history-table td:nth-child(5){
    width:9%;
}
.djorder-history-table th:nth-child(6),
.djorder-history-table td:nth-child(6){
    width:10%;
}
.djorder-history-table th:nth-child(7),
.djorder-history-table td:nth-child(7){
    width:9%;
}
.djorder-history-table th:nth-child(8),
.djorder-history-table td:nth-child(8){
    width:12%;
}
.djorder-history-table th:nth-child(9),
.djorder-history-table td:nth-child(9){
    width:7%;
}
.djorder-history-table th:nth-child(10),
.djorder-history-table td:nth-child(10){
    width:7%;
}
.djorder-history-table th:nth-child(11),
.djorder-history-table td:nth-child(11){
    width:15%;
}
.djorder-settlement-needed{
    background:#fff1f2;
}
.djorder-alert-badge,
.djorder-ok-badge{
    text-align: center;
    display:inline-block;
    padding:4px 8px;
    border-radius:999px;
    color:#fff;
    font-weight:700;
    font-size:12px;
    line-height:1.2;
}
.djorder-alert-badge{
    background:#dc2626;
}
.djorder-ok-badge{
    background:#2563eb;
}
.djorder-actions-cell form{
    display:block;
    margin:0 0 6px 0;
}
.djorder-actions-cell form:last-child{
    margin-bottom:0;
}
.btn-sm{
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 30px;
}
@media (max-width:1366px){
    .djorder-compact-table{
        font-size:12px;
    }
    .djorder-history-table{
        font-size:11px;
    }
    .djorder-compact-table th,
    .djorder-compact-table td{
        padding:6px 6px;
		font-size: 0.85rem;
    }
}
/* Admin vendor commission settings */
.djorder-admin-vendor-commissions{
    max-width:100%;
}
.djorder-top-actions{
    display:flex;
    gap:8px;
    flex-wrap:wrap;
    margin-bottom:18px;
}
.djorder-help-text{
    color:#555;
    margin-bottom:16px;
}
.djorder-vendor-commission-table{
    width:100%;
    table-layout:fixed;
    font-size:13px;
}
.djorder-vendor-commission-table th,
.djorder-vendor-commission-table td{
    vertical-align:middle;
    padding:8px 10px;
    line-height:1.35;
}
.djorder-vendor-commission-table th{
    white-space:normal !important;
    overflow:visible;
}
.djorder-vendor-commission-table td{
    word-break:normal;
    overflow-wrap:normal;
}
.djorder-vendor-commission-table th:nth-child(1),
.djorder-vendor-commission-table td:nth-child(1){
    width:12%;
}
.djorder-vendor-commission-table th:nth-child(2),
.djorder-vendor-commission-table td:nth-child(2){
    width:18%;
}
.djorder-vendor-commission-table th:nth-child(3),
.djorder-vendor-commission-table td:nth-child(3){
    width:18%;
}
.djorder-vendor-commission-table th:nth-child(4),
.djorder-vendor-commission-table td:nth-child(4){
    width:16%;
}
.djorder-vendor-commission-table th:nth-child(5),
.djorder-vendor-commission-table td:nth-child(5){
    width:13%;
}
.djorder-vendor-commission-table th:nth-child(6),
.djorder-vendor-commission-table td:nth-child(6){
    width:11%;
}
.djorder-vendor-commission-table th:nth-child(7),
.djorder-vendor-commission-table td:nth-child(7){
    width:12%;
}
.djorder-commission-value{
    max-width:130px;
}
.djorder-muted{
    color:#777;
    font-size:12px;
    margin-top:3px;
}
.djorder-checkbox-label{
    display:flex;
    gap:6px;
    align-items:center;
    margin:0;
}
.djorder-save-bar{
    margin-top:16px;
}
@media (max-width:1366px){
    .djorder-vendor-commission-table{
        font-size:12px;
    }
    .djorder-vendor-commission-table th,
    .djorder-vendor-commission-table td{
        padding:6px 8px;
    }
}
/* Cart checkout address location */
.djorder-address-row{
    display:flex;
    gap:10px;
    align-items:stretch;
}
.djorder-address-row .djorder-address-input{
    flex:1;
    height:48px;
}
.djorder-location-btn{
    min-width:220px;
    height:48px;
    white-space:normal;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    background:#f59e0b !important;
    border-color:#f59e0b !important;
    color:#fff !important;
    font-weight:600;
}
.djorder-location-btn:hover,
.djorder-location-btn:focus{
    background:#d97706 !important;
    border-color:#d97706 !important;
    color:#fff !important;
}
.djorder-location-pin-icon{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    line-height:1;
}
.djorder-location-status{
    margin-top:8px;
    color:#666;
    font-size:14px;
}
.djorder-location-coordinates{
    margin-top:6px;
    color:#0f5132;
    font-weight:600;
    font-size:14px;
}
@media (max-width:768px){
    .djorder-address-row{
        flex-direction:column;
    }
    .djorder-location-btn{
        width:100%;
    }
}
/* Vendor dashboard */
.djorder-vendor-dashboard h2{
    margin-top:28px;
}
.djorder-vendor-dashboard-table{
    width:100%;
    table-layout:fixed;
    font-size:13px;
}
.djorder-vendor-dashboard-table th,
.djorder-vendor-dashboard-table td{
    vertical-align:middle;
    padding:8px;
    line-height:1.35;
    word-break:normal;
    overflow-wrap:normal;
}
.djorder-vendor-dashboard-actions{
    display:flex;
    gap:6px;
    flex-wrap:wrap;
}
.djorder-vendor-dashboard-actions .btn{
    white-space:nowrap;
}
@media (max-width:768px){
    .djorder-vendor-dashboard-table{
        table-layout:auto;
        min-width:900px;
    }
}
/* Vendor orders */
.djorder-vendor-orders-table{
    width:100%;
    table-layout:fixed;
    font-size:13px;
}
.djorder-vendor-orders-table th,
.djorder-vendor-orders-table td{
    vertical-align:middle;
    padding:8px;
    line-height:1.35;
}
.djorder-vendor-orders-table th:nth-child(1),
.djorder-vendor-orders-table td:nth-child(1){
    width:10%;
}
.djorder-vendor-orders-table th:nth-child(2),
.djorder-vendor-orders-table td:nth-child(2){
    width:20%;
}
.djorder-vendor-orders-table th:nth-child(3),
.djorder-vendor-orders-table td:nth-child(3){
    width:20%;
}
.djorder-vendor-orders-table th:nth-child(4),
.djorder-vendor-orders-table td:nth-child(4){
    width:10%;
}
.djorder-vendor-orders-table th:nth-child(5),
.djorder-vendor-orders-table td:nth-child(5){
    width:20%;
}
.djorder-vendor-orders-table th:nth-child(6),
.djorder-vendor-orders-table td:nth-child(6){
    width:10%;
}
.djorder-vendor-orders-table th:nth-child(7),
.djorder-vendor-orders-table td:nth-child(7){
    width:10%;
}
.djorder-vendor-order-items{
    display:flex;
    flex-direction:column;
    gap:5px;
}
.djorder-vendor-order-item-line{
    display:block;
    line-height:1.35;
    white-space:normal;
}
.djorder-vendor-order-actions{
    display:flex;
    flex-direction:column;
    gap:6px;
    align-items:flex-start;
}
.djorder-vendor-order-actions .btn,
.djorder-vendor-order-actions button{
    width:110px;
    min-width:110px;
    max-width:110px;
    text-align:center;
    justify-content:center;
}
.djorder-vendor-order-actions .btn-info{
    background:#2563eb !important;
    border-color:#2563eb !important;
    color:#fff !important;
}
.djorder-vendor-order-actions form{
    margin:0;
}
@media (max-width:768px){
    .djorder-vendor-orders-table{
        min-width:900px;
    }
}
/* Vendor dashboard recent order tabs and bulk actions */
.djorder-vendor-recent-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
    margin-top:34px;
}
.djorder-vendor-recent-header h2{
    margin:0;
}
.djorder-vendor-bulk-actions{
    display:flex;
    gap:8px;
    flex-wrap:wrap;
}
.djorder-vendor-bulk-actions .btn{
    min-width:110px;
}
.djorder-vendor-order-tabs{
    display:flex;
    gap:8px;
    margin:16px 0 12px;
    border-bottom:1px solid #ddd;
}
.djorder-vendor-tab{
    border:1px solid #ddd;
    border-bottom:none;
    padding:8px 18px;
    border-radius:8px 8px 0 0;
    cursor:pointer;
    font-weight:700;
}
.djorder-vendor-tab[data-tab-status="new"]{
    background:#f3f4f6;
    border-color:#d1d5db;
    color:#111;
}
.djorder-vendor-tab[data-tab-status="accepted"]{
    background:#16a34a;
    border-color:#16a34a;
    color:#fff;
}
.djorder-vendor-tab[data-tab-status="delivered"]{
    background:#2563eb;
    border-color:#2563eb;
    color:#fff;
}
.djorder-vendor-tab.is-active{
    box-shadow:0 3px 0 rgba(0,0,0,0.25);
    transform:translateY(-1px);
}
.djorder-vendor-tab-window{
    position:relative;
    border-top:6px solid #f3f4f6;
    padding-top:10px;
    transition:border-color .2s ease;
}
.djorder-vendor-tab-window.djorder-tab-window-new{
    border-top-color:#f3f4f6;
}
.djorder-vendor-tab-window.djorder-tab-window-accepted{
    border-top-color:#16a34a;
}
.djorder-vendor-tab-window.djorder-tab-window-delivered{
    border-top-color:#2563eb;
}
.djorder-vendor-recent-orders-table{
    width:100%;
    table-layout:fixed;
    font-size:13px;
}
.djorder-vendor-recent-orders-table th,
.djorder-vendor-recent-orders-table td{
    vertical-align:middle;
    padding:8px;
    line-height:1.35;
}
.djorder-vendor-recent-orders-table th:nth-child(1),
.djorder-vendor-recent-orders-table td:nth-child(1){
    width:4%;
}
.djorder-vendor-recent-orders-table th:nth-child(2),
.djorder-vendor-recent-orders-table td:nth-child(2){
    width:5%;
}
.djorder-vendor-recent-orders-table th:nth-child(3),
.djorder-vendor-recent-orders-table td:nth-child(3){
    width:20%;
}
.djorder-vendor-recent-orders-table th:nth-child(4),
.djorder-vendor-recent-orders-table td:nth-child(4){
    width:20%;
}
.djorder-vendor-recent-orders-table th:nth-child(5),
.djorder-vendor-recent-orders-table td:nth-child(5){
    width:8%;
}
.djorder-vendor-recent-orders-table th:nth-child(6),
.djorder-vendor-recent-orders-table td:nth-child(6){
    width:20%;
}
.djorder-vendor-recent-orders-table th:nth-child(7),
.djorder-vendor-recent-orders-table td:nth-child(7){
    width:12%;
}
.djorder-vendor-recent-orders-table th:nth-child(8),
.djorder-vendor-recent-orders-table td:nth-child(8){
    width:11%;
}
.djorder-small-action-btn{
    width:110px;
    min-width:110px;
    text-align:center;
}
@media (max-width:768px){
    .djorder-vendor-recent-orders-table{
        min-width:1000px;
    }
}
/* Vendor order detail status actions */
.djorder-vendor-actions{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin:14px 0 30px;
}
.djorder-vendor-actions form{
    margin:0;
}
.djorder-status-action{
    display:inline-block;
    padding:8px 18px;
    border-radius:999px;
    color:#fff;
    font-weight:700;
    border:0;
    line-height:1.4;
    text-decoration:none;
    cursor:pointer;
    min-height:38px;
}
.djorder-status-action:hover,
.djorder-status-action:focus{
    color:#fff;
    opacity:.88;
    text-decoration:none;
}
/* Menu description full width */
.djorder-menu-info{
    width:100%;
    min-width:0;
}
.djorder-menu-desc{
    display:block !important;
    width:100% !important;
    max-width:100% !important;
    box-sizing:border-box;
    white-space:normal !important;
    overflow:visible !important;
    text-overflow:clip !important;
    word-break:normal;
    overflow-wrap:break-word;
}
.djorder-menu-item{
    padding-right:0 !important;
}
/* Vendor dashboard mobile card layout */
.djorder-vendor-cards{
    display:flex;
    flex-direction:column;
    gap:18px;
    margin-bottom:32px;
}

.djorder-vendor-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:16px;
    padding:18px;
    box-shadow:0 2px 8px rgba(0,0,0,.06);
}

.djorder-vendor-card-header h3{
    margin:0 0 16px;
    font-size:28px;
    font-weight:800;
    color:#0f172a;
}

.djorder-vendor-stats{
    display:grid;
    grid-template-columns:repeat(4, minmax(0,1fr));
    gap:12px;
    margin-bottom:18px;
}

.djorder-stat-box{
    background:#f8fafc;
    border:1px solid #e5e7eb;
    border-radius:12px;
    padding:12px 14px;
}

.djorder-stat-box-wide{
    grid-column:auto;
}

.djorder-stat-label{
    display:block;
    font-size:14px;
    color:#64748b;
    margin-bottom:6px;
}

.djorder-stat-value{
    display:block;
    font-size:24px;
    font-weight:800;
    color:#0f172a;
}

.djorder-vendor-card-actions{
    display:grid;
    grid-template-columns:repeat(4, minmax(0,1fr));
    gap:12px;
}

.djorder-big-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:54px;
    border-radius:12px;
    font-size:18px;
    font-weight:800;
    text-decoration:none !important;
    color:#fff !important;
    padding:10px 14px;
    text-align:center;
}

.djorder-big-btn:hover,
.djorder-big-btn:focus{
    color:#fff !important;
    opacity:.9;
}

.djorder-btn-orders{
    background:#5b8f87;
}

.djorder-btn-products{
    background:#2563eb;
}

.djorder-btn-categories{
    background:#64748b;
}

.djorder-btn-commission{
    background:#f59e0b;
}

/* Vendor dashboard recent order bulk buttons */
.djorder-vendor-bulk-actions{
    display:grid;
    grid-template-columns:repeat(3, minmax(0,1fr));
    gap:12px;
    margin:12px 0 18px;
}

.djorder-bulk-btn{
    min-height:54px;
    border:0;
    border-radius:12px;
    font-size:18px;
    font-weight:800;
    color:#fff;
    cursor:pointer;
    padding:10px 14px;
    text-align:center;
}

.djorder-bulk-btn:hover,
.djorder-bulk-btn:focus{
    opacity:.9;
}

.djorder-bulk-accepted{
    background:#16a34a;
}

.djorder-bulk-delivered{
    background:#2563eb;
}
.djorder-bulk-cancelled {
 background:#dc2626;
 color:#fff;
}
.djorder-bulk-whatsapp{
    background:#64748b !important;
}

/* Keep old vendor dashboard table hidden if browser cache still has mixed layout */
.djorder-vendor-dashboard-table{
    display:none;
}

@media (max-width:768px){
    .djorder-vendor-dashboard h1{
        font-size:30px;
    }

    .djorder-vendor-dashboard h2{
        font-size:26px;
    }

    .djorder-vendor-card{
        padding:14px;
        border-radius:14px;
    }

    .djorder-vendor-card-header h3{
        font-size:24px;
    }

    .djorder-vendor-stats{
        grid-template-columns:repeat(2, minmax(0,1fr));
        gap:10px;
    }

    .djorder-stat-label{
        font-size:13px;
    }

    .djorder-stat-value{
        font-size:22px;
    }

    .djorder-vendor-card-actions{
        grid-template-columns:repeat(2, minmax(0,1fr));
        gap:10px;
    }

    .djorder-big-btn{
        min-height:56px;
        font-size:17px;
    }

    .djorder-vendor-bulk-actions{
        grid-template-columns:repeat(3, minmax(0,1fr));
        gap:8px;
    }

    .djorder-bulk-btn{
        min-height:52px;
        font-size:15px;
        padding:8px 6px;
        line-height:1.25;
    }
}
/* Force mobile bottom fixed action bar */
@media (max-width:991px){
    html,
    body{
        padding-bottom:92px !important;
    }

    .djorder-vendor-dashboard .djorder-vendor-bulk-actions{
        position:fixed !important;
        left:0 !important;
        right:0 !important;
        bottom:0 !important;
        top:auto !important;
        z-index:999999 !important;

        display:grid !important;
        grid-template-columns:repeat(3, 1fr) !important;
        gap:6px !important;

        width:100vw !important;
        max-width:100vw !important;
        margin:0 !important;
        padding:8px 10px calc(8px + env(safe-area-inset-bottom)) !important;

        background:#ffffff !important;
        border-top:1px solid #e5e7eb !important;
        box-shadow:0 -6px 20px rgba(15,23,42,.18) !important;
    }

    .djorder-vendor-dashboard .djorder-vendor-bulk-actions .djorder-bulk-btn{
        width:100% !important;
        min-width:0 !important;
        max-width:none !important;
        min-height:50px !important;
        height:auto !important;

        border-radius:12px !important;
        font-size:13px !important;
        line-height:1.2 !important;
        padding:6px 4px !important;
        white-space:normal !important;
    }

    .djorder-container.djorder-vendor-dashboard{
        padding-bottom:110px !important;
    }
}
/* add 1 */
.djorder-cancel-notice{
    margin:16px 0;
    font-size:16px;
    line-height:1.45;
}

.djorder-cancel-order-form{
    margin:10px 0 20px;
}

.djorder-cancel-order-btn{
    min-width:160px;
    min-height:42px;
    font-weight:700;
}
.djorder-vendor-tab[data-tab-status="cancelled"]{
    background:#dc2626;
    border-color:#dc2626;
    color:#fff;
}

.djorder-vendor-tab-window.djorder-tab-window-cancelled{
    border-top-color:#dc2626;
}

.djorder-bulk-btn.is-disabled,
.djorder-bulk-btn:disabled{
    opacity:.45;
    cursor:not-allowed;
    filter:grayscale(35%);
}
/* add 2 */
/* Vendor dashboard tabs mobile horizontal scroll */
@media (max-width: 768px){
    .djorder-vendor-order-tabs{
        display:flex !important;
        flex-wrap:nowrap !important;
        gap:8px !important;
        width:100% !important;
        max-width:100% !important;
        overflow-x:auto !important;
        overflow-y:hidden !important;
        -webkit-overflow-scrolling:touch !important;
        scrollbar-width:none !important;
        padding-bottom:4px !important;
    }

    .djorder-vendor-order-tabs::-webkit-scrollbar{
        display:none !important;
    }

    .djorder-vendor-order-tabs .djorder-vendor-tab{
        flex:0 0 auto !important;
        min-width:110px !important;
        white-space:nowrap !important;
        text-align:center !important;
        padding:10px 14px !important;
    }
}
/* add 3 */
.djorder-cancel-alert{
    margin:16px 0 20px;
    padding:16px 20px;
    border-radius:6px;
    font-size:16px;
    line-height:1.6;
    font-weight:600;
}

.djorder-cancel-alert-danger{
    background:#f8d7da;
    border:1px solid #f5c2c7;
    color:#842029;
}

.djorder-cancel-order-form{
    margin:10px 0 20px;
}

.djorder-cancel-order-btn{
    min-width:160px;
    min-height:42px;
    font-weight:700;
}
.djorder-status-confirmed{
    background:#2563eb !important;
    color:#fff !important;
}
.djorder-checkout-form {
   margin-bottom: 30px;
}
/** *//
