:root {
    --primary-orange: #f39c12;
    --text-dark: #333;
    --text-muted: #777;
    --bg-light: #f9f9f9;
}

.menu-container {
    max-width: 1300px;
    width: 1300px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 50px;
    /* padding: 20px; */
}

.menu-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.menu-item .item-image {
    width: 100px;
    height: 100px !important;
    border-radius: 12px !important;
    object-fit: cover;
    flex-shrink: 0;
    background-color: #eee;
}

.item-details {
    flex-grow: 1;
}

.item-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 5px;
}

.item-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    white-space: nowrap;
}

.spacer {
    flex-grow: 1;
    border-bottom: 1px dotted #ccc;
    margin: 0 10px;
}

.item-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.item-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    line-height: 1.4;
}

.badge-container {
    display: flex;
    justify-content: flex-end;
}

.badge {
    font-size: 0.7rem;
    font-weight: bold;
    color: var(--primary-orange);
    border: 1px solid #ffe0b2;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    background-color: #fffaf0;
}

/* Responsive Design */
@media (max-width: 850px) {
    .menu-container {
        grid-template-columns: 1fr;
        gap: 25px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .menu-item {
        flex-direction: column;
    }

    .menu-item .item-image {
        width: 100%;
        height: 150px !important;
        object-fit: cover;
    }

    .item-name {
        font-size: 1.1rem;
        white-space: normal;
    }
}