.cart-header {
    position: relative;
    padding: 16px;
    background-color: #FFF;
}

.cart-header h2 {
    margin: 0 0 5px;
}

.cart-header p {
    margin: 0;

}
.meal-card.selected {
    border-color: green;
    border: 2px solid green;
    position: relative;
}
.ml_bdgs.active-meal {
    display: none;
}
.stcikybar .stciky_dfg {
    position: fixed;
    top: 0;
    z-index: 9999;
    background-color: #fff;
    width: 100%;
}

.stcikybar .top-hdr {
    padding-top: 100px;
}
.close-btn {
    position: absolute;
    right: 16px;
    top: 16px;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

.cart-body {
    padding: 16px;
}

.cart-body h3 {
    margin-top: 0;
}

.cart-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: center;
}

.cart-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.cd_img {
    background-color: rgb(163, 214, 158);
    border-radius: 6px;
    overflow: hidden;
    width: 92px;
    height: 92px;

}


.cart-item p {
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
}

.qty {
    display: flex;
    align-items: center;

}

.qty button {
    width: 24px;
    height: 24px;
    border: 1px solid #333;
    background: #fff;
    cursor: pointer;
}
.sv_ew .sv_tck {
    flex: 0 0 20%;
}

.rm_prdct .rt_lnk {
    text-decoration: none;
    color: #000;
    margin-top: 0;
}

.cart-footer {
    padding: 25px;
    background: #FFF;
    text-align: left;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 0px 24px 0px;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    /* start hidden */
    width: auto;
    min-width: 300px;
    max-width: 564px;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.cart-drawer.open {
    right: 0;
    /* slide in */
}


.cart-header {
    padding: 25px;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    box-shadow: rgba(0, 0, 0, 0.15) 0rem 0.1875rem 0.5rem 0rem;
}

.cart-body {
    padding: 25px;
}



/* m css */

.sv_ew {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0px;
}

.sv_tck {
    display: flex;
    align-items: center;
}

.sv_ew span {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0%;
    font-weight: 400;
}

.sv_ew .dt_txet {
    font-weight: 700;
}

.sv_data .sv_hdn {
    font-weight: 700;
    font-size: 22px;
    font-family: 'Inter';
}

.sv_pris {
    text-align: center;
    margin-top: 5px;
}


.sv_ryt {
    display: flex;
    align-items: center;
    gap: 13px;
}

.sv_ryt button {
    border: none;
    outline: none;
    background: none;
}

button.sv_btn.sv_blk {
    color: #fff;
    background: #000 !important;
    padding: 8px 24px;
    border-radius: 5px;
    transition: all 0.5s ease-in-out;
        border: 1px solid transparent !important;
}
button.sv_btn.sv_blk:hover {
    color: #000;
    background: #fff !important;
    padding: 8px 24px;
    border-radius: 5px;
    border-color: #000 !important;

}

.sv_btn.sv_wht {
    padding: 8px 25px;
    border: 1px solid #206B19;
    border-radius: 5px;
}

span.item-count {
    background: #206B19;
    color: #FFF;
    display: inline-flex;
    width: 28px;
    height: 16px;
    border-radius: 30px;
    align-items: center;
    justify-content: center;
    line-height: 1.4;
    font-size: 12px;
    font-weight: 500;
}

.ndf_bx {
    position: relative;
    display: flex;
    justify-content: center;
}

.ntd_bdg {
    position: absolute;
    right: -13px;
    bottom: -3px;
}

.ndf_bx .ntf_img {
    width: 32px;
    flex: 0 0 32px;
}


.ndf_bx .ntf_img svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.qty button {
    color: rgb(32, 107, 25);
    background-color: rgb(209, 235, 206);
    border: 1px solid #206B19;
}

.qt_info span {
    color: rgb(32, 107, 25);
    background-color: rgb(209, 235, 206);
    display: inline-flex;
    border: 1px solid #206B19;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
}

.qt_min {
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
}

.qt_max {
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
}

.qt_info {
    display: flex;
    align-items: center;
    gap: 16px;
}



/* order css */
.toggle-order-total {
    background: #FFF;
    padding: 12px 16px;
    border-top: 1px solid #ddd;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* font-weight: bold; */
    margin-bottom: 10px;
}

.order-total {
    padding: 16px;
    background: #fff;
    border-top: 1px solid #ccc;
    transition: all 0.3s ease;
    display: none;
}

.order-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.order-row.total {
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.confirm-order {
    width: 100%;
    background: #000;
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}


/* selected box css */

.meal-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.meal-badges {
    /* padding: 10px; */
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.badge {
    background: #fff;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 4px;
    color: #000;
    font-weight: 700;
}

.meal-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.meal-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.meal-content h5 {
    font-size: 16px;
    font-weight: bold;
}

.info-row {
    font-size: 12px;
    color: #777;
    display: inline-block;
    border: 1px solid rgb(188, 188, 186);
    border-radius: 5px;
    padding: 4px 8px;
}


.upgrade-box {
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #000;
    padding: 8px 12px;
    border-radius: 5px;
    margin-top: 20px;
    justify-content: space-between;
}

.select-btn {
    margin-top: auto;
    width: 100%;
    padding: 10px;
    background: #000;
    color: #fff;
    border: none;
    font-weight: bold;
    border-radius: 4px;
}

.select-btn:hover {
    background: #333;
}

.meal-box_igm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.meal-box_igm {
    position: relative;
    z-index: 1;
    min-height: 234px;
}

.meal-box_igm .mel_img {
    z-index: -1;
    position: absolute;
}

.ml_bdgs {
    display: flex;
    justify-content: space-between;
    padding: 16px;
}

.ml_bdgs .meal-badges {
    max-width: 226px;
}

.slctn_labl {
    background: #206B19;
    display: flex;
    align-items: center;
    height: 30px;
    border-radius: 12px;
    padding: 10px;
    color: #fff;
}

.slct_img svg {
    stroke: #206B19;
    fill: #FFF;
    background: #fff;
    border-radius: 100%;
    width: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 16px;
}

.hrt_n {
    position: absolute;
    right: 0;
    bottom: 0;
    padding-right: 16px;
    padding-bottom: 16px;
}

.lk-icn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgb(51, 51, 51, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
}

.lk-icn i {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.lft_updt {
    align-items: center;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.lft_updt input {
    width: 20px;
    height: 20px;
    border-radius: 5px;
}

.selector-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #000;
    color: #FFF;
    padding: 12px 20px;
    border-radius: 5px;
    width: 100%;
    max-width: 100%;
/*    margin-top: 20px;*/
}

.selector-box button {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    width: 30px;
}

.count {
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    flex: 1;
}


.edt_main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    gap: 20px;
}


.ed_rt a {
    display: inline-block;
    max-width: 100%;
    border: 1px solid #000;
    color: #000;
    padding: 12px 20px;
    border-radius: 5px;
}

.inf-mn_rw {
    margin-bottom: 20px;
}

button#closeCart {
    background: transparent;
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    font-size: 30px;
}

button#closeCart:hover {
    background: rgb(224, 224, 224);

}

button.confirm-order {
    background: #000000 !important;
    width: 100%;
    display: block !important;
}

.crt_mn_hdr {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.cart-body .toggle-order-total {
    border-top: none;
}
.toggle-order-total span i {
    color: #206B19;
    font-size: 30px;
    font-weight: 900;
}
.toggle-order-total span {
    font-weight: 700;
    font-size: 18px;
}


@media (max-width: 1399px) {
.edt_main {
    margin-bottom: 35px;
}
}

@media (max-width: 1199px) {
.edt_main {
    margin-bottom: 30px;
}
}
@media (max-width: 991px) {
.sv_ew {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 0px;
    flex-direction: column;
    gap: 15px;
    text-align: center;
}

}

@media (max-width: 767px) {
.edt_main {
    margin-bottom: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}
.edt_main h3 {
    margin-bottom: 5px;
}
.ed_lft p {
    margin-bottom: 10px;
}
.ed_rt a {
    padding: 10px 15px;
    border-radius: 5px;
}
.selector-box {
    padding: 10px 15px;
 
}
.cart-header {
    padding: 10px;
   
}
.crt_mn_hdr {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex-direction: column;
}
button#closeCart {
    width: 35px;
    height: 35px;
    font-size: 22px;
}

}
@media (max-width: 480px) {
    .selector-box {
        padding: 8px 16px;
    }

    .count {
        font-size: 14px;
    }

    .selector-box button {
        font-size: 18px;
        width: 25px;
    }
    .sv_ew span {
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 0%;
    font-weight: 400;
}
  .cart-drawer {
        width: 100%;
    }
}
