.kitchen-header {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 10;
    padding: 10px 0;
    margin-bottom: 10px;
    border-bottom: 1px solid #ccc;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.kitchen-options-list {
    display:flex;
    flex-wrap:wrap;
}

.kitchen-option-card {
    display:flex;
    flex-direction:column;
    align-items:center;
    width:120px;
    margin:10px;
    padding:10px;
    border:1px solid #ddd;
    border-radius:5px;
    cursor:pointer;
    transition:0.3s;
    text-align:center;
    background:#f9f9f9;
}
.kitchen-option-card:hover {
    background:#eef;
    border-color:#99f;
}
.kitchen-option-card img {
    width:60px;
    height:auto;
    margin-bottom:5px;
    border:1px solid #ccc;
    padding:2px;
    border-radius:3px;
}
.kitchen-option-card input.kitchen-option {
    display:none;
}
.kitchen-option-card input.kitchen-option:checked + img {
    border-color:#36c;
    box-shadow:0 0 5px #36c;
}
.kitchen-option-card span {
    font-size:14px;
    display:block;
    margin-bottom:3px;
}
.kitchen-option-card small {
    font-size:12px;
    color:#555;
}
.kitchen-option-card input.kitchen-option-qty {
    width:50px;
    margin-top:5px;
}
