.top-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.banner-link {
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
}

.top-banner a:hover {
    color: #EDCE3E;
}

.message-link {
    text-align: center;
    padding-right: 50px;
    color: #EDCE3E !important;
}

.message-link:hover {
    color: #ffffff !important;
}

.phone-link {
    color: #fff;
    text-align: right;
}

.phone-link:hover {
    color: #EDCE3E;
}

.wishlist-link {
    color: #fff;
    text-align: right;    margin-left: 40px;
}

.wishlist-link:hover {
    color: #EDCE3E;
}

/* Ensure phone icon visibility on all pages, including shop */
.phone-link i.fa-phone::before {
    content: "\260E"; /* Unicode for telephone symbol as a fallback */
    font-family: inherit; /* Fallback to default font if Font Awesome fails */
}

/* Ensure no page-specific styles hide the phone link */
[data-row-id] .phone-link,
.builder-item .phone-link {
    display: inline-flex !important;
    visibility: visible !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .message-link {
        display: none;
    }
    .top-banner {
        justify-content: flex-end;
    }
}