/* =========================
   Scoped My Account Nav
========================= */

.mav_mrhost_nav {
    width: 100%;
    font-family: 'DM Sans', sans-serif;
}

.mav_mrhost_nav_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mav_mrhost_nav_item {
    border-radius: 10px;
    margin-bottom: clamp(8px, 1vw, 12px);
}

.mav_mrhost_nav_link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;

    padding: clamp(10px, 1.2vw, 14px) clamp(12px, 1.5vw, 18px);

    color: #333;
    border: 1px solid #e7ecff;
    border-radius: 10px;
    background-color: #ffffff;
    transition: all 0.25s ease;
}

.mav_mrhost_nav_icon {
    font-size: clamp(0.9rem, 1vw, 1.1rem);
    margin-right: clamp(6px, 0.8vw, 12px);
    color: black;
    width: 24px;
    text-align: center;
}

.mav_mrhost_nav_label {
    flex-grow: 1;
    font-weight: 600;
    font-size: clamp(0.8rem, 0.9vw, 1rem);
    line-height: 1.2;
}

.mav_mrhost_nav_arrow {
    font-size: clamp(0.75rem, 0.8vw, 0.9rem);
    color: #999;
    transition: transform 0.3s ease;
}

.mav_mrhost_nav_link:hover .mav_mrhost_nav_arrow {
	color: #7253ED;
}

/* =========================
   Hover
========================= */
.mav_mrhost_nav_link:hover {
    background-color: #f2f0ff;
    border-color: #7253ED;
    border-radius: 10px;
}

/* =========================
   Active
========================= */
.mav_mrhost_nav_item.active .mav_mrhost_nav_link {
    background-color: #7253ED;
    color: white;
    border-color: #7253ED;
}

.mav_mrhost_nav_item.active .mav_mrhost_nav_icon,
.mav_mrhost_nav_item.active .mav_mrhost_nav_arrow {
    color: white;
}

/* =========================
   Tablet
========================= */
@media (max-width: 1024px) {
    .mav_mrhost_nav_link {
        padding: 10px 12px;
    }
}

/* =========================
   Mobile
========================= */
@media (max-width: 768px) {

    .mav_mrhost_nav_list {
        display: flex;
        overflow-x: auto;
        gap: 10px;
        padding: 10px 0;
        scrollbar-width: none;
    }

    .mav_mrhost_nav_list::-webkit-scrollbar {
        display: none;
    }

    .mav_mrhost_nav_item {
        flex: 0 0 auto;
        min-width: 140px;
        margin-bottom: 0;
    }

    .mav_mrhost_nav_link {
        flex-direction: column;
        align-items: center;
        text-align: center;
        border-radius: 12px;
        padding: 16px 10px;
    }

    .mav_mrhost_nav_icon {
        margin: 0 0 8px 0;
        font-size: 1.5rem;
    }

    .mav_mrhost_nav_arrow {
        display: none;
    }
}