/* Grid 5 cols desktop, 2 cols mobile */
.ro-grid{ display:grid; gap:12px; }
.ro-cols-5{ grid-template-columns: repeat(5, minmax(0, 1fr)); }
@media (max-width: 768px){
  .ro-cols-5{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Product cards */
.ro-card{ background:#fff; border:1px solid #eee; border-radius:12px; overflow:hidden; display:flex; flex-direction:column; }
.ro-thumb img{ width:100%; height:auto; display:block; }
.ro-info{ padding:10px; display:flex; flex-direction:column; gap:8px; }
.ro-title{ font-size:14px; margin:0; }
.ro-price{ font-weight:300; }
.ro-order-btn{ background:#111; color:#fff; border:0; border-radius:10px; padding:10px; cursor:pointer; }
.ro-order-btn:active{ transform:scale(0.98); }

/* Modal */
.ro-modal{ position:fixed; inset:0; background:rgba(0,0,0,.35); opacity:0; pointer-events:none; transition:opacity 0.0s ease; z-index:9998; }
.ro-modal.open{ opacity:1; pointer-events:auto; }
.ro-modal-sheet{ position:absolute; left:0; right:0; bottom:-100%; background:#fff; border-radius:16px 16px 0 0; box-shadow:0 -10px 30px rgba(0,0,0,.2); transition:bottom .25s ease; max-height:85%; overflow:auto; }
.ro-modal.open .ro-modal-sheet{ bottom:0; }
.ro-modal-close{ position:absolute; top:8px; right:12px; background:transparent; border:0; font-size:24px; cursor:pointer; }
.ro-modal-header{ padding:16px 16px 0; }
.ro-modal-title{ margin:0; font-size:18px; }
.ro-modal-price{ color:#111; font-weight:600; margin-top:6px; }
.ro-modal-image img{ width:100%; height:auto; display:block; }
.ro-section{ padding:12px 16px 0; }
.ro-section-title{ margin:0 0 6px; font-size:14px; color:#444; }
.ro-addons{ list-style:none; padding:0; margin:0; }
.ro-addon{ padding:8px 0; border-bottom:1px solid #f0f0f0; }
.ro-addon label{ display:flex; justify-content:space-between; gap:10px; }
.ro-qty-row{ padding:12px 16px; display:flex; justify-content:space-between; align-items:center; }
.ro-qty{ display:flex; align-items:center; gap:8px; }
.ro-qty button{ width:36px; height:36px; border-radius:8px; border:1px solid #ddd; background:#fafafa; }
.ro-qty input{ width:60px; text-align:center; border:1px solid #ddd; border-radius:8px; padding:6px; }
.ro-actions{ padding:0 16px 16px; }
.ro-add-to-cart{ width:100%; background:#e53935; color:#fff; border:0; padding:12px; border-radius:12px; font-weight:700; cursor:pointer; }

/* Sidebar Cart */
.ro-sidebar{ position:fixed; inset:0; background:rgba(0,0,0,.25); opacity:0; pointer-events:none; transition:opacity 0.0s ease; z-index:9999; }
.ro-sidebar.open{ opacity:1; pointer-events:auto; }
.ro-sidebar-inner{ position:absolute; right:-420px; top:0; bottom:0; width:400px; max-width:100%; background:#fff; box-shadow:-8px 0 24px rgba(0,0,0,.15); transition:right .25s ease; display:flex; flex-direction:column; }
.ro-sidebar.open .ro-sidebar-inner{ right:0; }
.ro-sidebar-header{ display:flex; justify-content:space-between; align-items:center; padding:12px 16px; border-bottom:1px solid #eee; background:#f8f8f8; }
.ro-sidebar-close{ background:transparent; border:0; font-size:24px; cursor:pointer; }

.ro-cart{ padding:10px 16px; overflow:auto; }
.ro-line{ display:flex; align-items:flex-start; justify-content:space-between; gap:10px; padding:10px 0; border-bottom:1px solid #f0f0f0; }
.ro-line-left{ display:flex; gap:10px; align-items:flex-start; }
.ro-thumb-small img{ width:50px; height:50px; object-fit:cover; border-radius:6px; display:block; } /* small image */
.ro-line-text{ display:flex; flex-direction:column; }
.ro-line-top{ display:flex; gap:8px; align-items:center; }
.ro-line-title{ font-weight:600; }
.ro-line-qty{ color:#666; }
.ro-line-addons{ list-style:disc; margin:6px 0 0 18px; padding:0; color:#555; font-size:13px; }
.ro-line-right{ min-width:72px; text-align:right; font-weight:600; }

.ro-sidebar-footer{ margin-top:auto; padding:12px 16px; border-top:1px solid #eee; background:#fff; }
.ro-totals{ display:flex; justify-content:space-between; align-items:center; margin-bottom:10px; }
.ro-checkout-btn{ display:block; text-align:center; background:#111; color:#fff; text-decoration:none; padding:12px; border-radius:12px; font-weight:700; }
@media (max-width: 768px){
  .ro-sidebar-inner{ width:100%; right:-100%; }
}

/* Booking form */
.ro-booking{ max-width:680px; margin:0 auto; background:#fff; border:1px solid #eee; border-radius:12px; padding:16px; }
.ro-row{ display:flex; gap:12px; margin-bottom:12px; }
.ro-row label{ flex:1; display:flex; flex-direction:column; gap:6px; font-size:14px; }
.ro-row input, .ro-row select, .ro-row textarea{ border:1px solid #ddd; border-radius:10px; padding:10px; }
.ro-actions{ text-align:right; }
.ro-book-btn{ background:#111; color:#fff; border:0; border-radius:10px; padding:10px 16px; cursor:pointer; }
.ro-booking-msg{ margin-top:10px; color:#0a7a2f; font-weight:600; }
@media (max-width: 768px){
  .ro-row{ flex-direction:column; }
}

/* Admin */
.ro-admin .ro-stats{ display:flex; gap:12px; }
.ro-admin .ro-stat{ background:#fff; border:1px solid #eee; border-radius:12px; padding:16px; min-width:140px; text-align:center; }
.ro-admin .ro-num{ font-size:24px; font-weight:800; display:block; }
.status-pending{ color:#a15c00; }
.status-confirmed{ color:#0a7a2f; }
.status-cancelled{ color:#b00020; }
.ro-filters{ display:flex; gap:10px; margin:12px 0; align-items:center; }
.ro-table td, .ro-table th{ vertical-align:top; }
