/* WD Bar drinks & snacks menu board — a fixed 1920x1080 design canvas that fills the
   viewport it's cast to. #wdb-stage (in the bare template) scales the whole canvas with a
   CSS transform so it always fits full-frame with no scrollbars, on 1920x1080 or otherwise. */

#wdb-stage {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #14161a;
}

#wdb-fs-hint {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 22px;
    text-align: center;
    color: #9aa0a8;
    font-family: inherit;
    font-size: 16px;
    letter-spacing: 0.5px;
    pointer-events: none;
}

.wdb-menu {
    box-sizing: border-box;
    width: 1920px;
    min-height: 1080px;
    background: #14161a;
    color: #f4f4f4;
    padding: 56px 90px;
    font-family: inherit;
    display: flex;
    flex-direction: column;
    transform-origin: center center;
}

.wdb-menu * { box-sizing: border-box; }

.wdb-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 4px solid #EC6826;
    padding-bottom: 20px;
    margin-bottom: 32px;
}
.wdb-menu-logo {
    height: 64px;
    width: auto;
    display: block;
    flex: 0 0 auto;
}
.wdb-menu-title {
    margin: 0;
    font-size: 68px;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1;
}

.wdb-menu-body {
    flex: 1;
    column-count: 2;
    column-gap: 70px;
}

.wdb-menu-section { margin-bottom: 30px; break-inside: avoid; }
.wdb-menu-section:last-child { margin-bottom: 0; }

.wdb-menu-cat {
    margin: 0 0 12px;
    color: #EC6826;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.wdb-menu-list { list-style: none; margin: 0; padding: 0; }

.wdb-menu-item { padding: 10px 0; }

.wdb-menu-item-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
}
.wdb-menu-name {
    font-size: 26px;
    font-weight: 600;
    flex: 0 1 auto;
}
.wdb-menu-abv {
    display: inline-block;
    margin-left: 10px;
    padding: 1px 9px;
    border: 1px solid #3a3f48;
    border-radius: 7px;
    color: #aab0b8;
    font-size: 0.52em;
    font-weight: 700;
    letter-spacing: 0.5px;
    vertical-align: middle;
    white-space: nowrap;
}
.wdb-menu-dots {
    flex: 1 1 auto;
    min-width: 24px;
    height: 0;
    border-bottom: 2px dotted #3a3f48;
    transform: translateY(-0.3em);
}
.wdb-menu-price {
    flex: 0 0 auto;
    color: #EC6826;
    font-weight: 800;
    font-size: 26px;
    white-space: nowrap;
}
.wdb-menu-desc {
    margin-top: 3px;
    color: #9aa0a8;
    font-size: 15px;
    max-width: 80%;
}

.wdb-menu-item.is-soldout { opacity: 0.4; }
.wdb-menu-soldout-tag {
    color: #ff9f9c;
    font-weight: 700;
    font-size: 0.7em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wdb-menu-empty {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9aa0a8;
    font-size: 32px;
}
