.menu-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
    padding: 16px;
    background: #F5F1E3;
    border-radius: 8px;
    margin-bottom: 16px;
}

.menu-input-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-input-group label {
    font-size: 14px;
    color: #2F5233;
    min-width: 80px;
    font-weight: 500;
}

.menu-input-group input {
    width: 60px;
    padding: 6px 10px;
    border: 2px solid #2F5233;
    border-radius: 6px;
    text-align: center;
    background: white;
    color: #2F5233;
    font-family: 'Montserrat', sans-serif;
}

/* Radio button styling for menu selection */
.menu-radio {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 160px;
    justify-content: center;
}

.menu-radio input[type="radio"] {
    width: 20px;
    height: 20px;
    border: 2px solid #2F5233;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    margin: 0;
}

.menu-radio input[type="radio"]:checked {
    background: #2F5233;
    box-shadow: inset 0 0 0 3px white;
}

.radio-label {
    color: #2F5233;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    user-select: none;
}

.radio-label:hover {
    opacity: 0.8;
}

/* Menu Story Cards */
.menu-story-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.menu-story-card {
    background: #F5F1E3;
    border: 2px solid #2F5233;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.menu-story-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(47, 82, 51, 0.15);
}

.menu-story-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
}

.menu-icon {
    font-size: 24px;
    line-height: 1;
}

.menu-story-info {
    flex: 1;
}

.menu-story-title {
    color: #2F5233;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.menu-story-desc {
    color: #2F5233;
    font-size: 13px;
    opacity: 0.8;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.menu-story-link {
    color: #2F5233;
    font-size: 12px;
    text-decoration: underline;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.menu-story-link:hover {
    opacity: 1;
}

.menu-counter {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 120px;
    justify-content: center;
}

.counter-btn {
    background: #2F5233;
    color: white;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-btn:hover {
    background: #1d3220;
    transform: scale(1.1);
}

.counter-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.counter-display {
    font-weight: 600;
    color: #2F5233;
    text-align: center;
    min-width: 60px;
    font-size: 14px;
}

.menu-validation {
    background: #F5F1E3;
    border: 2px solid #2F5233;
    border-radius: 8px;
    padding: 12px 16px;
    text-align: center;
    color: #2F5233;
    font-weight: 500;
    font-size: 14px;
}

@media (max-width: 768px) {
    .menu-inputs {
        padding: 12px;
        gap: 8px;
    }
    
    .menu-input-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .menu-input-group label {
        min-width: auto;
    }
    
    .menu-story-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 16px;
    }
    
    .menu-counter {
        align-self: center;
        min-width: auto;
    }
    
    .menu-story-title {
        font-size: 15px;
    }
    
    .menu-story-desc {
        font-size: 12px;
    }
}
