/*
 Theme Name:   woostify_child
 Theme URI:    https://cosmetic.emiratespecas.com/
 Description:  A child theme for customizing the parent theme.
 Author:       Your Name
 Author URI:   https://example.com
 Template:     woostify
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Tags:         child-theme, custom-theme
 Text Domain:  my-child-theme
*/

@import url('../woostify/style.css');


.profile-icon-wrapper {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    z-index: 20000 !important;
}

.profile-icon {
    background-color:transparent !important;
    padding:0 0 1.2rem 1.2rem;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 24px !important;
    height: 24px !important;
    color: #333 !important;
    font-size: 10px !important;
    transition: color 0.3s ease !important;
    cursor: pointer !important;
    touch-action: manipulation !important;
    -webkit-tap-highlight-color: transparent !important;
}

.profile-icon:hover {
    color: #0073aa !important;
}

.profile-dropdown {
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    right: 0 !important;
    background: #fff !important;
    min-width: 120px !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2) !important;
    border-radius: 4px !important;
    z-index: 20001 !important;
}

.profile-icon>i {
    background-color:transparent !important;
    color:#DE477F !important;
    line-height:83px !important;
}

.profile-icon-wrapper:hover .profile-dropdown {
    display: block !important;
}
 
.dropdown-item {
    display: block !important;
    padding: 6px 8px !important;
    color: #333 !important;
    text-decoration: none !important;
    font-size: 11px !important;
    transition: background 0.2s ease !important;
}

.dropdown-item:hover {
    background: #DE477F !important;
}

@media (max-width: 1024px) {
    .profile-dropdown {
        min-width: 100px !important;
    }

    .dropdown-item {
        font-size: 10px !important;
        padding: 4px 6px !important;
    }
}