/* Open House Button Styles */
#top-menu-nav {
    margin-top: -12px;
}
#open-house-button {
    background-color: #b5be00;
    color: white !important;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease !important;
    white-space: nowrap;
    border-radius: 20px;
    padding: 12px 23px !important;
    display: inline-block;
    font-weight: 400 !important;
}

.et-fixed-header #top-menu #open-house-button {
    color: white !important;
}

#open-house-button:hover {
    background-color: #f28b00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    opacity: 1 !important;
}

#open-house-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

#open-house-button:focus {
    outline: 2px solid #007cba;
    outline-offset: 2px;
}

/* Mobile specific adjustments */
@media (max-width: 1390px) {
    #open-house-button-mobile {
        position: fixed;
        bottom: 0;
        left: 5px;
        background-color: #b5be00;
        color: white !important;
        border-radius: 15px 15px 0 0;
        z-index: 9000;
        padding: 7px 13px;
        font-size: 15px;
    }
    #open-house-button-mobile:hover {
        background-color: #f28b00;
    }

}