.header__area {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Circular coach image with red outline */
        .membar__card .membar__info img {
            border-radius: 50% !important;
            border: 3px solid hsl(var(--base)) !important;
            object-fit: cover;
        }

        .back-to-booking {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            color: hsl(var(--white) / 0.8);
            font-size: 18px;
            font-weight: 600;
            text-decoration: none;
            margin-bottom: 25px;
            padding: 8px 0;
            transition: all 0.3s ease;
        }

        .back-to-booking:hover {
            color: hsl(var(--base));
            transform: translateX(-6px);
        }

        .back-to-booking i {
            font-size: 18px;
        }

        .coach-hero-section {
            background: hsl(var(--section-bg));
            padding: 40px 0 20px;
            position: relative;
            overflow: hidden;
        }

        .coach-hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: var(--coach-hero-banner);
            background-size: cover;
            background-position: center top;
            opacity: 0.3;
            z-index: 0;
        }

        .pending-session-banner {
            position: fixed;
            top: 90px;
            right: 20px;
            background: #111214;
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 12px;
            padding: 16px 18px;
            width: 360px;
            z-index: 9999;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
        }

        .pending-session-title {
            color: #fff;
            font-weight: 700;
            margin-bottom: 6px;
            font-size: 0.95rem;
        }

        .pending-session-text {
            color: rgba(255, 255, 255, 0.65);
            font-size: 0.85rem;
            line-height: 1.4;
        }

        .pending-session-countdown {
            color: #ffc107;
            font-weight: 700;
        }

        .pending-session-banner.expired .pending-session-countdown {
            color: #4ade80;
        }

        .pending-modal {
            background: #111214;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 14px;
        }

        .pending-modal .modal-header {
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            padding: 16px 24px;
        }

        .pending-modal .modal-title {
            color: #fff;
            font-weight: 700;
        }

        .pending-modal .btn-close {
            filter: invert(1);
        }

        .pending-modal .modal-body {
            padding: 16px 24px 10px;
        }

        .pending-modal .modal-subtext {
            color: rgba(255, 255, 255, 0.6);
            margin: 0;
            line-height: 1.5;
        }

        .pending-modal .modal-footer {
            border-top: none;
            padding: 0 24px 18px;
        }

        .coach-hero-section .container {
            position: relative;
            z-index: 1;
        }

        .coach-profile-header {
            display: flex;
            align-items: center;
            gap: 25px;
            margin-bottom: 30px;
        }

        .coach-avatar-large {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            border: 4px solid hsl(var(--base));
            object-fit: cover;
            flex-shrink: 0;
        }

        .coach-header-info h1 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .coach-header-info .coach-meta {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 15px;
        }

        .coach-meta span {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 15px;
        }

        .coach-meta .rating {
            color: #ffc107;
            font-weight: 600;
        }

        .coach-badges {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            align-items: center;
        }

        .coach-badge {
            background: hsl(var(--section-bg));
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #fff;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
        }

        .coach-badge.role-icons {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
        }

        .coach-badge.role-icons img {
            width: 20px;
            height: 20px;
            opacity: 0.8;
            transition: 0.3s;
        }

        .coach-badge.role-icons:hover img {
            opacity: 1;
        }

        .sessions-section {
            padding: 60px 0 80px;
        }

        .sessions-section>.container>.row {
            display: flex;
            align-items: stretch;
        }

        .sessions-section .col-lg-4 {
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
        }

        .sessions-section .col-lg-8 {
            flex-grow: 1;
        }

        .section-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 10px;
            color: hsl(var(--white));
        }

        .section-subtitle {
            color: hsl(var(--white) / 0.6);
            font-size: 16px;
            margin-bottom: 30px;
        }

        .coach-sidebar-card {
            background: hsl(var(--section-bg));
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 20px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .coach-socials a,
        .coach-socials .discord-copy-btn {
            background: #2a2b2e;
            width: 40px;
            height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            color: #fff;
            font-size: 18px;
            margin: 0 5px;
            transition: 0.3s;
            border: none;
            cursor: pointer;
            padding: 0;
        }

        .coach-socials a:hover,
        .coach-socials .discord-copy-btn:hover {
            background: hsl(var(--base));
            color: #fff;
            transform: translateY(-3px);
        }

        .performance-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .performance-item:last-child {
            border-bottom: none;
        }

        .performance-item span:first-child {
            color: hsl(var(--white) / 0.6);
            font-size: 15px;
        }

        .performance-item span:last-child {
            font-weight: 600;
            font-size: 16px;
        }

        .performance-item .performance-value-languages {
            max-width: 58%;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            text-align: right;
            display: inline-block;
        }

        .champions-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-top: 15px;
        }

        .champions-grid .champion-item:nth-child(n+7) {
            display: none;
        }

        .champions-grid.expanded .champion-item:nth-child(n+7) {
            display: flex;
        }

        .toggle-champions-btn {
            background: transparent;
            border: 1px solid hsl(var(--white) / 0.2);
            color: hsl(var(--white) / 0.6);
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 11px;
            cursor: pointer;
            margin-top: 12px;
            width: 100%;
            transition: all 0.2s;
        }

        .toggle-champions-btn:hover {
            border-color: hsl(var(--base));
            color: hsl(var(--base));
        }

        .champion-item {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            border: 2px solid transparent;
            transition: 0.3s;
            cursor: pointer;
            background: rgba(255, 255, 255, 0.05);
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .champion-item:hover {
            border-color: hsl(var(--base));
            transform: translateY(-3px);
            background: rgba(255, 255, 255, 0.1);
        }

        .champion-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: rgba(255, 255, 255, 0.2);
        }

        .champion-item .champion-name {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.8);
            padding: 6px 4px;
            font-size: 11px;
            font-weight: 600;
            text-align: center;
            color: #fff;
            backdrop-filter: blur(5px);
        }


        .champion-item.main-pick {
            background: rgba(255, 71, 87, 0.1);
        }

        .champion-item.main-pick:hover {
            background: rgba(255, 71, 87, 0.15);
            box-shadow: 0 0 20px rgba(255, 71, 87, 0.4);
        }

        .session-card {
            background: hsl(var(--section-bg));
            border-radius: 20px;
            padding: 0;
            margin-bottom: 25px;
            border: 2px solid rgba(255, 255, 255, 0.05);
            display: flex;
            overflow: hidden;
            transition: all 0.4s ease;
            position: relative;
        }

        .session-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: hsl(var(--base));
            opacity: 0;
            transition: 0.4s;
        }

        .session-card:hover {
            border-color: hsl(var(--base));
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        }

        .session-card:hover::before {
            opacity: 1;
        }

        .session-content {
            flex: 1;
            padding: 35px;
        }

        .session-content h4 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .session-content h4 i {
            font-size: 20px;
            color: hsl(var(--base));
        }

        .session-content p {
            color: hsl(var(--white) / 0.65);
            font-size: 15px;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .session-features {
            background: rgba(0, 0, 0, 0.2);
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 20px;
        }

        .session-features h6 {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: hsl(var(--white) / 0.5);
            margin-bottom: 12px;
            font-weight: 600;
        }

        .session-features ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .session-features ul li {
            color: hsl(var(--white) / 0.8);
            font-size: 14px;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .session-features ul li:last-child {
            margin-bottom: 0;
        }

        .session-features ul li i {
            color: hsl(var(--base));
            font-size: 12px;
        }

        .session-price-area {
            width: 220px;
            background: rgba(0, 0, 0, 0.3);
            padding: 30px 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            border-left: 1px solid rgba(255, 255, 255, 0.05);
        }

        .session-tag {
            color: hsl(var(--white) / 0.5);
            font-size: 13px;
            margin-right: 18px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .most-picked-badge {
            background: hsl(var(--base));
            color: #fff;
            padding: 4px 12px;
            border-radius: 6px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .session-badge--most-picked {
            background: hsl(var(--base));
            color: #fff;
        }

        .session-badge--popular {
            background: #8b5cf6;
            color: #fff;
        }

        .session-badge--recommended {
            background: #06b6d4;
            color: #fff;
        }

        .session-badge--best-value {
            background: linear-gradient(135deg, #FFD700, #FFA500);
            color: #000;
        }

        .session-badge--new {
            background: #22c55e;
            color: #fff;
        }

        .session-content h4 i.session-icon--most-picked {
            color: hsl(var(--base));
        }

        .session-content h4 i.session-icon--popular {
            color: #8b5cf6;
        }

        .session-content h4 i.session-icon--recommended {
            color: #06b6d4;
        }

        .session-content h4 i.session-icon--best-value {
            color: #FFD700;
        }

        .session-content h4 i.session-icon--new {
            color: #22c55e;
        }

        .coin-price {
            font-size: clamp(22px, 2.2vw, 28px);
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: nowrap;
            justify-content: center;
            white-space: nowrap;
        }

        .coin-price img {
            width: 28px;
        }

        .coin-price.original-price {
            font-size: 16px;
            margin-bottom: 2px;
            opacity: 0.7;
        }

        .coin-price.original-price img {
            width: 18px;
            opacity: 0.5;
        }

        .coin-price.member-price {
            color: #4ade80;
        }

        .member-discount-badge {
            display: inline-block;
            background: linear-gradient(135deg, rgba(74, 222, 128, 0.2), rgba(74, 222, 128, 0.1));
            border: 1px solid rgba(74, 222, 128, 0.3);
            color: #4ade80;
            font-size: 11px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 20px;
            margin-bottom: 10px;
        }

        .member-discount-badge i {
            color: #FFD700;
            margin-right: 4px;
        }

        .sessions-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }

        .filter-btn {
            background: hsl(var(--section-bg));
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #fff;
            padding: 10px 18px;
            border-radius: 8px;
            font-size: 14px;
            transition: 0.3s;
        }

        .filter-btn:hover {
            border-color: hsl(var(--base));
            background: hsl(var(--base));
        }

        .coach-sidebar-sticky {
            position: relative;
            z-index: 10;
        }

        .about-section {
            background: hsl(var(--section-bg));
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 20px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .about-section h5 {
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: hsl(var(--white) / 0.6);
            margin-bottom: 15px;
        }

        .about-section p {
            font-size: 14px;
            line-height: 1.7;
            color: hsl(var(--white) / 0.7);
            margin: 0;
        }

        .coach-full-bio {
            background: hsl(var(--section-bg));
            border-radius: 15px;
            padding: 30px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .coach-full-bio h3 {
            color: hsl(var(--white));
            position: relative;
        }

        .btn-read-more {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: hsl(var(--white));
            padding: 8px 18px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            transition: 0.3s;
            display: inline-flex;
            align-items: center;
            cursor: pointer;
        }

        .btn-read-more:hover {
            background: hsl(var(--base));
            border-color: hsl(var(--base));
            color: #fff;
        }

        .btn-read-more i {
            transition: transform 0.3s;
            margin-left: 8px;
        }

        .btn-read-more[aria-expanded="true"] i {
            transform: rotate(180deg);
        }

        .btn-read-more .read-more-text::after {
            content: " More";
        }

        .btn-read-more[aria-expanded="true"] .read-more-text::after {
            content: " Less";
        }

        .coach-full-bio .bio-content {
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            margin-top: 20px;
        }

        .coach-full-bio .bio-content p {
            font-size: 15px;
            line-height: 1.8;
            color: hsl(var(--white) / 0.75);
            margin-bottom: 18px;
        }

        .coach-full-bio .bio-content p strong {
            color: hsl(var(--base));
            font-weight: 600;
        }

        #coachFullBio {
            transition: all 0.3s ease;
        }

        /* Direct Session Card Styles */
        .direct-session-card {
            position: relative;
        }

        .direct-session-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: #4ade80;
            opacity: 1;
            animation: greenPulse 2s ease-in-out infinite;
        }

        @keyframes greenPulse {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.4;
            }
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.7;
            }
        }

        .direct-session-card .session-content h4 i {
            color: #4ade80;
        }

        .direct-session-card .btn--base {
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .btn-direct {
            background: hsl(var(--base)) !important;
            border-color: hsl(var(--base)) !important;
            color: #fff !important;
            font-weight: 600;
            font-size: 13px;
            transition: all 0.3s ease;
        }

        .btn-direct:hover {
            background: hsl(var(--base) / 0.85) !important;
            border-color: hsl(var(--base) / 0.85) !important;
            transform: scale(1.02);
            box-shadow: 0 4px 15px hsl(var(--base) / 0.4);
        }

        .direct-session-card:hover::before {
            opacity: 1;
            animation: none;
        }

        @media (max-width: 991px) {
            .coach-profile-header {
                flex-direction: column;
                text-align: center;
            }

            .coach-header-info .coach-meta {
                justify-content: center;
            }

            .coach-badges {
                justify-content: center;
            }

            .coach-badge.role-icons img {
                width: 18px;
                height: 18px;
            }

            .back-to-booking {
                margin-bottom: 15px;
            }

            .coach-header-info .mt-4 {
                display: flex;
                flex-direction: column;
                gap: 10px;
            }

            .coach-header-info .mt-4 .btn {
                margin: 0 !important;
                width: 100%;
            }

            .session-card {
                flex-direction: column;
            }

            .session-price-area {
                width: 100%;
                border-left: none;
                border-top: 1px solid rgba(255, 255, 255, 0.05);
            }

            .coach-sidebar-sticky {
                position: relative !important;
                top: auto !important;
                margin-bottom: 30px;
            }

            .coach-sidebar-card,
            .about-section {
                margin-bottom: 15px;
            }

            .coach-full-bio {
                margin-top: 20px;
                margin-bottom: 30px;
            }

            .sessions-header {
                margin-top: 20px;
            }
        }

        /* ==============================================
           UTILITY CLASSES
           ============================================== */
        .sidebar-section-title {
            font-size: 13px;
            letter-spacing: 1px;
            color: hsl(var(--white) / 0.6);
        }

        .text-muted-sm {
            font-size: 12px;
            color: hsl(var(--white) / 0.5);
        }

        .text-muted-md {
            font-size: 13px;
            color: hsl(var(--white) / 0.6);
        }

        .session-duration-text {
            font-size: 12px;
            color: hsl(var(--white) / 0.5);
        }

        .session-response-text {
            font-size: 11px;
            color: hsl(var(--white) / 0.5);
            text-align: center;
        }

        .price-strikethrough {
            text-decoration: line-through;
            opacity: 0.5;
            white-space: nowrap;
        }

        /* Favorite Button Favorited State */
        .btn-favorite-active {
            border-color: hsl(var(--base)) !important;
            background: rgba(255, 71, 87, 0.1) !important;
            color: #fff !important;
            box-shadow: 0 0 15px rgba(255, 71, 87, 0.2);
        }

        .btn-favorite-active i {
            color: #ff4757 !important;
        }

        /* Champion Grid Visibility Adjustment */
        #championsGrid .champion-item:nth-child(n+4) {
            display: none;
        }

        #championsGrid.expanded .champion-item:nth-child(n+4) {
            display: block;
        }

        .review-rating-badge {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), rgba(255, 193, 7, 0.05));
    border: 1px solid rgba(255, 193, 7, 0.3);
    color: #ffc107;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.review-rating-badge i {
    font-size: 10px;
}

/* Review Item Card */
.review-item {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.2s ease;
}

.review-item:last-of-type {
    margin-bottom: 0;
}

.review-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Review Header */
.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

/* Review Avatar - Clean circular without red border */
.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.15) !important;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.05);
}

/* Blank Review Avatar (no image) */
.review-avatar-blank {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 2px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

/* Review Tooltip (shows on hover) */
.review-item {
    position: relative;
    cursor: default;
}

.review-tooltip {
    display: none;
}

.review-tooltip::before {
    content: attr(data-content);
    font-size: 12px;
    line-height: 1.6;
    color: hsl(var(--white) / 0.85);
    display: block;
}

.review-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: rgba(255, 255, 255, 0.15);
}


/* Review Meta */
.review-meta {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.review-author {
    font-weight: 600;
    font-size: 13px;
    color: hsl(var(--white));
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-date {
    font-size: 11px;
    color: hsl(var(--white) / 0.45);
}

/* Review Stars */
.review-stars {
    display: flex;
    gap: 2px;
    flex-shrink: 0;
}

.review-stars i {
    font-size: 11px;
    color: #ffc107;
}

/* Review Text */
.review-text {
    font-size: 13px;
    line-height: 1.5;
    color: hsl(var(--white) / 0.7);
    margin: 0;
    font-style: italic;
}

.review-text--ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* View All Reviews Button */
.btn-view-reviews {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: hsl(var(--white) / 0.7);
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-view-reviews:hover {
    background: hsl(var(--base) / 0.1);
    border-color: hsl(var(--base) / 0.3);
    color: hsl(var(--base));
}

.btn-view-reviews i {
    font-size: 14px;
}

/* Reviews Modal */
.reviews-modal .modal-content {
    background: #1a1b1e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.reviews-modal .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 24px;
}

.reviews-modal .modal-body {
    padding: 24px;
    max-height: 60vh;
    overflow-y: auto;
}

.reviews-modal .review-item {
    margin-bottom: 16px;
}