.top-action-bar {
    background: #fff;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    padding: 8px 0;
}
.top-action-inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}
.top-action-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.top-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f49a16;
    color: #fff !important;
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
    padding: 10px 16px;
    border-radius: 4px;
    text-decoration: none !important;
    box-shadow: inset 0 -2px 0 rgba(0,0,0,.08);
}
.top-action-btn:hover {
    background: #e98b08;
    color: #fff !important;
}
.top-action-icon {
    font-size: 14px;
    line-height: 1;
}
.top-action-phone {
    color: #333;
    font-size: 16px;
    white-space: nowrap;
}
.top-action-phone .phone-icon {
    color: #0b5e96;
    font-size: 18px;
    margin-right: 4px;
}
.top-action-phone strong {
    color: #222;
    font-weight: 700;
}
.top-search {
    display: flex;
    align-items: center;
    min-width: 320px;
    width: 360px;
    height: 36px;
    border: 1px solid #d6d6d6;
    border-radius: 22px;
    background: #fff;
    overflow: hidden;
}
.top-search input {
    flex: 1;
    border: 0;
    outline: 0;
    padding: 0 14px;
    height: 100%;
    font-size: 14px;
}
.top-search button {
    border: 0;
    background: #f39a16;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 15px;
    line-height: 36px;
}
@media(max-width: 767px) {
    .top-action-inner {
        width: calc(100% - 20px);
        display: block;
    }
    .top-action-left {
        gap: 8px;
    }
    .top-action-btn {
        padding: 9px 12px;
        font-size: 14px;
    }
    .top-action-phone {
        width: 100%;
        margin-top: 4px;
        font-size: 14px;
    }
    .top-search {
        width: 100%;
        min-width: 0;
        margin-top: 8px;
    }
}