:root {
    --pragraph-02: Inter;
  
    --pragraph-02-size: 16px;
    --label-01-size: 20px;
    --buttons-big-size: 18px;
    --display-03-size: 28px;
    --font-size-sm: 14px;
    --font-size-13xl: 32px;
    --font-size-3xl: 22px;
    --font-size-smi: 13px;
  
    --primary: #428561;
    --secondary: #1c5f3b;
    --color-whitesmoke-100: #f6f5f6;
    --color-whitesmoke-200: #f3f7f4;
    --color-whitesmoke-300: #f4f3f4;
    --color-whitesmoke-400: rgba(231, 238, 234, 0.5);
    --color-gray-100: #1a181a;
    --color-gray-200: rgba(255, 255, 255, 0.05);
    --color-gray-300: rgba(26, 24, 26, 0.05);
    --color-gray-400: rgba(255, 255, 255, 0.8);
    --color-gray-500: rgba(99, 99, 99, 0.525);
    --color-gray-600: rgba(26, 24, 26, 0.6);
    --color-gray-700: rgba(26, 24, 26, 0.7);
    --color-gray-800: rgba(26, 24, 26, 0.5);
    --color-gray-900: rgba(26, 24, 26, 0.1);
    --color-gray-1000: rgba(26, 24, 26, 0.8);
    --color-seagreen-100: #428561;
    --color-seagreen-200: #1c5f3b;
    --color-seagreen-300: rgba(28, 95, 59, 0.1);
    --color-mediumseagreen: #00c270;
    --yellow: #e8a547;
    --bg: #f8f8f8;
  }

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--bg);
    min-width: 360px;
    overflow-x: hidden;
}

h3, p {
    margin: 0;
}

.hidden {
    display: none;
}




.top-navigation {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    background: linear-gradient(90deg, #ffffff, #f3f3f3);
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #e0e0e0;
}

.menu-title {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    overflow-x: hidden;
    overflow-wrap: break-word;
}

.restaurant-icon {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.cart-icon {
    height: 24px;
    width: 24px;
    margin-right: -20px;
}

.menu-image {
    height: 24px;
    width: 24px;
    cursor: pointer;
}

.bg-primary {
    background-color: var(--primary);
}
.text-primary {
    color: var(--primary);
    font-weight: bold;
}


.menu-section {
    padding: 20px;
}

.restaurant-info {
    position: relative;
    overflow: hidden;
    padding: 10px;
}

.food-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    overflow: hidden;
    border-radius: 8px;
}

.bottom-left-icon {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: white;
    border-radius: 8px;
    padding: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.bottom-left-icon img {
    width: 70px;
    height: 70px;
    display: block;
}

.bottom-right-button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: white;
    color: black;
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    text-align: center;
    white-space: nowrap;
}

.section-description {
    color: var(--color-gray-100);
    font-size: 14px;
    margin-bottom: 20px;
}




.dish-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--color-gray-100);
}

.dish-price {
    font-size: 16px;
    color: var(--primary);
    margin: 5px 0;
}

.dish-description {
    font-size: 14px;
    color: var(--color-gray-500);
}

.dish-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
}




.info-banner {
    position: fixed;
    bottom: 84px;
    width: 100%;
    background-color: var(--primary);
    color: white;
    text-align: center;
    padding: 5px 0;
    font-size: 14px;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.2);
}

.button-icon {
    height: 20px;
    width: 20px;
    margin-right: 10px;
}

.waiter-btn {
    background-color: var(--color-gray-100);
}