/* top-header.css */
.top-header {
    background-color: #ffffff !important;
    /* Am scos linia neagra groasa si am pus una fina de #eee */
    border-bottom: 1px solid #eeeeee !important;
    padding: 10px 0 !important;
    width: 100% !important;
    font-family: 'Inter', sans-serif !important;
}

.top-header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
}

.top-left-links {
    display: flex;
    gap: 25px;
}

/* Link-urile sunt acum GRI (#666) implicit */
.top-left-links a, 
.top-phone {
    text-decoration: none !important;
    color: #666666 !important; 
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    transition: color 0.2s ease !important;
}

/* La HOVER se fac NEGRU (#000) */
.top-left-links a:hover, 
.top-phone:hover,
.top-phone:hover i {
    color: #000000 !important;
}

.top-right-info {
    display: flex;
    align-items: center;
}

.top-phone i {
    font-size: 13px;
    color: #888888 !important;
    margin-right: 8px;
    transition: color 0.2s ease !important;
}

/* --- OPTIMIZARE MOBIL --- */
@media screen and (max-width: 768px) {
    .hide-on-mobile {
        display: none !important;
    }

    .top-header-container {
        justify-content: center !important;
    }

    .top-left-links {
        gap: 15px !important;
    }

    /* Iconita telefon pe marginea dreapta la 50% vertical */
    .mobile-sticky-phone {
        display: flex !important;
        position: fixed;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        background-color: #000000;
        color: #ffffff !important;
        width: 45px;
        height: 45px;
        border-radius: 8px 0 0 8px;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        box-shadow: -2px 0 10px rgba(0,0,0,0.2);
        text-decoration: none !important;
    }

    .mobile-sticky-phone i {
        color: #ffffff !important;
        font-size: 20px;
    }
}

/* Ascuns pe desktop */
.mobile-sticky-phone {
    display: none;
}