/* ===== Icon Dropdown Menu (Kitchen) ===== */
.kitchen-menu {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.kitchen-btn {
    background: linear-gradient(90deg, #dbeafe, #bfdbfe);
    color: #1e3a8a;
    border: none;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.25s ease-in-out;
}

.kitchen-arrow {
    transition: transform .25s ease;
}

.kitchen-menu:hover .kitchen-dropdown,
.kitchen-btn:focus + .kitchen-dropdown {
    display: block;
}
/* Dropdown Panel */
.kitchen-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0; /* ✔ anchor below kitchen button */
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 5000 !important;
    display: none;
    flex-direction: column;
    min-width: 150px; /* optional: keeps menu wide enough */
}

/* Keep menu open while hovering anywhere inside */
.kitchen-menu:hover .kitchen-dropdown {
    display: flex;
}

/* Dropdown Items */
.kitchen-dropdown button {
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #1e3a8a;
    padding: 8px 12px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.25s;
    text-align: left;
    white-space: nowrap;
}

.kitchen-dropdown button:hover {
    background: rgba(191,219,254,0.6);
}

@keyframes menuFade {
    from { opacity: 0; transform: translateY(3px); }
    to { opacity: 1; transform: translateY(0); }
}
