/* Toast Menu - Elegant Restaurant Style */

.toast-menu-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Georgia', 'Times New Roman', serif;
}

/* Menu Tabs */
.toast-menu-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.toast-tab-btn {
    background: #f5f5f5;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
    color: #333;
}

.toast-tab-btn:hover {
    background: #e0e0e0;
}

.toast-tab-btn.active {
    background: #d4a574;
    color: white;
}

/* Menu Content */
.toast-menus-container {
    position: relative;
}

.toast-menu-content {
    display: none;
    animation: fadeIn 0.5s ease-in;
}

.toast-menu-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Menu Sections */
.toast-menu-section {
    margin-bottom: 60px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #d4a574;
    color: #333;
    font-family: 'Arial', sans-serif;
}

/* Menu Items Grid - 2 Column Layout */
.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    column-gap: 40px;
}

/* Individual Menu Item Row */
.menu-item-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px dotted #d0d0d0;
    gap: 20px;
}

.menu-item-row:last-child {
    border-bottom: none;
}

/* Item Info (left side) */
.item-info {
    flex: 1;
}

.item-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px 0;
    line-height: 1.4;
    font-family: 'Georgia', serif;
}

.item-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 5px 0 0 0;
    font-style: italic;
    font-family: 'Georgia', serif;
}

/* Item Price (right side) */
.item-price-col {
    flex-shrink: 0;
    align-self: flex-start;
    padding-top: 2px;
}

.item-price {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    font-family: 'Georgia', serif;
}

/* Empty state */
.no-items {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-style: italic;
    font-size: 16px;
}

.toast-menu-error {
    background: #f8d7da;
    color: #721c24;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin: 20px 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .menu-items-grid {
        grid-template-columns: 1fr;
        column-gap: 0;
    }
}

@media (max-width: 768px) {
    .toast-menu-wrapper {
        padding: 0 15px;
    }
    
    .toast-menu-tabs {
        gap: 5px;
    }
    
    .toast-tab-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 20px;
        letter-spacing: 1.5px;
    }
    
    .menu-items-grid {
        grid-template-columns: 1fr;
    }
    
    .item-title {
        font-size: 15px;
    }
    
    .item-desc {
        font-size: 12px;
    }
    
    .item-price {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .menu-item-row {
        flex-direction: column;
        gap: 8px;
    }
    
    .item-price-col {
        align-self: flex-start;
    }
}

/* Print Styles */
@media print {
    .toast-menu-tabs {
        display: none;
    }
    
    .toast-menu-content {
        display: block !important;
    }
    
    .toast-menu-section {
        page-break-inside: avoid;
    }
    
    .menu-item-row {
        page-break-inside: avoid;
    }
}