/*
* ================================================
* layout.css
* サイト全体の骨格（ヘッダー、フッター、レイアウトコンテナ等）を定義
* ================================================
*/


/* ================================================
 * 1. 基本レイアウトコンテナ
 * ================================================ */
 .global_container {
    width: 100%;
    margin: 0px auto;
    display: flex;
}

.global_container__inner {
    display: flex;
    gap: 40px;
    margin: 0 auto;
}

.main-container {
    width: 100%;
    /* padding: 10px 0; */
}


/* ================================================
 * 2. ヘッダー (.site-header)
 * ================================================ */
.site-header {
    background-color: var(--primary);
    color: var(--white);
    top: 0;
    z-index: 100;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
    margin-bottom: 6px;
}

/* --- ヘッダートップエリア --- */
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.625rem 0.75rem 0.625rem; /* 10px 12px 0 */
}

.logo img {
    height: 2.75rem; /* 44px */
    display: block;
}

.header-actions {
    display: flex;
    gap: 1.25rem; /* 20px */
    align-items: center;
}

.header-actions img {
    height: 1.625rem; /* 26px */
    width: auto;
    filter: brightness(0) invert(1);
}

.header-icon {
    position: relative;
    display: block
    color: var(--white);
}

.notification-badge {
    position: absolute;
    top: -0.375rem;
    right: -0.375rem;
    background-color: var(--attention);
    color: var(--white);
    font-size: var(--font-xxxs);
    font-weight: bold;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- ハンバーガーメニューボタン --- */
.hamburger-menu {
    background: none;
    border: none;
    padding: 0.5rem; /* 8px */
    cursor: pointer;
    position: relative;
    width: 2.5rem; /* 40px */
    height: 2.5rem; /* 40px */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger-icon,
.hamburger-icon::before,
.hamburger-icon::after {
    content: '';
    display: block;
    width: 1.5rem; /* 24px */
    height: 2px;
    background-color: var(--white);
    position: absolute;
    transition: transform 0.3s ease;
}

.hamburger-icon::before {
    transform: translateY(-0.5rem); /* -8px */
}

.hamburger-icon::after {
    transform: translateY(0.5rem); /* 8px */
}


/* --- ユーザー情報エリア --- */
.user-info {
    background-color: var(--white);
    color: var(--main-black);
    font-size: var(--font-sm); /* 14px */
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0.2rem 0rem;
}

.user-info__details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem 0;
}

.user-info__name-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.user-info__name {
    font-weight: 500;
}

.user-info__points {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: auto;
}

.user-info__point-label {
    color: var(--attention);
    font-weight: 700;
    font-size: var(--font-xs); /* 12px */
    background-color: rgba(231, 0, 11, 0.1);
    padding: 0.125rem 0.25rem;
    border-radius: 0.25rem;
}

.user-info__point-value {
    color: var(--attention);
    font-weight: 700;
    font-size: var(--font-base); /* 16px */
}

.user-info__settings img {
    width: 1.25rem;
    height: 1.25rem;
    opacity: 0.6;
}

/* --- メンバーシップ情報エリア --- */
.membership-info {
    display: flex;
    justify-content: flex-start;
    gap: 6px;
    background-color: var(--white);
    padding: 0.4rem 0.5rem;
    border-bottom: 1px solid var(--global-gray-20);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    box-sizing: border-box;
}

.membership-item {
    display: flex;
    align-items: center;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    border: 1px solid var(--global-gray-20);
    min-width: max-content;
}

.membership-name {
    font-size: var(--font-xxs); /* 11px */
    color: var(--white);
    font-weight: 700;
    white-space: nowrap;

}

.membership-item:nth-child(1) { background: var(--webpaper); }
.membership-item:nth-child(2) { background: var(--salon); }
.membership-item:nth-child(3) { background: var(--gold2); }
.membership-item:nth-child(4) { background: var(--grd); }

.membership__status {
    font-size: var(--font-xxs); /* 11px */
    font-weight: 500;
    color: var(--dark-gray);
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    border: 1px solid var(--global-gray-20);
    background-color: var(--white);
    margin-left: 0.25rem;
    white-space: nowrap;
}


/* ================================================
 * 3. ナビゲーション
 * ================================================ */

/* --- メインナビゲーション --- */
.main-nav {
    display: flex;
    justify-content: space-around;
    padding: 6px 0;
    border-bottom: 1px solid var(--global-gray-20);
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem; /* 4px */
    font-size: var(--font-xxxs); /* 10px */
    color: var(--dark-gray);
    position: relative;
    padding: 0 0.125rem;
    transition: all 0.2s ease;
    z-index: 2;
    width: 3.75rem; /* 60px */
}

.nav-item.active { color: var(--primary); }
.nav-item:hover .nav-text { color: var(--primary); }

.nav-item::before { /* 三角形のインジケーター */
    content: '';
    position: absolute;
    bottom: -1rem; /* -16px */
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 0.75rem solid transparent;
    border-right: 0.75rem solid transparent;
    border-bottom: 0.75rem solid var(--menuBar-100);
    opacity: 0;
    transition: opacity 0.2s ease, bottom 0.2s ease;
    z-index: 3;
}

.nav-item.active::before,
.nav-item:hover::before {
    opacity: 1;
    bottom: -0.625rem; /* -10px */
}

.icon-circle {
    width: 3.4375rem; /* 55px */
    height: 3.4375rem; /* 55px */
    border-radius: 50%;
    background-color: var(--white);
    border: 1px solid var(--global-gray-20);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.2s ease;
    color: var(--white);
    font-size: var(--font-xs);
    font-weight: 700;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
}

.nav-item:hover .icon-circle {

    background-color: var(--primary);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
}

.nav-item.active .icon-circle {
    border-color: var(--primary);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
    background-color: var(--primary);
    margin-bottom: 0.625rem; /* 10px */
}

.icon-circle.new {
    position: relative;
}

.new-badge {
    position: absolute;
    top: -0.3125rem; /* -5px */
    right: -0.3125rem; /* -5px */
    font-weight: 700;
    background-color: var(--attention);
    color: white;
    border-radius: 0.625rem;
    padding: 0.125rem 0.3125rem;
    font-size: 0.5rem; /* 8px */
    line-height: 1;
}

.icon-circle img {
    width: 2rem; /* 40px */
    height: 2rem; /* 40px */
    transition: transform 0.2s ease;
    margin-bottom: 2px;
}

.nav-item:nth-child(3) .icon-circle img {
    width: 2.4rem;
    height: 2.4rem;
    margin-bottom: -2px;
}
.nav-item:hover .icon-circle img,
.nav-item:hover .nav-icon {
    transform: scale(1.1);
}

.nav-text {
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    transition: color 0.2s ease;
    color: var(--primary);
}

.nav-item:hover .nav-text,
.nav-item.active .nav-text {
    color: var(--white);
}

.nav-icon {
    width: 1.375rem; /* 22px */
    height: 0.9375rem; /* 15px */
    flex-shrink: 0;
    color: var(--dark-gray);
    transition: all 0.2s ease;
}

.nav-item.active .nav-icon {
    color: var(--primary);
}


/* --- サブナビゲーション --- */

.nav-group {
    background-color: var(--global-gray-20);
    position: relative;
    overflow: hidden;
}

/* 背景画像をぼかして敷く */
.nav-group::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/img/common/bg_menu.png?v=2');
    background-size: cover;
    background-position: bottom;
    filter: blur(2px);
    transform: scale(1.05); /* ぼかしのはみ出しをカバー */
    z-index: 0;
    pointer-events: none;
}

/* 半透明の黒オーバーレイ */
.nav-group::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(152, 152, 152, 0.5);
    z-index: 1;
    pointer-events: none;
}

/* 中身を前面に */
.nav-group > * {
    position: relative;
    z-index: 2;
}

.sub-nav {
    position: relative;
    background-color: var(--menuBar-100);
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    margin-top: -4px;
    
}

.sub-nav-scroll {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 0.75rem;
    position: relative;
}

.salon .sub-nav {
    background-color: #c812bc;
}
.salon .nav-item::before { /* 三角形のインジケーター */
    border-bottom: 0.75rem solid #c812bc;
}
.webpaper .sub-nav {
    background-color: #006d2f;
}
.webpaper .nav-item::before { /* 三角形のインジケーター */
    border-bottom: 0.75rem solid #006d2f;
}
.premium .sub-nav {
    background-color: #ac943b;
}
.premium .nav-item::before { /* 三角形のインジケーター */
    border-bottom: 0.75rem solid #ac943b;
}



.sub-nav-scroll::-webkit-scrollbar {
    display: none;
}

.sub-nav-item {
    padding: 0.625rem 1rem; /* 10px 16px */
    font-size: 0.8125rem; /* 13px */
    font-weight: 500;
    color: var(--white);
    white-space: nowrap;
    position: relative;
    transition: color 0.2s ease;
}
.sub-nav-item:hover { color: #f2ff00; }
.sub-nav-item.active { color: #f2ff00; font-weight: 700; }

.sub-nav-indicator { /* JSで動かすインジケーター */
    position: absolute;
    bottom: 0;
    height: 3px;
    background-color: #f2ff00;
    transition: all 0.3s ease;
}

nav.sub-nav .sub-nav-scroll a { position: relative; }
nav.sub-nav .sub-nav-scroll a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: #f2ff00; display: none; }
nav.sub-nav .sub-nav-scroll a.active::after { display: block; }


/* ================================================
 * 4. サイドバー (PC表示用)
 * ================================================ */
.sidebar-container {
    display: none; /* モバイルでは非表示 */
}


/* ================================================
 * 5. フッター
 * ================================================ */
.site-footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 1.5rem 1rem;
    font-size: 0.625rem; /* 10px */
    line-height: 1.6;
    margin-top: 20px;
}

.footer-logo {
    margin-bottom: 1rem;
    text-align: center;
}
.footer-logo img {
    height: 1.5rem; /* 24px */
    display: inline-block;
}

.footer-nav {
    text-align: center;
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem 0.75rem; /* 4px 12px */
}
.footer-nav a {
    font-size: var(--font-xs); /* 12px */
}

.footer-notes {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 0;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem; /* 8px */
}

.copyright {
    text-align: center;
    font-size: var(--font-xs); /* 12px */
}

/* ================================================
 * 6. オフキャンバスメニュー（ドリルダウン式）
 * ================================================ */
body.menu-open {
    overflow: hidden;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.side-menu {
    position: fixed;
    top: 0;
    left: -100%; /* ← 左に隠すように変更 */
    width: 320px;
    max-width: 85%;
    height: 100%;
    background-color: #fff;
    z-index: 1002;
    transition: left 0.5s ease-in-out; /* ← アニメーション対象をleftに変更 */
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1); /* 影の向きを調整 */
    transform: translateZ(0); 
    will-change: left; /* ← アニメーションのヒントをleftに変更 */
}
.side-menu.is-active {
    left: 0;
}

/* --- メニューヘッダー --- */
.side-menu .menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 2px solid #f0f0f0;
    flex-shrink: 0;
    background-color: #fafafa;
}

.side-menu .menu-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.side-menu .close-menu {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 5px;
}
.side-menu .close-menu:hover { color: #333; }

.side-menu .back-button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    color: #666;
    padding: 5px;
}
.side-menu .back-button:hover { color: #333; }
.side-menu .back-button::before {
    content: '‹';
    font-size: 24px;
    margin-right: 5px;
}

/* --- メニューコンテンツ --- */
.menu-content-wrapper {
    flex-grow: 1;
    overflow: hidden;
}

.menu-content {
    display: flex;
    width: 200%; /* ドリルダウン用 */
    height: 100%;
    transition: transform 0.3s ease-in-out;
}
.menu-content.submenu-active {
    transform: translateX(-50%);
}

.menu-level-1,
.menu-level-2 {
    width: 50%;
    flex-shrink: 0;
    overflow-y: auto;
    padding: 10px 0;
}

.menu-item,
.submenu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s;
}
.menu-item:hover,
.submenu-item:hover {
    background-color: #f8f9fa;
}

.menu-toggle { cursor: pointer; }
.submenu-arrow { color: #8A2BE2; font-weight: bold; font-size: 18px; }


/*
* ================================================
* 7. レスポンシブスタイル
* ================================================
*/

/* --------------------------------
 * モバイル表示 (〜767px)
 * -------------------------------- */
@media (max-width: 767px) {
    .global_container__inner {
        flex-direction: column-reverse;
        gap: 0;
        width: 100%;
    }

    .sidebar-container {
        width: 100%;
        background-color: #eee;
        display: none; /* モバイルでは非表示 */
    }

    .header-top {
        padding: 0.5rem 0.625rem 0.5rem; /* 8px 10px 0 */
    }
    .logo img {
        height: 3.25rem; /* 36px */
        position: relative;
        left: 5%;   
    }

    .header-actions {
        display: flex;
        gap: 10px; 
        align-items: center;
    }
    
    .header-actions img {
        height: 20px;
        width: auto;
        filter: brightness(0) invert(1);
    }
    
    .header-icon {
        position: relative;
        display: block
        color: var(--white);
    }

    .main-nav {
        /* padding: 0.75rem 0; */
    }
    .nav-item {
        width: 3.125rem; /* 50px */
    }
    .icon-circle {
        width: 4rem; /* 80px */
        height: 4rem; /* 80px */
    }
    .nav-text {
        font-size: 0.5625rem; /* 9px */
    }

    .footer-nav {
        gap: 0.5rem;
        font-size: 0.6875rem; /* 11px */
    }
}


/* --------------------------------
 * PC表示 (768px〜)
 * -------------------------------- */
@media (min-width: 768px) {
    .global_container__inner {
        flex-direction: row;
    }

    .main-container {
        width: 600px;
        max-width: 600px;
    }

    .site-header {
        /* position: sticky; */
        margin-bottom: 40px;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .main-nav {
        justify-content: flex-start;
        padding: 0.75rem 1rem;
    }
    .nav-item {
        margin-right: 1rem;
    }

    .nav-group {
        display: none;
    }

    /* --- PC: ユーザー情報カードをセンター寄せ＆枠デザイン --- */
    

    .user-info-group {
        max-width: 980px;
        margin: 16px auto;
        background: #fff;
        color: var(--main-black);
        border-radius: 12px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
        border: 1px solid var(--global-gray-20);
        overflow: hidden;
        display: none;
    }
    .user-info-group .user-info {
        padding: 12px 16px;
    }
    .user-info-group .membership-info {
        display: flex;
        gap: 8px;
        padding: 10px 16px 14px;
        border-top: 1px solid var(--global-gray-20);
        background: linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0));
    }
    /* カード内ではメンバーシップタグをライト配色に上書き */
    .user-info-group .membership-item {
        background: #fff;
        border: 1px solid var(--global-gray-20);
        border-radius: 6px;
        padding: 4px 8px;
    }
    .user-info-group .membership-name {
        color: var(--main-black);
    }

    /* --- PC用サイドバー --- */
    .sidebar-container {
        display: block;
        width: 280px;
        background-color: #f5f5f5;
        color: var(--main-black);
        padding: 20px;
    }

    /* --- サイドバー内: ユーザー情報（コンパクト版） --- */
    .sidebar-container .user-info {
        background: #fff;
        border: 1px solid var(--global-gray-20);
        border-radius: 8px;
        overflow: hidden;
        margin-bottom: 12px;
    }
    .sidebar-container .user-info__details {
        display: grid;
        grid-template-columns: 1fr auto; /* 左: 名前+設定, 右: ポイント */
        align-items: center;
        padding: 8px 10px;
        gap: 8px;
    }
    .sidebar-container .user-info__name-container { display: flex; align-items: center; gap: 6px; min-width: 0; }
    .sidebar-container .user-info__name {
        font-size: 0.9rem;
        font-weight: 600;
        /* 省略を無効化して折り返しを許可 */
        max-width: none;
        overflow: visible;
        text-overflow: clip;
        white-space: normal;
        display: inline;
    }
    .sidebar-container .user-info__settings img { width: 1rem; height: 1rem; opacity: .6; }
    .sidebar-container .user-info__points { gap: 4px; flex-shrink: 0; white-space: nowrap; justify-self: end; }
    .sidebar-container .user-info__point-label { font-size: 0.7rem; padding: 1px 4px; }
    .sidebar-container .user-info__point-value, 
    .sidebar-container .point-value { font-size: 0.95rem; font-weight: 700; }

    /* メンバーシップ情報は縦積み・行間を詰める */
    .sidebar-container .membership-info {
        display: flex;
        flex-direction: column;
        gap: 6px;
        padding: 8px 10px 10px;
        border-top: 1px solid var(--global-gray-20);
        background: #fff;
    }
    .sidebar-container .membership-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        padding: 4px 6px;
        border: 1px solid var(--global-gray-20);
        border-radius: 6px;
        background: #fff;
    }

    .membership-item:nth-child(1) { color: var(--white); background: var(--webpaper); }
    .membership-item:nth-child(2) { color: var(--white); background: var(--salon); }
    .membership-item:nth-child(3) { color: var(--white); background: var(--gold2); }
    .membership-item:nth-child(4) { color: var(--white); background: var(--grd); }

    .sidebar-container .membership-name { font-size: 0.8rem; font-weight: 600; }
    .sidebar-container .membership__status { font-size: 0.72rem; }

    .menu-section {
        margin-bottom: 15px;
    }
    .menu-section__title {
        display: flex;
        align-items: center;
        justify-content: start;
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 8px;
        padding: 8px 6px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        cursor: pointer;
        transition: all 0.3s ease;
        user-select: none;
    }
    .menu-section__title .icon-circle {
        margin-right: 8px;
        width: 2.4rem;
        height: 2.4rem;
    }
    .menu-section__title .icon-circle img {
        width: 1.6rem;
        height: 1.6rem;
    }

  

    .dropdown-arrow {
        transition: transform 0.3s ease;    
        opacity: 1;
    }
    .dropdown-arrow img {
        width: 1rem;
        height: 1rem;
        margin-left: 8px;
    }
    .menu-section__title.open .dropdown-arrow { transform: rotate(180deg); }

    .menu-section__list {
        list-style: none;
        padding: 0 0 0 20px;
        margin: 0;
    }
    .dropdown-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease;
        opacity: 0;
    }
    .dropdown-content.open {
        max-height: 300px; /* 十分な高さを確保 */
        opacity: 1;
        margin-bottom: 8px;
    }

    .menu-section__item { margin-bottom: 0px; }
    .menu-section__link {
        display: block;
        padding: 4px 8px;
        color: rgba(90, 90, 90, 0.9);
        text-decoration: none;
        border-radius: 6px;
        transition: background-color 0.2s ease, color 0.2s ease;
        font-size: 0.9rem;
        position: relative;
    }
    .menu-section__link:hover {
        background: rgba(0, 0, 0, 0.04);
        color: #333;
    }
    .menu-section__link.active {
        background: linear-gradient(135deg, #ff6b35, #f7931e);
        color: #fff;
        box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
        font-weight: 600;
    }
    .menu-section__link.active::before {
        content: '';
        position: absolute;
        left: -14px;
        top: 50%;
        transform: translateY(-50%);
        width: 0.75rem;
        height: 0.75rem;

        /* 旧: 背景画像で直接表示
        background-image: url('/img/icons/chevron-right.svg');
        background-repeat: no-repeat;
        background-size: contain;
        */

        /* 新: マスクで形だけ抜き、背景色で着色（黒） */
        background-color: #000;
        -webkit-mask-image: url('/img/icons/chevron-right.svg');
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-size: contain;
        -webkit-mask-position: center;
        mask-image: url('/img/icons/chevron-right.svg');
        mask-repeat: no-repeat;
        mask-size: contain;
        mask-position: center;

        opacity: 0.9;
}
    
    .menu-section.active .menu-section__title {
        background: rgba(255, 107, 53, 0.1);
        border-color: rgba(255, 107, 53, 0.3);
    }

}


/* プレミアムサイドバー（反転配色） */
.sidebar-container.premium,
.premium .sidebar-container {
    width: 280px;
    background-color: var(--menuBar-100);
    color: #fff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-container.premium .menu-section__title,
.premium .sidebar-container .menu-section__title {
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.sidebar-container.premium .dropdown-arrow,
.premium .sidebar-container .dropdown-arrow {
    color: #fff;
}
.sidebar-container.premium .dropdown-arrow img,
.premium .sidebar-container .dropdown-arrow img {
    filter: brightness(0) invert(1);
}
.sidebar-container.premium .menu-section__link,
.premium .sidebar-container .menu-section__link {
    color: rgba(255, 255, 255, 0.8);
}
.sidebar-container.premium .menu-section__link:hover,
.premium .sidebar-container .menu-section__link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}
.sidebar-container.premium .menu-section__link.active::before,
.premium .sidebar-container .menu-section__link.active::before {
    filter: brightness(0) invert(1);
}