/* Hide Courses • Students row */
.profile-name > span {
    display: none !important;
}

/* Add title under instructor name */
.profile-name > h3::after {
    content: "Founder of Aries Profits";
    display: block;
    font-style: italic;
    font-weight: 400;
    font-size: 16px; /* adjust as needed */
    color: #ffffff;  /* match your header text color */
    margin-top: 5px;
}

/* Hide the entire rating section */
.profile-rating-media .ratings {
    display: none !important;
}

/* Set a custom cover image */
.cover-area > div:first-child {
    background-image: url('https://ariesprofits.com/wp-content/uploads/AriesProfits/Backgrounds/Learn-AI-Driven-Trading-and-Investing-linkedin1.png') !important;
    background-size: cover !important;
    background-position: center !important;
    min-height: 300px; /* adjust height */
}

/* Optional: add dark overlay for better contrast */
.cover-area > div:first-child::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

/* Hide the second header section (If doesn't work, need to reactive Guru theme)*/
body > .ekit-template-content-markup.ekit-template-content-header.ekit-template-content-theme-support:nth-of-type(2) {
    display: none;
}


/****************************************************/
/* Force Student Login / My Dashboard button text visible on all devices */
#menu-item-18831 a.hfe-menu-item,
#menu-item-18832 a.hfe-menu-item {
    color: #FFFFFF !important;
    opacity: 1 !important;
    visibility: visible !important;
    text-decoration: none !important;
}

/* Fix tablet & mobile responsive menu */
@media (max-width: 1024px) {
    #menu-item-18831 a.hfe-menu-item,
    #menu-item-18832 a.hfe-menu-item {
        color: #000 !important;
    }
}

/****************************************************/
a.added_to_cart {
    display: none !important;
}


/* Target the UAE Cart widget icon */
#hfe-menu-cart__toggle_button .elementor-button-icon i.eicon::before {
    content: "\f07a"; /* Font Awesome shopping cart */
    font-family: "Font Awesome 5 Free"; /* Make sure FA is loaded */
    font-weight: 900; /* Needed for solid cart icon */
    font-size: 30px; /* Adjust size */
    color: #000; /* Adjust color */
    transition: color 0.3s ease; /* smooth transition */
}

/* Change color on hover */
#hfe-menu-cart__toggle_button:hover .elementor-button-icon i.eicon::before {
    color: #AB955B; /* lighter color on hover */
}

/* Hide course rating stars and numbers in Tutor LMS dashboard */
.tutor-dashboard .tutor-card-body .tutor-ratings {
    display: none !important;
}

/* Hide Update Cart button on virtual course cart page */
.woocommerce-cart-form .actions button[name="update_cart"] {
    display: none !important;
}

/* Remove plus/minus buttons */
.woocommerce-cart-form .quantity .qty::-webkit-inner-spin-button,
.woocommerce-cart-form .quantity .qty::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/* Make WooCommerce cart quantity input readonly / not editable */
.woocommerce-cart-form .product-quantity input.qty {
    pointer-events: none;   /* disables mouse interaction */
    background-color: #f5f5f5;  /* optional: greyed out to show readonly */
    color: #555;           /* optional: text color */
    user-select: none;      /* prevents text selection */
}

/* Hide only the enrolled info text block */
.tutor-enrolled-info-text {
    display: none !important;
}

/* Optional: also remove the green icon space */
.tutor-icon-purchase-mark {
    display: none !important;
}

