.rt-menu-wrapper {
    font-family: 'Montserrat', sans-serif;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- UPGRADED SEARCH AUTOCOMPLETE DESIGN --- */
.rt-search-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Hardcoded to prevent SVG jumping before CSS loads */
.rt-search-icon {
    position: absolute !important;
    left: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: #999 !important;
    width: 20px !important;
    height: 20px !important;
    z-index: 10 !important;
    pointer-events: none !important;
}

#rt-menu-search {
    width: 100%;
    padding: 16px 20px 16px 55px; 
    border: 1px solid #e0e0e0;
    border-radius: 50px; 
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #333;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

#rt-menu-search:focus {
    outline: none;
    border-color: #A96748;
    box-shadow: 0 6px 20px rgba(169, 103, 72, 0.15);
}

.rt-search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 12px;
    z-index: 100;
    max-height: 350px;
    overflow-y: auto;
    display: none; 
    margin-top: 10px;
    border: 1px solid #eee;
}

.rt-search-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    cursor: pointer;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.2s ease;
    text-align: left;
}

.rt-search-item:hover {
    background: #fdfbf9;
}

.rt-search-item:last-child {
    border-bottom: none;
}

.rt-search-item img {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    object-fit: cover;
    margin-right: 15px;
    flex-shrink: 0;
    background: #eee;
}

.rt-search-item-info {
    flex-grow: 1;
}

.rt-search-item-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 4px;
}

.rt-search-item-price {
    font-size: 0.85rem;
    color: #A96748;
    font-weight: 600;
}

/* --- GRID LAYOUT --- */
.rt-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1024px) { .rt-menu-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .rt-menu-grid { grid-template-columns: 1fr; } }

/* --- CARD DESIGN --- */
.rt-menu-card {
    background-color: #F9F5F0; 
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
}

.rt-card-img img {
    width: 100%;
    height: 150px; 
    object-fit: cover;
    display: block;
}

/* Tighter Spacing Here */
.rt-card-content {
    padding: 15px; 
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center; 
}

.rt-card-content h3 {
    color: #000;
    margin: 0 0 8px 0; /* Reduced */
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rt-about {
    font-size: 0.75rem;
    line-height: 1.5;
    color: #444;
    margin: 0 0 10px 0; /* Reduced */
}

/* --- MODERN META INFO --- */
.rt-meta-info {
    margin-top: auto;
    padding-top: 10px; /* Reduced */
}

.rt-meta-top {
    display: flex;
    justify-content: center; 
    gap: 10px;
    align-items: center;
    margin-bottom: 10px; /* Reduced */
}

.rt-meta-divider {
    border: 0;
    border-top: 1px solid rgba(0,0,0,0.06); 
    margin: 0 0 10px 0; /* Reduced */
}

.rt-meta-bottom {
    text-align: center;
}

.rt-duration {
    font-size: 0.75rem;
    color: #777;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.rt-duration svg {
    color: #A96748; 
}

.rt-persons {
    font-size: 0.75rem;
    color: #777;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.rt-persons svg {
    color: #A96748; 
}

.rt-price {
    display: inline-block; 
    font-size: 0.85rem;
    font-weight: 700;
    color: #A96748;
    background: rgba(169, 103, 72, 0.1); 
    padding: 6px 14px;
    border-radius: 30px;
}

/* Slimmer Card Button */
.rt-book-btn {
    width: 100%;
    background-color: #EBE2D5; 
    color: #666;
    border: none;
    padding: 14px; /* Reduced */
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.rt-book-btn:hover {
    background-color: #A96748;
    color: #fff;
}

/* --- MODAL STYLING --- */
.rt-modal { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.6); }
.rt-modal-content { background-color: #FAFAFA; margin: 5% auto; padding: 30px 40px; border-radius: 12px; width: 90%; max-width: 600px; position: relative; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.rt-close { position: absolute; right: 20px; top: 15px; font-size: 24px; font-weight: bold; cursor: pointer; }
#rt-modal-title { text-align: center; font-weight: 700; margin-bottom: 25px; font-size: 1.5rem; letter-spacing: 1px; }
.rt-form-row { display: flex; gap: 15px; }
.rt-input-group { margin-bottom: 15px; flex: 1; }
.rt-input-group label { display: block; font-size: 0.75rem; font-weight: 700; margin-bottom: 5px; letter-spacing: 1px; color: #000; }
.rt-input-group input, .rt-input-group textarea { width: 100%; padding: 10px 12px; border: 1px solid #ccc; border-radius: 6px; font-family: 'Montserrat', sans-serif; background: #fff; box-sizing: border-box; }

#rt-booking-form .rt-submit-btn {
    width: 100% !important;
    background-color: #EBE2D5 !important;
    color: #666 !important;
    border: none !important;
    padding: 15px !important;
    border-radius: 6px !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    margin-top: 10px !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    transition: all 0.3s ease !important;
}

#rt-booking-form .rt-submit-btn:hover { background-color: #A96748 !important; color: #fff !important; }

@media (max-width: 600px) { .rt-form-row { flex-direction: column; gap: 0; } }