.ccb-navbar-right {
    position: absolute;
    right: 70px;
    /* Space for user navigation */
    display: flex;
    align-items: center;
    z-index: 10;
}

.ccb-contact-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    background: linear-gradient(101deg, #be1622 11.69%, #e84e1b 53.29%, #be1622 94.89%);
    color: #fff;
}

.ccb-contact-button:hover {
    cursor: pointer;
    background: #000;
    border: 1px solid #fff;
    color: #fff;
}

.ccb-contact-button svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.ccb-contact-text {
    font-size: 14px;
}

/* Tablet and small desktop */
@media (max-width: 1024px) {
    .ccb-navbar-right {
        right: 65px;
    }
}

/* Mobile landscape */
@media (max-width: 768px) {
    .ccb-navbar-right {
        right: 60px;
    }

    .ccb-contact-text {
        font-weight: 400;
    }

    .ccb-contact-button {
        padding: 6px 12px;
        min-width: 40px;
        justify-content: center;
    }
}

/* Mobile portrait */
@media (max-width: 480px) {
    .ccb-navbar-right {
        right: 16px;
    }

    .ccb-contact-button {
        padding: 4px 12px;
        min-width: 40px;
    }

    .ccb-contact-text {
        font-size: 12px;
        font-weight: 300;
    }

    .search-toggle {
        display: none !important;
    }
}

/* Very small devices */
@media (max-width: 360px) {
    .ccb-navbar-right {
        right: 16px;
    }

    .ccb-contact-button {
        padding: 4px 12px;
        min-width: 32px;
    }

        .search-toggle {
        display: none !important;
    }
}