/**
 * Menu Shortcode Styles
 * Base structure - ready for custom styling
 */

/* ========================================
   WRAPPER
   ======================================== */
.ostro-menu-wrapper {
    /* Main container */
}

/* ========================================
   TABS NAVIGATION
   ======================================== */
.menu-tabs-nav {
    display: flex;
}

.menu-tab-btn {
    /* Single tab button */
    background: none;
    border: none;
    cursor: pointer;
}

.menu-tab-btn .title_tabs {
    /* Tab title text */
}

.menu-tab-btn .tab-arrow {
    /* SVG arrow - hidden by default */
    display: none;
}

.menu-tab-btn.active .tab-arrow {
    /* Show arrow on active tab */
    display: block;
}

/* ========================================
   TABS CONTENT
   ======================================== */
.menu-tabs-content {
    /* Content wrapper */
}

.menu-tab-panel {
    /* Single tab panel */
    display: none;
}

.menu-tab-panel.active {
    /* Active panel visible */
    display: block;
}

/* ========================================
   MENU GRID
   ======================================== */
.menu-grid {
    /* Grid container - 3 columns */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

/* Responsive - 2 columns on tablets */
@media (max-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive - 1 column on mobile */
@media (max-width: 640px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
    .menu-tabs-nav {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .menu-tab-btn {
        flex-shrink: 0;
    }
}

/* ========================================
   MENU ITEM BOX
   ======================================== */
.menu-item-box {
    /* Single menu item container */
}

/* ========================================
   FEATURED IMAGE & BADGES
   ======================================== */
.menu-item-image {
    /* Image wrapper */
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.menu-item-image .menu-thumb {
    /* Featured image */
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-thumb-placeholder {
    /* Placeholder if no image */
    width: 100%;
    height: 100%;
    background: #f0f0f0;
}

.menu-badges {
    /* Badges container - top right */
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
}

.menu-badges img {
    /* Badge images */
    display: block;
}

.badge-nowosc {
    /* Nowość badge */
}

.badge-promocja {
    /* Promocja badge */
}

/* ========================================
   CONTENT AREA
   ======================================== */
.menu-item-content {
    /* Content wrapper below image */
}

.menu-item-category {
    /* Rodzaj (taxonomy term) */
}

.menu-item-header {
    /* Grid container for title and price */
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: start;
}

.menu-item-title {
    /* Menu item title */
    margin: 0;
}

.menu-item-price {
    /* Price from ACF */
}

.menu-item-description {
    /* Short description from ACF */
}

/* ========================================
   EMPTY STATE
   ======================================== */
.menu-no-items {
    /* No items message */
}
