/* Menu App Specific Styles */

.menu-app-body {
    background-color: #f8f9fa;
    /* Slightly lighter than brand-light for a clean app look */
    color: var(--brand-dark);
    line-height: 1.5;
    padding-top: 180px;
    /* Space for fixed header (nav + tabs + search) */
}

/* Header & Search */
.app-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--brand-white);
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.app-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.app-title {
    font-family: var(--font-head);
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.back-btn {
    color: var(--brand-dark);
    display: flex;
    align-items: center;
}

.mini-logo {
    height: 30px;
    width: auto;
}

.search-container {
    padding: 0 20px 10px;
}

.search-input-wrapper {
    position: relative;
    background: #f1f3f5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.search-icon {
    color: #868e96;
}

.search-input-wrapper input {
    border: none;
    background: transparent;
    padding: 12px 10px;
    width: 100%;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
}

/* Category Nav (Horizontal Scroll) */
.category-nav {
    background: var(--brand-white);
    border-top: 1px solid #f1f3f5;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.category-scroll {
    display: flex;
    padding: 10px 15px;
    gap: 15px;
}

.category-scroll::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for clean tab look */
}

.cat-tab {
    white-space: nowrap;
    text-decoration: none;
    font-family: var(--font-head);
    color: #adb5bd;
    font-size: 0.9rem;
    text-transform: uppercase;
    padding: 5px 2px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.cat-tab.active {
    color: var(--c-orange);
    border-bottom-color: var(--c-orange);
}

/* Menu Content */
.menu-app-content {
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.menu-section {
    margin-bottom: 30px;
    scroll-margin-top: 190px;
}

.category-title {
    font-family: var(--font-head);
    font-size: 1.5rem;
    color: var(--brand-dark);
    margin-bottom: 15px;
    text-transform: uppercase;
    border-left: 4px solid var(--c-orange);
    padding-left: 12px;
}

.section-meta {
    font-size: 0.85rem;
    color: #868e96;
    margin-top: -10px;
    margin-bottom: 15px;
    font-style: italic;
}

.items-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Item Card Styles */
.menu-item-row {
    background: var(--brand-white);
    padding: 16px;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: default;
}

.menu-item-row:active {
    transform: scale(0.98);
}

.menu-item-row.highlight {
    border: 1px solid rgba(255, 73, 0, 0.2);
    background: rgba(255, 73, 0, 0.02);
}

.item-info h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.item-info p {
    font-size: 0.85rem;
    color: #495057;
}

.item-price {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--c-orange);
    font-size: 1.1rem;
    white-space: nowrap;
    margin-left: 15px;
}

/* Footer Info */
.app-footer {
    text-align: center;
    padding: 40px 20px;
    color: #adb5bd;
    font-size: 0.85rem;
}

/* Desktop Optimizations */
@media (min-width: 768px) {
    .app-header-top {
        padding: 20px 5vw;
    }

    .search-container {
        padding: 0 5vw 15px;
    }

    .category-scroll {
        padding: 10px 5vw;
        justify-content: center;
    }
}