/* Custom CSS to remove dropdown arrows */
.main-menu ul li.menu-item-has-children > a:after {
    display: none;
}
.main-menu ul.sub-menu li.menu-item-has-children > a:after {
    display: none;
}

/* Keep app store buttons on same line in mobile */
.btn-group {
    flex-wrap: nowrap !important;
    gap: 15px !important;
}

/* Responsive adjustments for app store buttons */
@media (max-width: 767px) {
    .btn-group {
        gap: 10px !important;
        justify-content: center;
    }
    
    .btn-group a img {
        max-width: 140px;
        height: auto;
    }
}

@media (max-width: 480px) {
    .btn-group a img {
        max-width: 120px;
    }
}
