/* ===== TRANSPORTER MOBILE MENU (v2 patched) ===== */
.trmob {
    position: relative;
    display: inline-flex;
    width: 30px;
    height: 44px;
    align-items: center;
    justify-content: center;
    font-size: 0;
    line-height: 0;
    vertical-align: middle;
}

.trmob__toggle {
    position: relative; width: 30px; height: 44px;
    display: inline-flex; align-items: center; justify-content: center;
    background: transparent !important; border: none; cursor: pointer;
    z-index: 10001; padding: 0; margin: 0;
    -webkit-tap-highlight-color: transparent;
    flex-shrink: 0;
    color: inherit;
}
.trmob__toggle:hover,
.trmob__toggle:active,
.trmob__toggle:focus { outline: none; background: transparent !important; color: inherit; }
.trmob__toggle:focus-visible {
    outline: 2px solid var(--tr-accent);
    outline-offset: 3px;
    border-radius: 4px;
}

.trmob__lines { position: relative; width: 24px; height: 16px; }
.trmob__line {
    position: absolute; left: 0; right: 0; height: 2px;
    background: #fff; border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.2s ease, top 0.3s ease, bottom 0.3s ease;
}
.trmob__line:nth-child(1) { top: 0; }
.trmob__line:nth-child(2) { top: 7px; }
.trmob__line:nth-child(3) { bottom: 0; }

.trmob__toggle.is-open .trmob__line:nth-child(1) { top: 7px; transform: rotate(45deg); }
.trmob__toggle.is-open .trmob__line:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.trmob__toggle.is-open .trmob__line:nth-child(3) { bottom: auto; top: 7px; transform: rotate(-45deg); }

.trmob__overlay {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6); z-index: 9998;
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.trmob__overlay.is-active { opacity: 1; visibility: visible; }

.trmob__container {
    position: fixed; top: var(--trmob-header-h, 60px);
    left: 0; right: 0; bottom: 0; z-index: 9999;
    display: flex; background: #111;
    border-top: 1px solid #2c2c2c;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.trmob__container.is-active { transform: translateX(0); }

.trmob__left {
    width: 76px; min-width: 76px; height: 100%;
    background: #1a1a1a; padding: 6px;
    display: flex; flex-direction: column; gap: 4px;
    border-right: 1px solid #2c2c2c;
    overflow-y: auto; -webkit-overflow-scrolling: touch;
}

.trmob__tab {
    width: 64px; min-height: 64px;
    background: transparent; border: 1px solid #242424;
    border-radius: 6px; display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    cursor: pointer; padding: 6px 2px;
    transition: background 0.2s ease, border-color 0.2s ease;
    text-decoration: none; color: #fff;
    -webkit-tap-highlight-color: transparent;
}
.trmob__tab:hover { background: #2a2a2a; }
.trmob__tab:focus-visible {
    outline: 2px solid var(--tr-accent);
    outline-offset: -2px;
}
.trmob__tab.is-active {
    background: #2a2a2a;
    border-color: color-mix(in srgb, var(--tr-accent) 50%, transparent);
}

.trmob__tab-icon {
    width: 28px; height: 28px; margin-bottom: 4px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; border-radius: 4px;
}
.trmob__tab-icon svg { width: 24px; height: 24px; fill: rgba(255,255,255,0.7); }
.trmob__tab.is-active .trmob__tab-icon svg { fill: var(--tr-accent); }
.trmob__tab-icon img { width: 100%; height: 100%; object-fit: contain; }

.trmob__tab-label {
    font-family: 'FiraGo', sans-serif;
    font-size: 9px; text-align: center;
    line-height: 1.2; color: rgba(255,255,255,0.6);
    letter-spacing: 0.02em;
}
.trmob__tab.is-active .trmob__tab-label { color: #fff; }

.trmob__right {
    flex: 1; height: 100%; background: #111;
    overflow-y: auto; -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding: 16px 14px 24px;
}
.trmob__right::-webkit-scrollbar { width: 3px; }
.trmob__right::-webkit-scrollbar-track { background: transparent; }
.trmob__right::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 2px; }

.trmob__section { display: none; }
.trmob__section.is-active { display: block; }

.trmob__section-title {
    font-family: 'Bebas', sans-serif;
    font-size: 22px; font-weight: 400;
    letter-spacing: 0.04em;
    color: #fff; margin: 0 0 12px 0;
}

.trmob__grid { display: grid; grid-template-columns: 1fr; gap: 8px; }

.trmob__card {
    display: flex; align-items: center; justify-content: space-between;
    height: 88px; background: #1a1a1a; border-radius: 8px;
    padding: 0 0 0 16px; overflow: hidden;
    border: 1px solid transparent; text-decoration: none;
    transition: border-color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}
.trmob__card:active,
.trmob__card:focus-visible { border-color: color-mix(in srgb, var(--tr-accent) 60%, transparent); outline: none; }

.trmob__card-text { display: flex; flex-direction: column; justify-content: center; flex: 1; min-width: 0; }
.trmob__card-name {
    color: #fff; font-family: 'Bebas', sans-serif;
    font-size: 17px; margin: 0 0 2px 0; font-weight: normal; line-height: 1.2;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.trmob__card-count {
    color: var(--tr-accent);
    font-family: 'FiraGo', sans-serif; font-size: 12px; margin: 0; font-weight: normal;
}

.trmob__card-img {
    width: 88px; height: 88px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.trmob__card-img img { width: 100%; height: 100%; object-fit: contain; }

.trmob__links { display: flex; flex-direction: column; gap: 2px; }
.trmob__link {
    display: block; padding: 14px 16px;
    background: #1a1a1a; border-radius: 8px;
    color: #fff; text-decoration: none;
    font-family: 'Bebas', sans-serif;
    font-size: 18px;
    letter-spacing: 0.04em;
    transition: background 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}
.trmob__link:active { background: #2a2a2a; }
.trmob__link:focus-visible { outline: 1px solid var(--tr-accent); outline-offset: -1px; }

.trmob__contact { margin-top: 20px; }
.trmob__contact-divider { width: 40px; height: 1px; background: rgba(255,255,255,0.1); margin-bottom: 14px; }
.trmob__contact-label {
    font-family: 'FiraGo', sans-serif; font-size: 10px;
    letter-spacing: 0.08em; color: rgba(255,255,255,0.35); margin-bottom: 4px;
}
.trmob__contact a {
    display: block; color: #fff; text-decoration: none;
    font-family: 'FiraGo', sans-serif; font-size: 14px;
    font-weight: 500; margin-bottom: 12px;
}
.trmob__social { display: flex; gap: 10px; margin-top: 14px; }
.trmob__social a {
    width: 32px; height: 32px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; margin: 0; padding: 0;
}
.trmob__social a:focus-visible { outline: 1px solid var(--tr-accent); outline-offset: 2px; }
.trmob__social svg { width: 14px; height: 14px; fill: rgba(255,255,255,0.6); }

html.trmob-locked, body.trmob-locked,
.trmob-locked .website-wrapper, .trmob-locked .page,
.trmob-locked #wrapper, .trmob-locked .main-page-wrapper,
.trmob-locked main { overflow: hidden !important; height: 100% !important; }

@media (min-width: 1025px) {
    .trmob { display: none !important; }
}
