* {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background:  #f5f5f5;
    margin: 0;
    color: #333;
}

header#app-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: linear-gradient(135deg, #fff7e6 0%, #fffde9 100%);
    box-shadow: 0 2px 8px rgba(150, 133, 107, 0.15);
    position: sticky;
    top: 0;
    z-index: 100;
}

#search-input {
    flex: 1;
    padding: 8px 14px;
    border: 1px solid #e5c993;
    border-radius: 20px;
    font-size: 14px;
    background: #fffef5;
    color: #333;
    outline: none;
    transition: border-color 0.2s;
}

#search-input:focus {
    border-color: #d4a574;
    background: #fff;
}

. icon-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #a0783c;
    padding: 6px;
    border-radius:  4px;
    transition: background 0.2s;
}

.icon-btn:hover {
    background: rgba(160, 120, 60, 0.1);
}

. icon-btn:active {
    background: rgba(160, 120, 60, 0.2);
}

#app-content {
    padding: 16px 12px;
    max-width: 600px;
    margin: 0 auto;
}

/* === Список блюд === */
.menu-list {
    list-style: none;
    padding: 0;
    margin:  0;
}

.menu-item {
    background: #fff;
    padding: 14px 16px;
    border-radius: 10px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    transition: all 0.2s;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.menu-item:hover {
    box-shadow: 0 4px 12px rgba(160, 120, 60, 0.12);
    transform: translateY(-1px);
}

.menu-item:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(160, 120, 60, 0.1);
}

.menu-title {
    font-weight: 600;
    font-size: 16px;
    color: #714f2d;
}

.menu-short {
    font-size: 13px;
    color: #a78d67;
    line-height: 1.3;
}

/* === Детали блюда === */
. dish-details {
    background: #fff;
    border-radius: 10px;
    padding: 18px;
    box-shadow:  0 1px 4px rgba(0, 0, 0, 0.08);
}

.dish-details h2 {
    margin:  0 0 12px 0;
    color: #714f2d;
    font-size: 22px;
}

.dish-details > p {
    margin: 10px 0;
    color:  #555;
    line-height: 1.6;
    font-size: 14px;
}

.dish-details b {
    color: #714f2d;
    display: block;
    margin-top: 14px;
    margin-bottom: 6px;
    font-size: 15px;
}

.dish-details ol,
.dish-details ul {
    margin: 6px 0 14px 18px;
    padding:  0;
    color: #555;
    font-size:  14px;
    line-height: 1.6;
}

.dish-details li {
    margin-bottom:  6px;
}

/* === Empty state === */
.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #999;
    font-size: 14px;
}

. empty-state svg {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
    opacity: 0.3;
}