/**
 * Restaurant Stock Manager - Customer Menu Styles
 * BHARAT Flavours Of India - Gold & Dark Premium Theme
 * Matching the restaurant's signage branding
 */

/* ============================================================
   BRAND COLORS
   --gold:         #c9a84c (main gold from logo)
   --gold-light:   #dfc06e
   --gold-dark:    #a68932
   --dark:         #1a1a1a (facade dark)
   --dark-card:    #242424
   --dark-surface: #2d2d2d
   --cream:        #f5f0e6
   ============================================================ */

/* ============================================================
   BASE & RESET
   ============================================================ */

.rsm-menu {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0;
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Oxygen, Ubuntu, sans-serif;
    color: #f0ece4;
    background: #1a1a1a;
    -webkit-font-smoothing: antialiased;
}

.rsm-menu * {
    box-sizing: border-box;
}

.rsm-menu a {
    color: #c9a84c;
    text-decoration: none;
}

/* ============================================================
   RESTAURANT HEADER
   ============================================================ */

.rsm-menu-header {
    text-align: center;
    padding: 45px 20px 35px;
    background: linear-gradient(180deg, #111111 0%, #1a1a1a 100%);
    color: #f0ece4;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid #c9a84c;
}

.rsm-menu-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.rsm-menu-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #c9a84c;
    margin-bottom: 14px;
    position: relative;
    box-shadow: 0 0 25px rgba(201, 168, 76, 0.25);
}

.rsm-menu-title {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 5px;
    letter-spacing: 3px;
    position: relative;
    color: #c9a84c;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(201, 168, 76, 0.3);
}

.rsm-menu-tagline {
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #dfc06e;
    opacity: 0.8;
    margin-bottom: 16px;
}

.rsm-menu-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    font-size: 13px;
    opacity: 0.8;
    position: relative;
    color: #bbb;
}

.rsm-menu-info-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.rsm-menu-info-item a {
    color: #dfc06e;
}

.rsm-menu-info-item svg {
    flex-shrink: 0;
    stroke: #c9a84c;
}

/* ============================================================
   STICKY CATEGORY NAVIGATION
   ============================================================ */

.rsm-menu-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #242424;
    border-bottom: 1px solid #333;
    box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.rsm-menu-nav-inner {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 10px;
}

.rsm-menu-nav-inner::-webkit-scrollbar {
    display: none;
}

.rsm-menu-nav-link {
    flex-shrink: 0;
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 600;
    color: #888;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
    white-space: nowrap;
}

.rsm-menu-nav-link:hover,
.rsm-menu-nav-link.active {
    color: #c9a84c;
    border-bottom-color: #c9a84c;
}

/* ============================================================
   MENU SECTIONS
   ============================================================ */

.rsm-menu-sections {
    padding: 15px 16px 30px;
}

.rsm-menu-section {
    margin-bottom: 40px;
    scroll-margin-top: 60px;
}

.rsm-menu-section-title {
    font-size: 24px;
    font-weight: 800;
    color: #c9a84c;
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid #333;
    position: relative;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.rsm-menu-section-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #c9a84c;
}

/* ============================================================
   DISH CARDS GRID
   ============================================================ */

.rsm-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

/* ============================================================
   DISH CARD - Dark theme
   ============================================================ */

.rsm-dish-card {
    background: #242424;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    border: 1px solid #333;
}

.rsm-dish-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    border-color: #c9a84c;
}

/* Dish Image */
.rsm-dish-image-wrap {
    width: 100%;
    height: 160px;
    overflow: hidden;
    position: relative;
}

.rsm-dish-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;          
    -webkit-backface-visibility: hidden; 
    backface-visibility: hidden;
    transition: transform 0.3s;
}

.rsm-dish-card:hover .rsm-dish-image {
    transform: scale(1.05);
}

.rsm-dish-no-image {
    width: 100%;
    height: 100%;
    background: #2d2d2d;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rsm-dish-no-image svg {
    stroke: #555;
}

/* Dish Info */
.rsm-dish-info {
    padding: 12px 14px 14px;
}

.rsm-dish-top-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.rsm-dish-name {
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    color: #f0ece4;
    line-height: 1.3;
}

.rsm-dish-desc {
    font-size: 12px;
    color: #999;
    margin: 0 0 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rsm-dish-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rsm-dish-price {
    font-size: 18px;
    font-weight: 800;
    color: #c9a84c;
}

/* ============================================================
   VEG / NON-VEG INDICATOR
   ============================================================ */

.rsm-dish-veg-dot {
    width: 18px;
    height: 18px;
    border: 2px solid;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rsm-veg {
    border-color: #28a745;
}

.rsm-nonveg {
    border-color: #dc3545;
}

.rsm-dot-inner {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.rsm-veg .rsm-dot-inner {
    background: #28a745;
}

.rsm-nonveg .rsm-dot-inner {
    background: #dc3545;
}

/* ============================================================
   SPICE LEVEL
   ============================================================ */

.rsm-dish-spice {
    font-size: 14px;
}

.rsm-chili {
    font-size: 13px;
}

/* ============================================================
   CHEF'S SPECIAL RIBBON
   ============================================================ */

.rsm-dish-featured {
    border: 1px solid #c9a84c;
    box-shadow: 0 0 15px rgba(201, 168, 76, 0.15);
}

.rsm-dish-ribbon {
    position: absolute;
    top: 12px;
    right: -30px;
    background: linear-gradient(135deg, #c9a84c, #a68932);
    color: #1a1a1a;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 35px;
    transform: rotate(45deg);
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

/* ============================================================
   SOLD OUT OVERLAY
   ============================================================ */

.rsm-dish-sold-out {
    opacity: 0.5;
}

.rsm-dish-sold-out .rsm-dish-image-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
}

.rsm-dish-sold-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    background: rgba(220, 53, 69, 0.9);
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 3px;
    padding: 8px 24px;
    border-radius: 4px;
    z-index: 20;
    border: 2px solid #fff;
}

/* ============================================================
   EMPTY STATE
   ============================================================ */

.rsm-menu-empty {
    text-align: center;
    padding: 60px 20px;
    color: #777;
    font-size: 16px;
}

/* ============================================================
   FOOTER
   ============================================================ */

.rsm-menu-footer {
    text-align: center;
    padding: 30px 20px;
    background: #111;
    color: #666;
    font-size: 13px;
    border-top: 1px solid #c9a84c;
}

.rsm-menu-footer p {
    margin: 4px 0;
}

.rsm-menu-footer a {
    color: #c9a84c;
}

/* ============================================================
   RESPONSIVE - TABLETS (3 columns)
   ============================================================ */

@media screen and (min-width: 768px) {
    .rsm-menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .rsm-menu-header {
        padding: 55px 30px 45px;
    }

    .rsm-menu-title {
        font-size: 40px;
        letter-spacing: 5px;
    }

    .rsm-menu-sections {
        padding: 25px 30px 40px;
    }

    .rsm-dish-image-wrap {
        height: 240px;
    }

    .rsm-menu-logo {
        width: 120px;
        height: 120px;
    }
}

/* ============================================================
   RESPONSIVE - SMALL PHONES
   ============================================================ */

@media screen and (max-width: 420px) {
    .rsm-menu-grid {
        grid-template-columns: 1fr;
    }

    .rsm-menu-title {
        font-size: 24px;
        letter-spacing: 2px;
    }

    .rsm-menu-header {
        padding: 30px 15px 25px;
    }

    .rsm-menu-nav-link {
        padding: 12px 14px;
        font-size: 13px;
    }

    .rsm-dish-image-wrap {
        height: 200px;
    }

    .rsm-dish-name {
        font-size: 16px;
    }

    .rsm-dish-price {
        font-size: 20px;
    }

    .rsm-menu-logo {
        width: 80px;
        height: 80px;
    }
}

/* ============================================================
   SMOOTH ANIMATIONS
   ============================================================ */

.rsm-menu-section {
    animation: rsm-fade-up 0.4s ease;
}

@keyframes rsm-fade-up {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
   GOLD DECORATIVE DIVIDER
   ============================================================ */

.rsm-menu-header::after {
    content: '~ ~ ~';
    display: block;
    color: #c9a84c;
    font-size: 20px;
    letter-spacing: 8px;
    margin-top: 15px;
    opacity: 0.5;
    position: relative;
}

/* ============================================================
   LANGUAGE TOGGLE
   ============================================================ */

.rsm-lang-toggle {
    display: flex;
    justify-content: center;
    gap: 0;
    margin: 12px 0;
    position: relative;
}

.rsm-lang-btn {
    padding: 6px 18px;
    border: 1px solid #c9a84c;
    background: transparent;
    color: #c9a84c;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.rsm-lang-btn:first-child { border-radius: 20px 0 0 20px; }
.rsm-lang-btn:last-child { border-radius: 0 20px 20px 0; }

.rsm-lang-btn.active {
    background: #c9a84c;
    color: #1a1a1a;
}

/* ============================================================
   SOCIAL MEDIA ICONS
   ============================================================ */

.rsm-social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
    position: relative;
}

.rsm-social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.15);
    color: #c9a84c;
    transition: all 0.2s;
}

.rsm-social-link:hover {
    background: #c9a84c;
    color: #1a1a1a;
    transform: scale(1.1);
}

.rsm-social-link svg { fill: currentColor; }

/* ============================================================
   DAILY SPECIALS BANNER
   ============================================================ */

.rsm-specials-banner {
    background: linear-gradient(90deg, #c9a84c, #dfc06e);
    padding: 12px 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.rsm-specials-inner {
    display: flex;
    gap: 20px;
    min-width: max-content;
}

.rsm-special-item {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.rsm-special-badge {
    background: #1a1a1a;
    color: #c9a84c;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.rsm-special-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
}

.rsm-special-desc {
    font-size: 12px;
    color: #333;
}

/* ============================================================
   DELIVERY PLATFORM BUTTONS
   ============================================================ */

.rsm-delivery-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 16px;
    background: #242424;
    border-bottom: 1px solid #333;
    flex-wrap: wrap;
}

.rsm-delivery-label {
    font-size: 13px;
    color: #888;
    font-weight: 600;
}

.rsm-delivery-links {
    display: flex;
    gap: 8px;
}

.rsm-delivery-btn {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    transition: transform 0.2s, opacity 0.2s;
}

.rsm-delivery-btn:hover { transform: scale(1.05); }

.rsm-grab { background: #00b14f; }
.rsm-lineman { background: #3cc83c; }
.rsm-foodpanda { background: #d70f64; }

/* ============================================================
   VEG / NON-VEG FILTER
   ============================================================ */

.rsm-menu-nav-top {
    display: flex;
    justify-content: center;
    padding: 10px 10px 0;
    border-bottom: 1px solid #333;
}

.rsm-veg-filter {
    display: flex;
    gap: 6px;
}

.rsm-filter-btn {
    padding: 5px 14px;
    border: 1px solid #444;
    border-radius: 20px;
    background: transparent;
    color: #888;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 4px;
}

.rsm-filter-btn.active {
    background: #c9a84c;
    color: #1a1a1a;
    border-color: #c9a84c;
}

.rsm-dot-sm {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.rsm-dot-green { background: #28a745; }
.rsm-dot-red { background: #dc3545; }

/* ============================================================
   SECTION HEADINGS (Reviews, About, Map)
   ============================================================ */

.rsm-section-heading {
    font-size: 24px;
    font-weight: 800;
    color: #c9a84c;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 20px;
}

/* ============================================================
   CUSTOMER REVIEWS
   ============================================================ */

.rsm-reviews-section {
    padding: 35px 16px;
    background: #242424;
    border-top: 1px solid #333;
}

.rsm-reviews-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 10px;
}

.rsm-reviews-carousel::-webkit-scrollbar { display: none; }

.rsm-review-card {
    flex-shrink: 0;
    width: 280px;
    background: #2d2d2d;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #3a3a3a;
}

.rsm-review-stars {
    margin-bottom: 10px;
}

.rsm-star {
    font-size: 18px;
    color: #555;
}

.rsm-star-filled {
    color: #c9a84c;
}

.rsm-review-text {
    font-size: 14px;
    color: #ccc;
    line-height: 1.5;
    margin: 0 0 12px;
    font-style: italic;
}

.rsm-review-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rsm-review-name {
    font-size: 13px;
    font-weight: 600;
    color: #c9a84c;
}

.rsm-review-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.rsm-review-link-btn {
    padding: 8px 20px;
    border: 1px solid #c9a84c;
    border-radius: 25px;
    color: #c9a84c;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.rsm-review-link-btn:hover {
    background: #c9a84c;
    color: #1a1a1a;
}

/* ============================================================
   ABOUT US / OUR STORY
   ============================================================ */

.rsm-about-section {
    padding: 35px 16px;
    border-top: 1px solid #333;
}

.rsm-about-content {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    max-width: 700px;
    margin: 0 auto;
}

.rsm-about-photo img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #c9a84c;
    flex-shrink: 0;
}

.rsm-about-text p {
    font-size: 14px;
    line-height: 1.7;
    color: #bbb;
    margin: 0 0 12px;
}

.rsm-chef-name {
    font-weight: 700;
    color: #c9a84c !important;
    font-style: italic;
}

/* ============================================================
   GOOGLE MAPS
   ============================================================ */

.rsm-map-section {
    padding: 35px 16px;
    background: #242424;
    border-top: 1px solid #333;
}

.rsm-map-wrap {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #333;
}

.rsm-map-address {
    text-align: center;
    margin-top: 15px;
    color: #bbb;
    font-size: 14px;
}

.rsm-directions-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 25px;
    background: #c9a84c;
    color: #1a1a1a;
    font-weight: 700;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    transition: transform 0.2s;
}

.rsm-directions-btn:hover {
    transform: scale(1.05);
}

/* ============================================================
   FOOTER - UPGRADED
   ============================================================ */

.rsm-footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.rsm-footer-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.rsm-footer-name {
    font-size: 16px;
    font-weight: 700;
    color: #c9a84c;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.rsm-footer-copy {
    font-size: 11px;
    margin-top: 10px !important;
    opacity: 0.6;
}

/* ============================================================
   FLOATING WHATSAPP / LINE BUTTONS
   ============================================================ */

.rsm-floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

.rsm-float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    animation: rsm-float-bounce 2s infinite;
}

.rsm-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.rsm-float-whatsapp { background: #25d366; }
.rsm-float-line { background: #00b900; }

@keyframes rsm-float-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* ============================================================
   WELCOME POPUP
   ============================================================ */

.rsm-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: rsm-popup-fade 0.3s ease;
}

.rsm-popup {
    background: #242424;
    border: 1px solid #c9a84c;
    border-radius: 16px;
    max-width: 400px;
    width: 100%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.rsm-popup-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    opacity: 0.7;
}

.rsm-popup-close:hover { opacity: 1; }

.rsm-popup-image {
    width: 100%;
    height: auto;
    display: block;
}

.rsm-popup-content {
    padding: 20px;
    text-align: center;
    color: #f0ece4;
    font-size: 15px;
    line-height: 1.6;
}

@keyframes rsm-popup-fade {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ============================================================
   RESPONSIVE ADDITIONS
   ============================================================ */

/* ============================================================
   BOOKING / CONTACT FORM
   ============================================================ */

.rsm-booking-page {
    padding: 40px 16px;
    max-width: 550px;
    margin: 0 auto;
}

.rsm-booking-form input,
.rsm-booking-form select,
.rsm-booking-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #444;
    border-radius: 10px;
    background: #242424;
    color: #f0ece4;
    font-size: 15px;
    margin-bottom: 12px;
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
}

.rsm-booking-form input:focus,
.rsm-booking-form select:focus,
.rsm-booking-form textarea:focus {
    border-color: #c9a84c;
}

.rsm-booking-form input::placeholder,
.rsm-booking-form textarea::placeholder {
    color: #777;
}

.rsm-form-row {
    display: flex;
    gap: 12px;
}

.rsm-form-row input,
.rsm-form-row select {
    flex: 1;
}

.rsm-book-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #c9a84c, #a68932);
    color: #1a1a1a;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 5px;
}

.rsm-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.rsm-booking-success {
    text-align: center;
    padding: 40px 20px;
    background: #242424;
    border-radius: 16px;
    border: 1px solid #c9a84c;
}

.rsm-booking-success h3 {
    color: #c9a84c;
    font-size: 22px;
    margin: 10px 0 5px;
}

.rsm-booking-success p {
    color: #bbb;
}

/* ============================================================
   GALLERY GRID
   ============================================================ */

.rsm-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.rsm-gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1;
}

.rsm-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.rsm-gallery-item:hover img {
    transform: scale(1.08);
}

.rsm-gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
    padding: 20px 10px 10px;
    font-size: 12px;
}

@media screen and (max-width: 500px) {
    .rsm-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .rsm-form-row {
        flex-direction: column;
        gap: 0;
    }
}

@media screen and (max-width: 600px) {
    .rsm-about-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .rsm-review-card {
        width: 250px;
    }

    .rsm-delivery-bar {
        flex-direction: column;
        gap: 8px;
    }

    .rsm-floating-buttons {
        bottom: 15px;
        right: 15px;
    }

    .rsm-float-btn {
        width: 50px;
        height: 50px;
    }
}

/* ============================================================
   ADD TO ORDER BUTTON
   ============================================================ */

.rsm-add-btn {
    padding: 5px 12px;
    background: rgba(201,168,76,0.15);
    border: 1px solid #c9a84c;
    border-radius: 20px;
    color: #c9a84c;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    -webkit-tap-highlight-color: transparent;
    white-space: nowrap;
}

.rsm-add-btn:active,
.rsm-add-btn:hover {
    background: #c9a84c;
    color: #1a1a1a;
    transform: scale(1.05);
}

.rsm-add-btn.added {
    background: #28a745;
    border-color: #28a745;
    color: #fff;
}

/* ============================================================
   FLOATING CART BAR
   ============================================================ */

.rsm-cart-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: linear-gradient(135deg, #c9a84c, #a68932);
    padding: 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
    animation: rsm-cart-slide-up 0.3s ease;
}

@keyframes rsm-cart-slide-up {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.rsm-cart-bar-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rsm-cart-info {
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 600;
}

.rsm-cart-count {
    font-weight: 800;
    font-size: 18px;
}

.rsm-cart-sep { margin: 0 8px; opacity: 0.5; }

.rsm-cart-total {
    font-weight: 800;
    font-size: 18px;
}

.rsm-cart-view-btn {
    padding: 10px 24px;
    background: #1a1a1a;
    color: #c9a84c;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s;
    letter-spacing: 0.5px;
}

.rsm-cart-view-btn:hover { transform: scale(1.05); }

/* ============================================================
   ORDER PANEL (slide-up overlay)
   ============================================================ */

.rsm-order-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 99999;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    animation: rsm-overlay-fade 0.2s ease;
}

@keyframes rsm-overlay-fade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.rsm-order-panel {
    background: #1a1a1a;
    border-radius: 20px 20px 0 0;
    width: 100%;
    max-width: 500px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    animation: rsm-panel-slide 0.3s ease;
    border-top: 2px solid #c9a84c;
}

@keyframes rsm-panel-slide {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.rsm-order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid #2a2a2a;
}

.rsm-order-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #c9a84c;
}

.rsm-order-close {
    background: none;
    border: none;
    color: #888;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    padding: 0 4px;
}

.rsm-order-close:hover { color: #fff; }

/* Order Items List */
.rsm-order-items {
    flex: 1;
    overflow-y: auto;
    padding: 10px 20px;
    -webkit-overflow-scrolling: touch;
}

.rsm-order-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #222;
}

.rsm-order-item-info {
    flex: 1;
}

.rsm-order-item-name {
    font-size: 14px;
    font-weight: 600;
    color: #f0ece4;
}

.rsm-order-item-price {
    font-size: 13px;
    color: #c9a84c;
    font-weight: 600;
}

.rsm-order-qty-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rsm-order-qty-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #444;
    background: #242424;
    color: #f0ece4;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
}

.rsm-order-qty-btn:active { background: #333; }

.rsm-order-qty-num {
    font-size: 16px;
    font-weight: 700;
    color: #f0ece4;
    min-width: 20px;
    text-align: center;
}

.rsm-order-remove {
    background: none;
    border: none;
    color: #dc3545;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    opacity: 0.6;
}

.rsm-order-remove:hover { opacity: 1; }

/* Order Footer */
.rsm-order-footer {
    padding: 16px 20px;
    border-top: 1px solid #2a2a2a;
}

.rsm-order-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.rsm-order-total {
    font-size: 22px;
    color: #c9a84c;
}

.rsm-order-empty {
    text-align: center;
    padding: 30px;
    color: #666;
    font-size: 14px;
}

/* Share Buttons */
.rsm-share-label {
    font-size: 12px;
    color: #888;
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rsm-share-buttons {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.rsm-share-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 12px;
    border: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    transition: transform 0.2s;
    -webkit-tap-highlight-color: transparent;
}

.rsm-share-btn:active { transform: scale(0.95); }

.rsm-share-whatsapp { background: #25d366; }
.rsm-share-line { background: #00b900; }
.rsm-share-copy { background: #555; }

.rsm-clear-order {
    width: 100%;
    padding: 10px;
    background: none;
    border: 1px solid #333;
    border-radius: 10px;
    color: #888;
    font-size: 13px;
    cursor: pointer;
}

.rsm-clear-order:hover { border-color: #dc3545; color: #dc3545; }

/* Move WhatsApp/LINE floating buttons up when cart is visible */
.rsm-cart-active .rsm-floating-buttons {
    bottom: 75px;
}

/* Adjust dish card bottom for add button */
.rsm-dish-bottom {
    flex-wrap: wrap;
    gap: 6px;
}

@media (max-width: 480px) {
    .rsm-cart-bar-inner { padding: 12px 16px; }
    .rsm-cart-info { font-size: 13px; }
    .rsm-cart-count, .rsm-cart-total { font-size: 15px; }
    .rsm-cart-view-btn { padding: 8px 18px; font-size: 13px; }
    .rsm-share-buttons { flex-direction: column; }
}
