.order-gate {
    position: fixed;
    inset: 0;
    z-index: 80;
}

.order-gate__backdrop {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(160deg, rgba(0, 0, 0, 0.7), rgba(121, 0, 0, 0.82)),
        radial-gradient(circle at top right, rgba(255, 199, 82, 0.25), transparent 30%);
    backdrop-filter: blur(10px);
}

.order-gate__panel {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 22px;
    width: min(960px, calc(100% - 28px));
    margin: 0 auto;
    padding: 36px 0;
    color: #fff;
}

.order-gate__brand img,
.order-gate__brand-fallback {
    width: 108px;
    height: 108px;
    border-radius: 28px;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
}

.order-gate__brand-fallback {
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #ffe3a0, #ffc533);
    color: #7d4200;
    font-size: 2rem;
    font-weight: 900;
}

.order-gate__copy {
    max-width: 720px;
    text-align: center;
}

.order-gate__eyebrow {
    margin: 0 0 10px;
    color: #ffe3a0;
    font-size: 0.92rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.order-gate__copy h2 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 6vw, 4rem);
    line-height: 1;
}

.order-gate__copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.05rem;
    line-height: 1.6;
}

.order-gate__options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    width: 100%;
}

.order-option {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 10px 14px;
    padding: 22px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    text-align: left;
    cursor: pointer;
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.order-option:hover,
.order-option:focus-visible {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 227, 160, 0.42);
    transform: translateY(-2px);
    outline: 0;
}

.order-option__icon {
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(255, 227, 160, 0.16);
    color: #ffe3a0;
    grid-row: span 2;
}

.order-option__icon svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
}

.order-option strong {
    align-self: end;
    font-size: 1.18rem;
}

.order-option small {
    display: block;
    grid-column: 2;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.45;
}

