/* ===== Order Combo Menu ===== */
.rco-grid{display:grid;grid-gap:18px}
.rco-cols-1{grid-template-columns:1fr}
.rco-cols-2{grid-template-columns:repeat(2,1fr)}
.rco-cols-3{grid-template-columns:repeat(3,1fr)}
#rco-total{color:red;font-weight:700}.rco-card__body {
    display: none;              /* mặc định ẩn */
    transition: all 0.3s ease;
}
.rco-card.open .rco-card__body {
    display: block;             /* khi có class open thì hiện */
}
.rco-card__header {
    cursor: pointer;
    user-select: none;
}
.rco-card{background:#fff;border-radius:14px;overflow:hidden;box-shadow:0 8px 30px rgba(0,0,0,.08);border:1px solid #ececec}
.rco-card__header{display:flex;justify-content:space-between;align-items:center;background:#3b2a21;color:#fff;padding:12px 16px;border-bottom:4px solid #ffb566}
.rco-card__title{font-weight: 700;
    font-size: 18px;
    letter-spacing: 0;
    text-transform: uppercase;}
.rco-card__price{background:#fff;color:red;border-radius:999px;padding:6px 12px;font-weight:700;border:1px solid #e6e6e6}
.rco-modal__header .rco-btn{background: #fff;
    color: #2e7d32;
    border-color: #2e7d32;
    margin: 7px 0;
    padding: 0 5px;}
.rco-order-items ol{margin-bottom:0;column-count:2}
.rco-order-items ol li{font-weight: 500;font-size: 16px;
    color: #333;
    margin-bottom: 0;
    border-bottom: 1px dashed #cbcbcb;
    padding: 5px 0;}
#rco-combo-price{font-weight:700;color:Red}
.rco-card__image{width:100%;height:220px;background-size:cover;background-position:center}
.rco-card__body{padding:14px 16px}
.rco-dish-list{margin:0 0 10px 0px}
.rco-dish-list li{border-bottom: 1px dashed #e9ecef;
    color: #1f3b2d !important;
    font-weight: 600;
    font-size: 16px;
    margin: 0;
    padding: 8px 0;}
.rco-dish-list li:last-child{border-bottom:0}
#rco-combo-dishes{margin-bottom: 12px;
    background: #fffbef;
    padding: 10px;
    border-radius: 10px;
    margin-top: 5px;}

.rco-btn{border: 1px solid #ff7900;
    border-radius: 10px;
    background: #ff7900;
    color: #fff;
    padding: 3px 16px;
    font-weight: 600;
    cursor: pointer;
    text-transform: none;
    font-size: 15px;margin-bottom:0}
.rco-btn:hover{filter:brightness(1.03)}

/* Modal */
.rco-modal{position:fixed;inset:0;background:rgba(0,0,0,.5);display:none;align-items:center;justify-content:center;z-index:100000}
.rco-modal__content{background:#fff;border-radius:12px;width:720px;max-width:95vw;max-height:90vh;overflow:auto;box-shadow:0 20px 50px rgba(0,0,0,.2)}
.rco-modal__header{display: flex
;
    align-items: center;
    justify-content: space-between;
    padding: 0px 16px;
    border-bottom: 1px solid #eef2f7;
    background: #ff7400;
    color: #fff;}
.rco-modal__body{padding:16px}
.rco-row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.rco-row-1{grid-template-columns:1fr}
.rco-field{display:flex;flex-direction:column;margin-bottom:10px}
.rco-field label{font-weight:700;margin-bottom:6px}
.rco-field input,.rco-field select,.rco-field textarea{font-size:16px;padding:10px;border:1px solid #d9e1e6;border-radius:8px}
.rco-modal__footer{padding:12px 16px;border-top:1px solid #eef2f7;display:flex;justify-content:flex-end;gap:10px;background:#f9fafb}
