/* ==========================================================================
   WELLER HIRE: MOBILE HEADER ACTION BAR (Phone, Message, Find)
   ========================================================================== */

.weller-header-actions {
    display: flex;
    justify-content: center; 
    align-items: center;
    width: 100%;
    padding: 12px 10px;
    gap: clamp(15px, 6vw, 40px); 
    box-sizing: border-box;
}

.header-action-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #F9DE2B !important; /* Weller Yellow */
    font-weight: 800;
    flex: none; 
    font-size: clamp(15px, 4.8vw, 24px); 
    white-space: nowrap;
}

.header-action-item svg.ct-icon {
    width: clamp(20px, 6vw, 32px);
    height: auto;
    margin-right: 8px;
    fill: #F9DE2B;
    flex-shrink: 0;
    display: block;
}

/* Specific scale for WhatsApp icon path */
.header-action-item svg[viewBox="0 0 448 512"] {
    width: clamp(18px, 6vw, 30px);
}

/* Mobile Safety Floor (320px) */
@media (max-width: 320px) {
    .weller-header-actions {
        padding: 10px 5px;
        gap: 12px; 
    }
    .header-action-item {
        font-size: 14px;
    }
    .header-action-item svg.ct-icon {
        width: 18px;
        margin-right: 4px;
    }
}