.fct-tabs {
    position: fixed;
    right: 0;
    top: var(--fct-top, 50%);
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 99999;
}

.fct-tab {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-decoration: none;
}

.fct-tab-inner {
    display: flex;
    align-items: center;
    height: var(--fct-height, 50px);
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    background: var(--fct-bg, #4e7b63);
    border: 1.5px solid var(--fct-border, #84724a);
    border-right: none;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.fct-tab:hover .fct-tab-inner {
    background: var(--fct-hover, #3d6250);
    border-color: color-mix(in srgb, var(--fct-border) 70%, white);
}

.fct-tab-icon {
    width: var(--fct-height, 50px);
    height: var(--fct-height, 50px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    order: 2;
    color: #fff;
    background: rgba(0,0,0,0.18);
    border-left: 1.5px solid rgba(132,114,74,0.45);
    transition: background 0.25s ease;
}

.fct-tab:hover .fct-tab-icon {
    background: rgba(0,0,0,0.28);
}

.fct-tab-label {
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    order: 1;
    transition: max-width 0.38s cubic-bezier(0.34, 1.1, 0.64, 1),
                padding  0.38s cubic-bezier(0.34, 1.1, 0.64, 1);
}

.fct-tab:hover .fct-tab-label {
    max-width: 220px;
    padding: 0 14px 0 16px;
}

.fct-tab-type {
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 2px;
    color: rgba(255,255,255,0.65);
    font-family: inherit;
    line-height: 1;
}

.fct-tab-value {
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    color: #fff;
    font-family: inherit;
    line-height: 1.3;
}

/* Hide on mobile always */
@media (max-width: 767px) {
    .fct-tabs { display: none !important; }
}

/* Hide on tablet when disabled — breakpoint set via inline CSS var */
@media (max-width: 1024px) {
    .fct-tabs.fct-hide-tablet { display: none !important; }
}
