.common-tab-wrap {
    width: 100%;
    background: transparent;
    position: relative;
}
.tab-list {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.tab-item {
    position: relative;
    padding: 8px 14px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 2.5px;
}
.tab-text {
    font-size: 0.825rem;
    color: #ffffff;
    opacity: 0.7;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}
.tab-item.active .tab-text {
    opacity: 1;
}
.tab-indicator {
    position: absolute;
    bottom: 0;
    height: 3px;
    background: linear-gradient(180deg, #ffb74d 0%, #ff9800 100%);
    border-radius: 2px 2px 0 0;
    transition: left 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}