/* Phone display button styles */
.phones-header__show-btn,
.menu-footer__show-btn {
    background: #2c3e50;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
    font-weight: 500;
}

.phones-header__show-btn:hover,
.menu-footer__show-btn:hover {
    background: #34495e;
}

.phones-header__phone-display,
.menu-footer__phone-display {
    display: none;
}

.phones-header__phone-display.show,
.menu-footer__phone-display.show {
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .phones-header__show-btn,
    .menu-footer__show-btn {
        font-size: 12px;
        padding: 6px 12px;
    }
}
