*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --pink: #f59bb5;
    --pink-light: #f8bbd0;
    --pink-bg: #fce4ec;
    --black: #1a1a1a;
    --gray-50: #f7f8fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --green: #2e7d32;
    --radius: 14px;
    --shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
}

body {
    font-family: "Inter", sans-serif;
    background: var(--gray-50);
    color: var(--black);
    font-size: 14px;
}

html {
    zoom: 90%;
}

main {
    font-size: 14px;
    padding: 120px 20px 60px;
    max-width: 1230px;
    margin-left: 260px;
}

.main-conteiner {
    max-width: 1550px;
    margin: 0 auto;
    position: relative;
    min-height: 100vh;
}

/* Back link */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: var(--gray-600);
    text-decoration: none;
    margin-bottom: 14px;
}

.back-link:hover {
    color: var(--black);
}

.back-link svg {
    width: 14px;
    height: 14px;
}

/* Brand header */
.brand-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 22px;
}

.brand-name {
    font-size: 28px;
    font-weight: 800;
    color: var(--black);
    letter-spacing: -0.5px;
    text-decoration: none;
}

.brand-sub {
    font-size: 12.5px;
    color: var(--gray-500);
    margin-top: 3px;
}

.badges {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 4px;
}

.badge {
    padding: 5px 12px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
}

.badge-black {
    background: #fce7f3;
    color: #c6005c;
    border: 1px solid #fccee8;
}

.badge-outline {
    background: #f3f4f6;
    color: #364153;
    border: 1px solid #e5e7eb;
}

/* Profile card */
.profile-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 22px 28px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--gray-200);
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #fce7f3;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
}

.profile-avatar svg {
    width: 36px;
    height: 36px;
    color: var(--gray-400);
}

.profile-info {
    flex: 1;
}

.profile-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
}

.profile-role {
    font-size: 12.5px;
    color: var(--gray-500);
    margin-top: 2px;
}

.profile-stats {
    display: flex;
    gap: 15%;
    margin-top: 14px;
}

.profile-stat-label {
    font-size: 11.5px;
    color: var(--gray-500);
    margin-bottom: 3px;
}

.profile-stat-value {
    font-size: 20px;
    font-weight: 700;
}

.profile-stat-value.pink {
    color: var(--pink);
}

.profile-stat-value.grade {
    color: var(--black);
}

/* Tabs */
.tabs {
    display: flex;
    gap: 0;
    margin-bottom: 20px;
    background: #ffffff;
    border-radius: 14px;
    padding: 5px;
    width: max-content;
    box-shadow: var(--shadow);
    flex-wrap: wrap;
}

.tab {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    border-radius: 16px;
    border-bottom: 2px solid transparent;
    transition: all 0.15s;
    text-decoration: none;
}

.tab:hover {
    color: var(--black);
    background: var(--gray-100);
}

.tab.active {
    color: #c6005c;
    background: #fce7f3;
    font-weight: 600;
}

/* Two-col row */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

/* Connection card */
.conn-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 20px 24px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: start;
    flex-direction: column;
    gap: 24px;
}

.conn-donut-boxx {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.conn-donut-boxx .conn-right {
    text-align: right;
    margin-top: auto;
}

.conn-donut-wrap {
    position: relative;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.conn-donut-wrap canvas {
    width: 120px !important;
    height: 120px !important;
}

.conn-donut-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    pointer-events: none;
}

.conn-donut-val {
    font-size: 26px;
    font-weight: 700;
    color: var(--black);
    font-family: "Inter", sans-serif;
}

.conn-donut-sub {
    font-size: 12px;
    color: var(--gray-500);
    font-family: "Inter", sans-serif;
}

.conn-title {
    font-size: 12px;
    color: var(--gray-500);
    margin-bottom: 2px;
}

.conn-engagment {
    font-size: 13px;
    color: var(--gray-600);
    margin-top: 10px;
}

.conn-pct {
    font-size: 26px;
    font-weight: 700;
    color: var(--black);
    line-height: 1;
}

.conn-bars {
    display: flex;
    gap: 4px;
    margin-top: 8px;
    align-items: flex-end;
    justify-content: end;
}

.conn-bar {
    height: 32px;
    width: 6px;
    border-radius: 6px;
    background: var(--pink);
}

.conn-bar.grey {
    background: #e5e7eb;
}

/* Milestone / Classes card */
.milestone-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 22px 28px;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
}

.milestone-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}

.milestone-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--black);
}

.milestone-sub {
    font-size: 12.5px;
    color: var(--gray-500);
}

.milestone-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--pink-bg);
    color: #000;
    border-radius: 8px;
    padding: 6px 8px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid #f59bb5;
}

.milestone-badge svg {
    width: 13px;
    height: 13px;
}

/* Progress bar */
.progress-labels {
    display: flex;
    justify-content: space-between;
    margin: 14px 0 6px;
    font-size: 12px;
    color: var(--gray-600);
}

.progress-labels .active {
    color: var(--pink);
    font-weight: 600;
}

.progress-track {
    height: 8px;
    background: var(--gray-200);
    border-radius: 99px;
    position: relative;
    margin-top: 40px;
}

.progress-fill-pink {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--pink);
    border-radius: 99px;
    z-index: 999;
}

.progress-fill-grey {
    position: absolute;
    top: 0;
    height: 100%;
    background: #c0c0c0;
    border-radius: 0 99px 99px 0;
    z-index: 99;
}

.progress-fill-black {
    position: absolute;
    top: 0;
    height: 100%;
    background: var(--black);
    border-radius: 0 99px 99px 0;
}

.progress-track div span {
    position: absolute;
    right: 25px;
    z-index: 9999;
    display: block;
    top: -20px;
    font-size: 13px;
}

/* Section header */
.section-header {
    font-size: 17px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
}

/* Content pillar card */
.pillar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.pillar-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
}

.pillar-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.pillar-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pillar-icon.pink-bg {
    background: var(--pink-bg);
}

.pillar-icon.gray-bg {
    background: var(--gray-100);
}

.pillar-icon.black-bg {
    background: var(--black);
}

.pillar-icon svg {
    width: 18px;
    height: 18px;
}

.pillar-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
}

.pillar-cat {
    font-size: 11.5px;
    color: var(--gray-500);
}

/* Coach row */
.coach-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.coach-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gray-200);
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coach-avatar svg {
    width: 18px;
    height: 18px;
    color: var(--gray-400);
}

.coach-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
}

.coach-role {
    font-size: 11.5px;
    color: var(--gray-500);
}

/* Attendance bar */
.att-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12.5px;
    color: var(--gray-600);
    margin-bottom: 5px;
}

.att-val {
    font-weight: 600;
}

.att-track {
    height: 5px;
    border-radius: 99px;
    background: var(--gray-200);
    margin-bottom: 14px;
    overflow: hidden;
}

.att-fill {
    height: 100%;
    border-radius: 99px;
}

.att-fill.pink {
    background: var(--pink);
}

.att-fill.gray {
    background: var(--gray-400);
}

.att-fill.black {
    background: var(--black);
}

/* Stats grid inside pillar */
.pillar-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 12px;
}

.pillar-stat {
    padding: 10px 0;

    border-bottom: 1px solid var(--gray-100);
}

.pillar-stat:nth-child(odd) {
    border-radius: 12px 0 0 12px;
    border-top: 1px solid var(--gray-100);
    border-left: 1px solid var(--gray-100);
    padding: 12px;
}

.pillar-stat:nth-child(even) {
    text-align: right;
    border-radius: 0 12px 12px 0;
    border-top: 1px solid var(--gray-100);
    border-right: 1px solid var(--gray-100);
    padding: 12px;
}

.pillar-stat-lbl {
    font-size: 12px;
    color: var(--gray-500);
}

.pillar-stat-val {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
}

.pillar-stat-sub {
    font-size: 12px;
    color: var(--gray-500);
}

/* Grade */
.grade-wrap {
    text-align: center;
    padding: 14px 0 6px;
    border: 1px solid var(--gray-100);
    margin-top: 16px;
    border-radius: 12px;
}

.grade-lbl {
    font-size: 11px;
    color: var(--gray-500);
    margin-bottom: 2px;
}

.grade-val {
    font-size: 22px;
    font-weight: 700;
}

.grade-val.pink {
    color: var(--pink);
}

.grade-val.dark {
    color: var(--black);
}

/* Bottom row */
.bottom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.bottom-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
}

.bottom-card-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 16px;
}

.bottom-card-title svg {
    width: 16px;
    height: 16px;
    color: var(--gray-600);
}

/* Reward list items */
.reward-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 0;
    border-bottom: 1px solid var(--gray-100);
}

.reward-item:last-child {
    border-bottom: none;
}

.reward-item-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.reward-ico {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reward-ico.dark {
    background: #1a1a1a;
}

.reward-ico.gray {
    background: var(--gray-100);
}

.reward-ico.pink {
    background: var(--pink-bg);
}

.reward-ico.light {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
}

.reward-ico svg {
    width: 16px;
    height: 16px;
}

.reward-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
}

.reward-sub {
    font-size: 11.5px;
    color: var(--gray-500);
}

.reward-trophy svg {
    width: 18px;
    height: 18px;
    color: var(--gray-400);
}

/* Incentives earned grid */
.earned-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.earned-item {
    text-align: center;
    padding: 10px 6px;
}

.earned-item svg {
    width: 28px;
    height: 28px;
    margin-bottom: 6px;
}

.earned-name {
    font-size: 12px;
    color: var(--gray-600);
    margin-bottom: 3px;
}

.earned-count {
    font-size: 13px;
    font-weight: 700;
    color: var(--black);
}

/* Knowledge card */
.know-big {
    font-size: 36px;
    font-weight: 800;
    color: var(--black);
    line-height: 1;
    margin-bottom: 2px;
}

.know-sub {
    font-size: 12px;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.know-divider {
    border: none;
    border-top: 1px solid var(--gray-100);
    margin: 14px 0;
}

.know-score-lbl {
    font-size: 12px;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.know-score {
    font-size: 24px;
    font-weight: 800;
    color: var(--pink);
}

.extra-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 16px;
    align-items: start;
}

/* Session items */
.session-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 14px;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    margin-bottom: 10px;
}

.session-item:last-child {
    margin-bottom: 0;
}

.session-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.session-ico {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.session-ico.black {
    background: #1a1a1a;
}

.session-ico.gray {
    background: var(--gray-100);
}

.session-ico.pink {
    background: var(--pink);
}

.session-ico svg {
    width: 18px;
    height: 18px;
}

.session-name {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--black);
}

.session-sub {
    font-size: 11.5px;
    color: var(--gray-500);
    margin-top: 2px;
}

.session-count {
    font-size: 22px;
    font-weight: 800;
    color: var(--black);
}

/* Reward list items (reused style, slightly different layout) */
.ri-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 14px;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    margin-bottom: 10px;
}

.ri-item:last-child {
    margin-bottom: 0;
}

.ri-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ri-ico {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ri-ico.black {
    background: #1a1a1a;
}

.ri-ico.gray {
    background: #c0c0c0;
}

.ri-ico.pink {
    background: var(--pink);
}

.ri-ico.light {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
}

.ri-ico svg {
    width: 18px;
    height: 18px;
}

.ri-name {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--black);
}

.ri-sub {
    font-size: 11.5px;
    color: var(--gray-500);
    margin-top: 2px;
}

.ri-trophy svg {
    width: 18px;
    height: 18px;
    color: var(--gray-400);
}

/* Content consumed */
.cc-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px;
    border: 1px solid var(--gray-100);
    margin-bottom: 12px;
    border-radius: 10px;

}

.cc-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cc-icon {
    flex-shrink: 0;
}

.cc-icon svg {
    width: 28px;
    height: 28px;
}

.cc-stat {
    display: flex;
    gap: 32px;
    flex: 1;
}

/* .cc-block {} */

.cc-val {
    font-size: 22px;
    font-weight: 800;
    color: var(--black);
    line-height: 1;
}

.cc-val.pink {
    color: var(--pink);
}

.cc-lbl {
    font-size: 11.5px;
    color: var(--gray-500);
    margin-top: 3px;
}

.cc-ytd-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
    margin: 14px 0 10px;
}

.cc-ytd-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cc-ytd-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.cc-ytd-stats {
    width: 100%;
    display: flex;
    gap: 28px;
}

.cc-block.right-side {
    margin-left: auto;
    text-align: right;
}

.web_link {
    text-decoration: none;
}

.web_link span {
    background: #1a1a1a;
    border: #1a1a1a;
    color: #fff;
}

@media (max-width: 1080px) {
    .badges {
        display: flex;
        gap: 8px;
        align-items: center;
        margin-top: 4px;
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }

    .pillar-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .extra-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive */
@media (max-width: 760px) {
    .tabs {
        flex-wrap: wrap;
        width: auto;
    }

    main {
        padding: 120px 16px 48px;
    }

    .two-col,
    .pillar-grid,
    .bottom-grid {
        grid-template-columns: 1fr;
    }

    .profile-stats {
        gap: 24px;
        flex-wrap: wrap;
    }

    .brand-row {
        flex-direction: column;
        gap: 10px;
    }

    .extra-grid {
        grid-template-columns: 1fr;
    }

    main {
        margin-left: 0;
    }
}


@media (max-width: 520px) {
    .tabs {
        overflow-x: auto;
    }

    .tab {
        white-space: nowrap;
    }

    .profile-card {
        flex-direction: column;
    }
}

/* header */
/* common */
.header_main {
    padding: 16px 0;
    position: absolute;
    left: 0;
    top: 0;
    border: 0;
    width: 100%;
    z-index: 99999999;
    zoom: 110%;
}

.header_main .my-container {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.header_main a {
    text-decoration: none;
}

.header_main button {
    border: none;
    cursor: pointer;
    background: transparent;
}

.header_main .btn-pri {
    font-family: "Teko", sans-serif;
    background: #f59bb5;
    padding: 7px 48px;
    font-size: 20px;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.header_main .btn-pri:hover {
    background: #f57da0;
}

/* ================= NAVBAR ================= */

.header_main {
    padding: 16px 0;
    background: #fff;
}

.header_main .my-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1480px;
}

.header_main .menu {
    display: flex;
    gap: 35px;
    text-transform: uppercase;
}

.header_main .menu a {
    color: #131313;
    font-family: "Teko", sans-serif;
    letter-spacing: 2px;
    font-size: 17px;
    transition: all 0.4s ease;
}

.header_main .menu a:hover {
    color: #f59bb5;
}

.header_main .button-group {
    display: flex;
    gap: 32px;
    align-items: center;
}

.header_main .menu-toggle {
    display: none;
}

/* ================= FOOTER ================= */

.site-footer {
    padding: 40px 24px;
    text-align: center;
    background: #fff;
    border-top: 1px solid #eee;
    /* margin-top: 20px; */
    z-index: 9999;
    position: relative;
}

.footer-logo img {
    width: 70px;
    margin-bottom: 30px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
}

.footer-nav a {
    font-size: 14px;
    color: #808080;
    line-height: normal;
    text-decoration: none;
    text-transform: uppercase;
}

.footer-nav a:hover {
    color: #000;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

@media (max-width: 1360px) {
.header_main .menu{
    gap: 16px;
}
}
@media (max-width: 1280px) {
.header_main .menu a{
    font-size: 14px;
}
.header_main .button-group{
    gap: 16px;
}
}

@media (max-width: 1080px) {
    .header_main .menu {
        display: none;
    }

    .header_main .menu-toggle {
        display: block;
        margin-top: 25px;
        margin-right: 10px;
    }

    .header_main .menu.active {
        display: flex;
        z-index: 9999999999;
    }

    .header_main .menu {
        display: none;
        position: absolute;
        top: 70px;
        right: 24px;
        width: 260px;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        gap: 12px;
        display: none;
        border: 1px solid #eee;
        z-index: 99;
    }

    .footer-nav {
        row-gap: 6px;
    }
}

/* sidebar */
/* SIDEBAR */
.sidebar {
    width: var(--sidebar-w);
    background: #fff;
    border-right: 1px solid var(--gray-200);
    border-left: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    padding: 32px 0 16px;
    position: absolute;
    top: 86px;
    left: 0;
    bottom: 0;
    z-index: 100;
    overflow-y: auto;
}

.sidebar-brand {
    padding: 0 20px 24px;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 24px;
}

.sidebar-brand .brand-name {
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--black);
}

.sidebar-brand .brand-sub {
    font-size: 11px;
    color: var(--gray-500);
    margin-top: 2px;
}

.sidebar-nav {
    padding: 0 8px;
    flex: 1;
}

.nav-section {
    margin-bottom: 4px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    color: #4a5565;
    font-size: 13.5px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition:
        background 0.15s,
        color 0.15s;
    position: relative;
}

.nav-item:hover {
    background: var(--gray-100);
    color: var(--black);
}

.nav-item.active {
    background: #fce7f3;
    color: #f06292;
}

.nav-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    opacity: 0.75;
}

.nav-item.active svg {
    opacity: 1;
}

.nav-group-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    cursor: pointer;
}

.nav-group-header:hover {
    background: var(--gray-100);
}

.nav-group-header svg {
    width: 16px;
    height: 16px;
}

.nav-group-header .chevron {
    width: 14px;
    height: 14px;
    color: var(--gray-500);
    transition: transform 0.2s;
}

.nav-group-header.open .chevron {
    transform: rotate(180deg);
}

.nav-group-header.active {
    color: #f06292;
    background: #fce7f3;
}

.nav-group-header.active div a {
    color: #f06292;
}

.nav-sub {
    padding-left: 8px;
}

.nav-sub .nav-item {
    font-size: 14px;
    font-weight: 400;
    margin-top: 6px;
}

/* Active SVG color */
.nav-group-header.active svg path,
.nav-group-header.active svg circle,
.nav-group-header.active svg line,
.nav-group-header.active svg polyline {
    stroke: var(--pink) !important;
}

.nav-item.active svg *[stroke] {
    stroke: var(--pink) !important;
}

/* Sidebar links */
.nav-group-header a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
    color: #364153;
    width: 184px;
    font-weight: 500;
    font-size: 16px;
}

/* Mobile Toggle Button */
.menu-toggle {
    display: none;
    font-size: 18px;
    background: #f06292;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-bottom: 10px;
    right: 0%;
    top: 0;
    z-index: 999999;
}


/* RESPONSIVE */
@media (max-width: 768px) {
    :root {
        --sidebar-w: 0px;
    }

    .sidebar {
        transform: translateX(-100%);
    }

    .menu-toggle {
        display: block;
    }

    aside.sidebar.active {
        transform: translateX(0);
        height: 100%;
        width: 260px;
    }
}

/* dropdown navbar css */
.dropbtn {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Chevron style */
.chevron {
  font-size: 12px;
      margin-top: -1px;
}

/* Rotate when active */
/* .dropdown.active .chevron {
  transform: rotate(180deg);
} */
.nav-drop-down {
  display: none;
}

.dropdown .nav-drop-down {
  padding: 12px;
}

.dropdown {
  position: relative;
}

/* FIX: remove from layout */
.nav-drop-down {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: auto;
  display: none;
  flex-direction: column;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  border-radius: 6px;
  z-index: 999; 

}

.dropbtn {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.dropbtn a {
  text-decoration: none;
  color: inherit;
}


.dropdown.active .chevron {
    color: #f3628c;
}
.dropdown:hover {
  color: #f3628c !important;
}
.dropdown  span.chevron svg{
  stroke: #131313 !important;
}
.dropdown:hover  span.chevron svg{
  stroke: #f3628c !important;
}
.dropdown:hover .nav-drop-down{
  display: flex !important;
}

@media (max-width: 767px) {
  .nav-drop-down {
    position: relative; /* acts like accordion */
  }
  .sider-bar-mob-button-row{
    display: flex;
    justify-content: space-between;
  }
  button#menuToggle {
    padding: 6px;
    margin: 0;
    margin-bottom: 10px;
}
}

.tier-mem{
    padding: 8px 12px;
    border-radius: 32px;
    background:#1a1a1a ;
    color: #fff;
    border: none;
}


/* ------------------- */
.card {
  background: #fff;
  padding: 24px;
  border-radius: 14px;
  margin-bottom: 20px;
}

h2 {
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.form-input {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
}

.btn-primary {
  background: #1a1a1a;
  color: #fff;
}

.btn-pink {
  background: #f06292;
  color: #fff;
}

.summary {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.total {
  font-size: 18px;
  font-weight: 800;
}

.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.calendar div {
  padding: 10px;
  text-align: center;
  border-radius: 8px;
  background: #f1f3f5;
  cursor: pointer;
}




.calendar-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.calendar-header button {
  background: #eee;
  border: none;
  padding: 6px 10px;
  cursor: pointer;
  border-radius: 100%;
}
.available {
  background: #ffdbe5 !important;
  color: #f3628c;
  font-weight: 600;
}

.disabled {
  background: #f1f3f5;
  color: #bbb;
  cursor: not-allowed;
}
/* ------------------- */

/* mega menu */
/* ---- dp-menu */
.on-demand-dropdown{
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 800px;
  background: #fff;
  z-index: 9999;
  display: none;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}

.on-demand-dropdown.active{
  display: block;
}

.dropdown-inner{
  display: flex;
}

.left-box{
  width: 220px;
  background: #fff;
  padding: 16px;
  position: relative;
  
}

.left-box h3{
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
  font-family: "Teko", sans-serif;
}

.left-box p{
  margin-bottom: 6px;
  line-height: normal;
  font-size: 12px;
}

.left-box img{
  width: 100%;
  margin-top: 20px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.right-box{
  flex: 1;
  background: #fff;
}

.top-tabs{
  display: flex;
}

.top-tabs button{
  flex: 1;
  border: none;
  padding: 16px;
  background: #f5f5f5;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  position: relative;
}

.top-tabs button.active{
  background: #FEE5ED;
}
.top-tabs button.active::before {
    content: '';
    width: 18px;
    height: 10px;
    background-color: #F0578C;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    position: absolute;
    left: 46%;
    bottom: 0;
}

.coach-bar{
  background: #F0578C;
  color: #fff;
  text-align: center;
  padding: 6px;
  font-weight: 400;
  font-size: 14px;
      display: flex;
    justify-content: center;
    gap: 4px;
}
.coach-bar span{
  display: flex;
}

.coach-grid{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
  padding: 20px;
}

.coach-col h4{
  color: #F0578C;
  font-weight: 500;
  font-size: 17px;
  margin-bottom: 4px;
  font-family: "Teko", sans-serif;
}

.coach-col a{
  display: block;
  color: #000;
  text-decoration: none;
  margin-bottom: 6px;
  font-size: 12px;
}

.coach-col span{
  display: inline-block;
  margin-top: auto;
  color: #F0578C;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 14px;
}
.coach-col {
    display: flex;
    flex-direction: column;
}

nav{
  position: relative;
}

@media (max-width: 767px) {
    .left-box{
    display: none;
  }
  .coach-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 12px;
}
.top-tabs button {

    font-size: 14px;
}
}