.top-banner{text-align:center!important;font-size:14px;color: #ffffff;}.phone-link{white-space: nowrap;}.message-link{color: #eaeaea!important;}
.phone-link {
    color: #ffdf00 !important;
    font-size: 14px;
}
.no-track {
    pointer-events: auto !important;
}

/* Wishlist and Cart icon dimensions */
/* Override inline styles for wishlist icon */
img[src*="lightning-bolt.webp"][alt="Wishlist"] {
    width: 16px !important;
    height: 28px !important;
    object-fit: contain !important;
    margin-left: 8px !important;
    margin-right: 8px !important;
    vertical-align: middle !important;
}
/* Override inline styles for cart icon */
/* Note: Adjust the src or alt selector below to match your cart icon's actual src or alt attribute */
img[alt="Cart"], img[src*="cart-icon"] {
    width: 19px !important;
    height: 16px !important;
    object-fit: contain !important;
    margin-left: 8px !important;
    margin-right: 8px !important;
    vertical-align: middle !important;
}
.banner-link {
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
}
.nv-contact-list {
    font-weight: 600;
    font-size: 15px;
}
.top-banner a:hover {
    color: #EDCE3E;
.message-link {
    text-align: center;
    padding-right: 50px;
    color: #EDCE3E !important;display:none!important;
}

.message-link:hover {
    color: #ffffff !important;
}

.phone-link {
    color: #ffdf00;
    text-align: center;padding:20px;
}

.phone-link:hover {
    color: #EDCE3E;
}
.wishlist-link {
    color: #fff;
    text-align: right;    margin-left: 40px;display:none!important;
}

.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;
    }
}